commit cd94b826789f27aa3498eadbfd257998f30f3dfa Author: 巴卫 <14240332@qq.com> Date: Thu Aug 3 14:46:45 2023 +0800 至广精工大屏 diff --git a/yuhong-ui/.eslintrc.js b/yuhong-ui/.eslintrc.js new file mode 100644 index 0000000..c977505 --- /dev/null +++ b/yuhong-ui/.eslintrc.js @@ -0,0 +1,198 @@ +module.exports = { + root: true, + parserOptions: { + parser: 'babel-eslint', + sourceType: 'module' + }, + env: { + browser: true, + node: true, + es6: true, + }, + extends: ['plugin:vue/recommended', 'eslint:recommended'], + + // add your custom rules here + //it is base on https://github.com/vuejs/eslint-config-vue + rules: { + "vue/max-attributes-per-line": [2, { + "singleline": 10, + "multiline": { + "max": 1, + "allowFirstLine": false + } + }], + "vue/singleline-html-element-content-newline": "off", + "vue/multiline-html-element-content-newline":"off", + "vue/name-property-casing": ["error", "PascalCase"], + "vue/no-v-html": "off", + 'accessor-pairs': 2, + 'arrow-spacing': [2, { + 'before': true, + 'after': true + }], + 'block-spacing': [2, 'always'], + 'brace-style': [2, '1tbs', { + 'allowSingleLine': true + }], + 'camelcase': [0, { + 'properties': 'always' + }], + 'comma-dangle': [2, 'never'], + 'comma-spacing': [2, { + 'before': false, + 'after': true + }], + 'comma-style': [2, 'last'], + 'constructor-super': 2, + 'curly': [2, 'multi-line'], + 'dot-location': [2, 'property'], + 'eol-last': 2, + 'eqeqeq': ["error", "always", {"null": "ignore"}], + 'generator-star-spacing': [2, { + 'before': true, + 'after': true + }], + 'handle-callback-err': [2, '^(err|error)$'], + 'indent': [2, 2, { + 'SwitchCase': 1 + }], + 'jsx-quotes': [2, 'prefer-single'], + 'key-spacing': [2, { + 'beforeColon': false, + 'afterColon': true + }], + 'keyword-spacing': [2, { + 'before': true, + 'after': true + }], + 'new-cap': [2, { + 'newIsCap': true, + 'capIsNew': false + }], + 'new-parens': 2, + 'no-array-constructor': 2, + 'no-caller': 2, + 'no-console': 'off', + 'no-class-assign': 2, + 'no-cond-assign': 2, + 'no-const-assign': 2, + 'no-control-regex': 0, + 'no-delete-var': 2, + 'no-dupe-args': 2, + 'no-dupe-class-members': 2, + 'no-dupe-keys': 2, + 'no-duplicate-case': 2, + 'no-empty-character-class': 2, + 'no-empty-pattern': 2, + 'no-eval': 2, + 'no-ex-assign': 2, + 'no-extend-native': 2, + 'no-extra-bind': 2, + 'no-extra-boolean-cast': 2, + 'no-extra-parens': [2, 'functions'], + 'no-fallthrough': 2, + 'no-floating-decimal': 2, + 'no-func-assign': 2, + 'no-implied-eval': 2, + 'no-inner-declarations': [2, 'functions'], + 'no-invalid-regexp': 2, + 'no-irregular-whitespace': 2, + 'no-iterator': 2, + 'no-label-var': 2, + 'no-labels': [2, { + 'allowLoop': false, + 'allowSwitch': false + }], + 'no-lone-blocks': 2, + 'no-mixed-spaces-and-tabs': 2, + 'no-multi-spaces': 2, + 'no-multi-str': 2, + 'no-multiple-empty-lines': [2, { + 'max': 1 + }], + 'no-native-reassign': 2, + 'no-negated-in-lhs': 2, + 'no-new-object': 2, + 'no-new-require': 2, + 'no-new-symbol': 2, + 'no-new-wrappers': 2, + 'no-obj-calls': 2, + 'no-octal': 2, + 'no-octal-escape': 2, + 'no-path-concat': 2, + 'no-proto': 2, + 'no-redeclare': 2, + 'no-regex-spaces': 2, + 'no-return-assign': [2, 'except-parens'], + 'no-self-assign': 2, + 'no-self-compare': 2, + 'no-sequences': 2, + 'no-shadow-restricted-names': 2, + 'no-spaced-func': 2, + 'no-sparse-arrays': 2, + 'no-this-before-super': 2, + 'no-throw-literal': 2, + 'no-trailing-spaces': 2, + 'no-undef': 2, + 'no-undef-init': 2, + 'no-unexpected-multiline': 2, + 'no-unmodified-loop-condition': 2, + 'no-unneeded-ternary': [2, { + 'defaultAssignment': false + }], + 'no-unreachable': 2, + 'no-unsafe-finally': 2, + 'no-unused-vars': [2, { + 'vars': 'all', + 'args': 'none' + }], + 'no-useless-call': 2, + 'no-useless-computed-key': 2, + 'no-useless-constructor': 2, + 'no-useless-escape': 0, + 'no-whitespace-before-property': 2, + 'no-with': 2, + 'one-var': [2, { + 'initialized': 'never' + }], + 'operator-linebreak': [2, 'after', { + 'overrides': { + '?': 'before', + ':': 'before' + } + }], + 'padded-blocks': [2, 'never'], + 'quotes': [2, 'single', { + 'avoidEscape': true, + 'allowTemplateLiterals': true + }], + 'semi': [2, 'never'], + 'semi-spacing': [2, { + 'before': false, + 'after': true + }], + 'space-before-blocks': [2, 'always'], + 'space-before-function-paren': [2, 'never'], + 'space-in-parens': [2, 'never'], + 'space-infix-ops': 2, + 'space-unary-ops': [2, { + 'words': true, + 'nonwords': false + }], + 'spaced-comment': [2, 'always', { + 'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ','] + }], + 'template-curly-spacing': [2, 'never'], + 'use-isnan': 2, + 'valid-typeof': 2, + 'wrap-iife': [2, 'any'], + 'yield-star-spacing': [2, 'both'], + 'yoda': [2, 'never'], + 'prefer-const': 2, + 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, + 'object-curly-spacing': [2, 'always', { + objectsInObjects: false + }], + 'array-bracket-spacing': [2, 'never'] + } +} diff --git a/yuhong-ui/.gitignore b/yuhong-ui/.gitignore new file mode 100644 index 0000000..a0dddc6 --- /dev/null +++ b/yuhong-ui/.gitignore @@ -0,0 +1,21 @@ +.DS_Store +node_modules +/dist + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/yuhong-ui/LICENSE b/yuhong-ui/LICENSE new file mode 100644 index 0000000..261eeb9 --- /dev/null +++ b/yuhong-ui/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/yuhong-ui/README.md b/yuhong-ui/README.md new file mode 100644 index 0000000..9fc309b --- /dev/null +++ b/yuhong-ui/README.md @@ -0,0 +1,208 @@ +**通知:最新的低代码大屏系统GoView已开源,详见:[https://gitee.com/MTrun/go-view](https://gitee.com/MTrun/go-view)** + +![输入图片说明](https://gitee.com/MTrun/go-view/raw/master/readme/logo-t-y.png) + +## 一、项目描述 + +- 一个基于 Vue、Datav、Echart 框架的 " **数据大屏项目** ",通过 Vue 组件实现数据动态刷新渲染,内部图表可实现自由替换。部分图表使用 DataV 自带组件,可进行更改,详情请点击下方 DataV 文档。 + +- [**Vue3 版本请点击这里查看,使用 Hooks+TypeScript 实现,全新内容等你探索!**](https://gitee.com/MTrun/vue-big-screen-plugin) +- [**React 版本请点击这里查看,全新界面超级好看!!!**](https://gitee.com/MTrun/react-big-screen) +- 项目需要全屏展示(按 F11)。 +- 项目部分区域使用了全局注册方式,增加了打包体积,在实际运用中请使用 **按需引入**。 +- 拉取项目之后,建议按照自己的功能区域重命名文件,现以简单的位置进行区分。 +- 项目环境:Vue-cli-3.0、DataV-2.7.3、Echarts-4.6.0(如果5.x版本有问题,请切换到4.x版本)、Webpack-4.0、Npm-6.13、Node-v12.16。 +- 请拉取 master 分支的代码,其余分支是开发分支。 +- 需要其它地图数据的,请查看我的其它项目(有一个地图合集) + +友情链接: + +1. [Vue 官方文档](https://cn.vuejs.org/v2/guide/instance.html) +2. [DataV 官方文档](http://datav.jiaminghi.com/guide/) +3. [echarts 实例](https://echarts.apache.org/examples/zh/index.html),[echarts API 文档](https://echarts.apache.org/zh/api.html#echarts) + +项目展示 +![项目展示](https://images.gitee.com/uploads/images/2020/1208/183608_b893a510_4964818.gif "20201208_221020.gif") + +## 二、主要文件介绍 + +| 文件 | 作用/功能 | +| ------------------- | --------------------------------------------------------------------- | +| main.js | 主目录文件,引入 Echart/DataV 等文件 | +| utils | 工具函数与 mixins 函数等 | +| views/ index.vue | 项目主结构 | +| views/其余文件 | 界面各个区域组件(按照位置来命名) | +| assets | 静态资源目录,放置 logo 与背景图片 | +| assets / style.scss | 通用 CSS 文件,全局项目快捷样式调节 | +| assets / index.scss | Index 界面的 CSS 文件 | +| components/echart | 所有 echart 图表(按照位置来命名) | +| common/... | 全局封装的 ECharts 和 flexible 插件代码(适配屏幕尺寸,可定制化修改) | + +## 三、使用介绍 + +### 启动项目 + +需要提前安装好 `nodejs` 与 `yarn`,下载项目后在项目主目录下运行 `yarn` 拉取依赖包。安装完依赖包之后然后使用 `vue-cli` 或者直接使用命令`npm run serve`,就可以启动项目,启动项目后需要手动全屏(按 F11)。如果编译项目的时候提示没有 DataV 框架的依赖,输入 `npm install @jiaminghi/data-view` 或者 `yarn add @jiaminghi/data-view` 进行手动安装。 + +### 封装组件渲染图表 + +所有的 ECharts 图表都是基于 `common/echart/index.vue` 封装组件创建的,已经对数据和屏幕改动进行了监听,能够动态渲染图表数据和大小。在监听窗口小大的模块,使用了防抖函数来控制更新频率,节约浏览器性能。 + +项目配置了默认的 ECharts 图表样式,文件地址:`common/echart/theme.json`。 + +封装的渲染图表组件支持传入以下参数,可根据业务需求自行添加/删除。 + +参数名称 | 类型 | 作用/功能 | +| -------------------| --------- | ------------------------------| +| id | String | 唯一 id,渲染图表的节点(非必填,使用了 $el)| +| className | String | class样式名称(非必填) | +| options | Object | ECharts 配置(必填) | +| height | String | 图表高度(建议填) | +| width | String | 图表宽度(建议填) | + +### 动态渲染图表 + +动态渲染图表案例为 `components` 目录下各个图表组件,index 文件负责数据获取和处理,chart 文件负责监听和数据渲染。 + +chart 文件的主要逻辑为: + +```html + + + +``` + +### 复用图表组件 + +复用图表组件案例为中间部分的 `任务通过率与任务达标率` 模块,两个图表类似,区别在于颜色和主要渲染数据。只需要传入对应的唯一 id 和样式,然后在复用的组件 `components/echart/center/centerChartRate` 里进行接收并在对应位置赋值即可。 + +如:在调用处 `views/center.vue` 里去定义好数据并传入组件 + +```js +//组件调用 +今日任务通过率 + + +今日任务达标率 + + +... +import centerChart from "@/components/echart/center/centerChartRate"; + +data() { + return { + rate: [ + { + id: "centerRate1", + tips: 60, + ... + }, + { + id: "centerRate2", + tips: 40, + colorData: { + ... + } + } + ] + } +} +``` + +### 更换边框 + +边框是使用了 DataV 自带的组件,只需要去 views 目录下去寻找对应的位置去查找并替换就可以,具体的种类请去 DavaV 官网查看 +如: + +```html + + + +``` + +### 更换图表 + +直接进入 `components/echart` 下的文件修改成你要的 echarts 模样,可以去[echarts 官方社区](https://gallery.echartsjs.com/explore.html#sort=rank~timeframe=all~author=all)里面查看案例。 + +### Mixins 解决自适应适配功能 + +使用 mixins 注入解决了界面大小变动图表自适应适配的功能,函数在 `utils/resizeMixins.js` 中,应用在 `common/echart/index.vue` 的封装渲染组件,主要是对 `this.chart` 进行了功能注入。 + +### 屏幕适配 + +1.5 版本项目放弃了 flexible 插件方案,将 rem 改回px,使用更流程通用的 `css3:scale` 缩放方案,通过 `ref` 指向 `views/index`,屏幕改变时缩放内容。项目的基准尺寸是 `1920px*1080px`,所以支持同比例屏幕 100% 填充,如果非同比例则会自动计算比例居中填充,不足的部分则留白。实现代码在 `src/utils/userDraw` ,如果有其它的适配方案,欢迎交流。 + +### 请求数据 + +现在的项目未使用前后端数据请求,建议使用 axios 进行数据请求,在 main.js 位置进行全局配置。 + +- axios 的 main.js 配置参考范例(因人而异) + +```js +import axios from 'axios'; + +//把方法放到vue的原型上,这样就可以全局使用了 +Vue.prototype.$http = axios.create({ + //设置20秒超时时间 + timeout: 20000, + baseURL: 'http://172.0.0.1:80080', //这里写后端地址 +}); +``` + +## 四、更新情况 + +1. 增加了 Echart 组件复用的功能,如:中间任务达标率的两个百分比图使用的是同一个组件。 +2. 修复了头部右侧的图案条不对称的问题。 +3. 使用 Mixins 注入图表响应式代码(scale方案之后无需使用)。 +4. vue-awesome 改成按需引入的方式。 +5. 封装渲染函数,抽离了数据使逻辑更加清晰。 +6. 新增地图组件,并添加自动轮播功能 +7. 将适配方案从 rem 改成 scale + +## 五、反馈 +QQ群二维码: + +![输入图片说明](public/image.png) + +## 六、相关大屏案例 +(以下案例基于此项目二次开发): + +1. https://gitee.com/memeda520/IofTV-Screen + +## 五、七、其余 + +这个项目是个人的作品,难免会有问题和 BUG,如果有问题请进行评论,我也会尽力去更新,自己也在前端学习的路上,欢迎交流,非常感谢! \ No newline at end of file diff --git a/yuhong-ui/babel.config.js b/yuhong-ui/babel.config.js new file mode 100644 index 0000000..e955840 --- /dev/null +++ b/yuhong-ui/babel.config.js @@ -0,0 +1,5 @@ +module.exports = { + presets: [ + '@vue/cli-plugin-babel/preset' + ] +} diff --git a/yuhong-ui/package-lock.json b/yuhong-ui/package-lock.json new file mode 100644 index 0000000..4a4de77 --- /dev/null +++ b/yuhong-ui/package-lock.json @@ -0,0 +1,20077 @@ +{ + "name": "big-screen-vue-datav", + "version": "1.5.1", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "big-screen-vue-datav", + "version": "1.5.1", + "dependencies": { + "@jiaminghi/data-view": "^2.7.3", + "@types/echarts": "^4.4.3", + "axios": "^0.27.2", + "core-js": "^3.6.4", + "echarts": "^5.3.3", + "element-ui": "^2.15.9", + "vue": "^2.6.11", + "vue-awesome": "^4.0.2", + "vue-router": "^3.1.5", + "vuex": "^3.1.2" + }, + "devDependencies": { + "@vue/cli-plugin-babel": "^5.0.8", + "@vue/cli-plugin-eslint": "^5.0.8", + "@vue/cli-service": "^5.0.8", + "babel-eslint": "^10.0.3", + "eslint": "^6.7.2", + "eslint-plugin-vue": "^6.1.2", + "sass": "^1.25.0", + "sass-loader": "^8.0.2", + "vue-template-compiler": "^2.6.11" + } + }, + "node_modules/@achrinza/node-ipc": { + "version": "9.2.5", + "resolved": "https://registry.npmjs.org/@achrinza/node-ipc/-/node-ipc-9.2.5.tgz", + "integrity": "sha512-kBX7Ay911iXZ3VZ1pYltj3Rfu7Ow9H7sK4H4RSfWIfWR2JKNB40K808wppoRIEzE2j2hXLU+r6TJgCAliCGhyQ==", + "dev": true, + "dependencies": { + "@node-ipc/js-queue": "2.0.3", + "event-pubsub": "4.3.0", + "js-message": "1.0.7" + }, + "engines": { + "node": "8 || 9 || 10 || 11 || 12 || 13 || 14 || 15 || 16 || 17 || 18" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.8.tgz", + "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.6.tgz", + "integrity": "sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.18.6", + "@babel/helper-compilation-targets": "^7.18.6", + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helpers": "^7.18.6", + "@babel/parser": "^7.18.6", + "@babel/template": "^7.18.6", + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.18.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", + "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.7", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.6.tgz", + "integrity": "sha512-KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw==", + "dev": true, + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.18.6", + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.6.tgz", + "integrity": "sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.18.6", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.20.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.6.tgz", + "integrity": "sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-function-name": "^7.18.6", + "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.18.6.tgz", + "integrity": "sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "regexpu-core": "^5.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz", + "integrity": "sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", + "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-explode-assignable-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", + "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", + "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.18.6", + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.6.tgz", + "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz", + "integrity": "sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.18.6", + "@babel/template": "^7.18.6", + "@babel/traverse": "^7.18.8", + "@babel/types": "^7.18.8" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", + "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", + "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.6.tgz", + "integrity": "sha512-z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-wrap-function": "^7.18.6", + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", + "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", + "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.6.tgz", + "integrity": "sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz", + "integrity": "sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==", + "dev": true, + "dependencies": { + "@babel/helper-function-name": "^7.18.6", + "@babel/template": "^7.18.6", + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.6.tgz", + "integrity": "sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.18.6", + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", + "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", + "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.6.tgz", + "integrity": "sha512-Udgu8ZRgrBrttVz6A0EVL0SJ1z+RLbIeqsu632SA1hf0awEppD6TvdznoH+orIF8wtFFAV/Enmw9Y+9oV8TQcw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.6.tgz", + "integrity": "sha512-WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-remap-async-to-generator": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz", + "integrity": "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.18.6.tgz", + "integrity": "sha512-gAdhsjaYmiZVxx5vTMiRfj31nB7LhwBJFMSLzeDxc7X4tKLixup0+k9ughn0RcpBrv9E3PBaXJW7jF5TCihAOg==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/plugin-syntax-decorators": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.6.tgz", + "integrity": "sha512-zr/QcUlUo7GPo6+X1wC98NJADqmy5QTFWWhqeQWiki4XHafJtLl/YMGkmRB2szDD2IYJCCdBTd4ElwhId9T7Xw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.6.tgz", + "integrity": "sha512-zMo66azZth/0tVd7gmkxOkOjs2rpHyhpcFo565PUP37hSp6hSd9uUKIfTDFMz58BwqgQKhJ9YxtM5XddjXVn+Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.6.tgz", + "integrity": "sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.18.6", + "@babel/helper-compilation-targets": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.6.tgz", + "integrity": "sha512-PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz", + "integrity": "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.18.6.tgz", + "integrity": "sha512-fqyLgjcxf/1yhyZ6A+yo1u9gJ7eleFQod2lkaUsF9DQ7sbbY3Ligym3L0+I2c0WmqNKDpoD9UTb1AKP3qRMOAQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz", + "integrity": "sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", + "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz", + "integrity": "sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz", + "integrity": "sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-remap-async-to-generator": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", + "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.6.tgz", + "integrity": "sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.8.tgz", + "integrity": "sha512-RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-function-name": "^7.18.6", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.6.tgz", + "integrity": "sha512-9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.6.tgz", + "integrity": "sha512-tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", + "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.6.tgz", + "integrity": "sha512-NJU26U/208+sxYszf82nmGYqVF9QN8py2HFTblPT9hbawi8+1C5a9JubODLTGFuT0qlkqVinmkwOD13s0sZktg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", + "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", + "dev": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.6.tgz", + "integrity": "sha512-kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.18.6", + "@babel/helper-function-name": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.6.tgz", + "integrity": "sha512-x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", + "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz", + "integrity": "sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz", + "integrity": "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-simple-access": "^7.18.6", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.6.tgz", + "integrity": "sha512-UbPYpXxLjTw6w6yXX2BYNxF3p6QY225wcTkfQCy3OMnSlS/C3xGtwUjEzGkldb/sy6PWLiCQ3NbYfjWUTI3t4g==", + "dev": true, + "dependencies": { + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-validator-identifier": "^7.18.6", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", + "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.18.6.tgz", + "integrity": "sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", + "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", + "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", + "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", + "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz", + "integrity": "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "regenerator-transform": "^0.15.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", + "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.6.tgz", + "integrity": "sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "babel-plugin-polyfill-corejs2": "^0.3.1", + "babel-plugin-polyfill-corejs3": "^0.5.2", + "babel-plugin-polyfill-regenerator": "^0.3.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", + "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.6.tgz", + "integrity": "sha512-ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", + "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.6.tgz", + "integrity": "sha512-UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.6.tgz", + "integrity": "sha512-7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.6.tgz", + "integrity": "sha512-XNRwQUXYMP7VLuy54cr/KS/WeL3AZeORhrmeZ7iewgu+X2eBqmpaLI/hzqr9ZxCeUoq0ASK4GUzSM0BDhZkLFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", + "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.6.tgz", + "integrity": "sha512-WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.18.6", + "@babel/helper-compilation-targets": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.6", + "@babel/plugin-proposal-async-generator-functions": "^7.18.6", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-class-static-block": "^7.18.6", + "@babel/plugin-proposal-dynamic-import": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.6", + "@babel/plugin-proposal-json-strings": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.6", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.18.6", + "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.6", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.18.6", + "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.18.6", + "@babel/plugin-transform-async-to-generator": "^7.18.6", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.18.6", + "@babel/plugin-transform-classes": "^7.18.6", + "@babel/plugin-transform-computed-properties": "^7.18.6", + "@babel/plugin-transform-destructuring": "^7.18.6", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.6", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.6", + "@babel/plugin-transform-function-name": "^7.18.6", + "@babel/plugin-transform-literals": "^7.18.6", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.18.6", + "@babel/plugin-transform-modules-commonjs": "^7.18.6", + "@babel/plugin-transform-modules-systemjs": "^7.18.6", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.18.6", + "@babel/plugin-transform-new-target": "^7.18.6", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.18.6", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.18.6", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.18.6", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.6", + "@babel/plugin-transform-typeof-symbol": "^7.18.6", + "@babel/plugin-transform-unicode-escapes": "^7.18.6", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.18.6", + "babel-plugin-polyfill-corejs2": "^0.3.1", + "babel-plugin-polyfill-corejs3": "^0.5.2", + "babel-plugin-polyfill-regenerator": "^0.3.1", + "core-js-compat": "^3.22.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz", + "integrity": "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==", + "dependencies": { + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", + "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.6", + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", + "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.18.7", + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-function-name": "^7.18.6", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.18.8", + "@babel/types": "^7.18.8", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.18.6", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "dev": true + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@jiaminghi/bezier-curve": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/@jiaminghi/bezier-curve/-/bezier-curve-0.0.9.tgz", + "integrity": "sha512-u9xJPOEl6Dri2E9FfmJoGxYQY7vYJkURNX04Vj64tdi535tPrpkuf9Sm0lNr3QTKdHQh0DdNRsaa62FLQNQEEw==", + "dependencies": { + "@babel/runtime": "^7.5.5" + } + }, + "node_modules/@jiaminghi/c-render": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@jiaminghi/c-render/-/c-render-0.4.3.tgz", + "integrity": "sha512-FJfzj5hGj7MLqqqI2D7vEzHKbQ1Ynnn7PJKgzsjXaZpJzTqs2Yw5OSeZnm6l7Qj7jyPAP53lFvEQNH4o4j6s+Q==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@jiaminghi/bezier-curve": "*", + "@jiaminghi/color": "*", + "@jiaminghi/transition": "*" + } + }, + "node_modules/@jiaminghi/charts": { + "version": "0.2.12", + "resolved": "https://registry.npmjs.org/@jiaminghi/charts/-/charts-0.2.12.tgz", + "integrity": "sha512-M++pdGrvazODF+27ROyn/jVwChFX8+4Tja0X3ibfye9EOO/ktzN+iMae0PIBSwW1F6X1diwldVYpfgSmXXJMMg==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@jiaminghi/c-render": "*" + } + }, + "node_modules/@jiaminghi/color": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jiaminghi/color/-/color-0.1.1.tgz", + "integrity": "sha512-M09+Sb5HGqVim0zo+nG5gU1v+6gXT8ptr0BZR6dMGt83XmCJgnZtO8s7llTW4hLFFFM5co6geZvTekqLpSPAAQ==", + "dependencies": { + "@babel/runtime": "^7.5.5" + } + }, + "node_modules/@jiaminghi/data-view": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@jiaminghi/data-view/-/data-view-2.7.3.tgz", + "integrity": "sha512-3dxFJkaGKogUMzAkJBBMOvD9sXGFwHNByyM7IiLBSO8Hb0a5Aa6IQ8cfu+0X2r+irLw2Ty5KDmoarc9GTxfHoQ==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@jiaminghi/charts": "*" + } + }, + "node_modules/@jiaminghi/transition": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/@jiaminghi/transition/-/transition-1.1.11.tgz", + "integrity": "sha512-owBggipoHMikDHHDW5Gc7RZYlVuvxHADiU4bxfjBVkHDAmmck+fCkm46n2JzC3j33hWvP9nSCAeh37t6stgWeg==", + "dependencies": { + "@babel/runtime": "^7.5.5" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.14", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz", + "integrity": "sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "dev": true + }, + "node_modules/@node-ipc/js-queue": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@node-ipc/js-queue/-/js-queue-2.0.3.tgz", + "integrity": "sha512-fL1wpr8hhD5gT2dA1qifeVaoDFlQR5es8tFuKqjHX+kdOtdNHnxkVZbtIrR2rxnMFvehkjaZRNV2H/gPXlb0hw==", + "dev": true, + "dependencies": { + "easy-stack": "1.0.1" + }, + "engines": { + "node": ">=1.0.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "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.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@polka/url": { + "version": "1.0.0-next.21", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz", + "integrity": "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==", + "dev": true + }, + "node_modules/@sideway/address": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", + "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@sideway/formula": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz", + "integrity": "sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==", + "dev": true + }, + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "dev": true + }, + "node_modules/@soda/friendly-errors-webpack-plugin": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/@soda/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.8.1.tgz", + "integrity": "sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg==", + "dev": true, + "dependencies": { + "chalk": "^3.0.0", + "error-stack-parser": "^2.0.6", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8.0.0" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@soda/friendly-errors-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@soda/get-current-script": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@soda/get-current-script/-/get-current-script-1.0.2.tgz", + "integrity": "sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w==", + "dev": true + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dev": true, + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/color-name": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/@types/color-name/download/@types/color-name-1.1.1.tgz", + "integrity": "sha1-HBJhu+qhCoBVu8XYq4S3sq/IRqA=", + "dev": true + }, + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", + "dev": true, + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/echarts": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/@types/echarts/-/echarts-4.4.3.tgz", + "integrity": "sha512-HmDmg9hDJQC5KOpNOeVgcaBM+emDiduNyCCHVInDrVVfLDVPuK4fSSISy39kn1HqPa1hYDQ96FIGEhjRNGHhPA==", + "dependencies": { + "@types/zrender": "*" + } + }, + "node_modules/@types/eslint": { + "version": "8.4.5", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.5.tgz", + "integrity": "sha512-dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ==", + "dev": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dev": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", + "dev": true + }, + "node_modules/@types/express": { + "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", + "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "dev": true, + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.29", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.29.tgz", + "integrity": "sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "dev": true + }, + "node_modules/@types/http-proxy": { + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", + "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true + }, + "node_modules/@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "dev": true + }, + "node_modules/@types/minimist": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", + "dev": true + }, + "node_modules/@types/node": { + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.3.tgz", + "integrity": "sha512-HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ==", + "dev": true + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "dev": true + }, + "node_modules/@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "dev": true, + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.13.10", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", + "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", + "dev": true, + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/ws": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/zrender": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/zrender/-/zrender-4.0.0.tgz", + "integrity": "sha512-s89GOIeKFiod2KSqHkfd2rzx+T2DVu7ihZCBEBnhFrzvQPUmzvDSBot9Fi1DfMQm9Odg+rTqoMGC38RvrwJK2w==" + }, + "node_modules/@vue/babel-helper-vue-jsx-merge-props": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.2.1.tgz", + "integrity": "sha512-QOi5OW45e2R20VygMSNhyQHvpdUwQZqGPc748JLGCYEy+yp8fNFNdbNIGAgZmi9e+2JHPd6i6idRuqivyicIkA==", + "dev": true + }, + "node_modules/@vue/babel-helper-vue-transform-on": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.2.tgz", + "integrity": "sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==", + "dev": true + }, + "node_modules/@vue/babel-plugin-jsx": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.1.tgz", + "integrity": "sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.0.0", + "@babel/template": "^7.0.0", + "@babel/traverse": "^7.0.0", + "@babel/types": "^7.0.0", + "@vue/babel-helper-vue-transform-on": "^1.0.2", + "camelcase": "^6.0.0", + "html-tags": "^3.1.0", + "svg-tags": "^1.0.0" + } + }, + "node_modules/@vue/babel-plugin-transform-vue-jsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.2.1.tgz", + "integrity": "sha512-HJuqwACYehQwh1fNT8f4kyzqlNMpBuUK4rSiSES5D4QsYncv5fxFsLyrxFPG2ksO7t5WP+Vgix6tt6yKClwPzA==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "html-tags": "^2.0.0", + "lodash.kebabcase": "^4.1.1", + "svg-tags": "^1.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/babel-plugin-transform-vue-jsx/node_modules/html-tags": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz", + "integrity": "sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@vue/babel-preset-app": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/babel-preset-app/-/babel-preset-app-5.0.8.tgz", + "integrity": "sha512-yl+5qhpjd8e1G4cMXfORkkBlvtPCIgmRf3IYCWYDKIQ7m+PPa5iTm4feiNmCMD6yGqQWMhhK/7M3oWGL9boKwg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.16", + "@babel/helper-compilation-targets": "^7.12.16", + "@babel/helper-module-imports": "^7.12.13", + "@babel/plugin-proposal-class-properties": "^7.12.13", + "@babel/plugin-proposal-decorators": "^7.12.13", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-jsx": "^7.12.13", + "@babel/plugin-transform-runtime": "^7.12.15", + "@babel/preset-env": "^7.12.16", + "@babel/runtime": "^7.12.13", + "@vue/babel-plugin-jsx": "^1.0.3", + "@vue/babel-preset-jsx": "^1.1.2", + "babel-plugin-dynamic-import-node": "^2.3.3", + "core-js": "^3.8.3", + "core-js-compat": "^3.8.3", + "semver": "^7.3.4" + }, + "peerDependencies": { + "@babel/core": "*", + "core-js": "^3", + "vue": "^2 || ^3.2.13" + }, + "peerDependenciesMeta": { + "core-js": { + "optional": true + }, + "vue": { + "optional": true + } + } + }, + "node_modules/@vue/babel-preset-app/node_modules/semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@vue/babel-preset-jsx": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@vue/babel-preset-jsx/-/babel-preset-jsx-1.3.0.tgz", + "integrity": "sha512-WFHjZWoUV/W0VAnEM/vi3zhdKsWrYf1TVFuxrpMQXVjhU8w8cxAUzNkmUDvf5iugCNzQssTJp9LjDPHAcmCqUw==", + "dev": true, + "dependencies": { + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "@vue/babel-plugin-transform-vue-jsx": "^1.2.1", + "@vue/babel-sugar-composition-api-inject-h": "^1.3.0", + "@vue/babel-sugar-composition-api-render-instance": "^1.3.0", + "@vue/babel-sugar-functional-vue": "^1.2.2", + "@vue/babel-sugar-inject-h": "^1.2.2", + "@vue/babel-sugar-v-model": "^1.3.0", + "@vue/babel-sugar-v-on": "^1.3.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0", + "vue": "2.x" + }, + "peerDependenciesMeta": { + "vue": { + "optional": true + } + } + }, + "node_modules/@vue/babel-sugar-composition-api-inject-h": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-composition-api-inject-h/-/babel-sugar-composition-api-inject-h-1.3.0.tgz", + "integrity": "sha512-pIDOutEpqbURdVw7xhgxmuDW8Tl+lTgzJZC5jdlUu0lY2+izT9kz3Umd/Tbu0U5cpCJ2Yhu87BZFBzWpS0Xemg==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/babel-sugar-composition-api-render-instance": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-composition-api-render-instance/-/babel-sugar-composition-api-render-instance-1.3.0.tgz", + "integrity": "sha512-NYNnU2r7wkJLMV5p9Zj4pswmCs037O/N2+/Fs6SyX7aRFzXJRP1/2CZh5cIwQxWQajHXuCUd5mTb7DxoBVWyTg==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/babel-sugar-functional-vue": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.2.2.tgz", + "integrity": "sha512-JvbgGn1bjCLByIAU1VOoepHQ1vFsroSA/QkzdiSs657V79q6OwEWLCQtQnEXD/rLTA8rRit4rMOhFpbjRFm82w==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/babel-sugar-inject-h": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.2.2.tgz", + "integrity": "sha512-y8vTo00oRkzQTgufeotjCLPAvlhnpSkcHFEp60+LJUwygGcd5Chrpn5480AQp/thrxVm8m2ifAk0LyFel9oCnw==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/babel-sugar-v-model": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.3.0.tgz", + "integrity": "sha512-zcsabmdX48JmxTObn3xmrvvdbEy8oo63DphVyA3WRYGp4SEvJRpu/IvZCVPl/dXLuob2xO/QRuncqPgHvZPzpA==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "@vue/babel-plugin-transform-vue-jsx": "^1.2.1", + "camelcase": "^5.0.0", + "html-tags": "^2.0.0", + "svg-tags": "^1.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/babel-sugar-v-model/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@vue/babel-sugar-v-model/node_modules/html-tags": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz", + "integrity": "sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@vue/babel-sugar-v-on": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.3.0.tgz", + "integrity": "sha512-8VZgrS0G5bh7+Prj7oJkzg9GvhSPnuW5YT6MNaVAEy4uwxRLJ8GqHenaStfllChTao4XZ3EZkNtHB4Xbr/ePdA==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-plugin-transform-vue-jsx": "^1.2.1", + "camelcase": "^5.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/babel-sugar-v-on/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@vue/cli-overlay": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-overlay/-/cli-overlay-5.0.8.tgz", + "integrity": "sha512-KmtievE/B4kcXp6SuM2gzsnSd8WebkQpg3XaB6GmFh1BJGRqa1UiW9up7L/Q67uOdTigHxr5Ar2lZms4RcDjwQ==", + "dev": true + }, + "node_modules/@vue/cli-plugin-babel": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-babel/-/cli-plugin-babel-5.0.8.tgz", + "integrity": "sha512-a4qqkml3FAJ3auqB2kN2EMPocb/iu0ykeELwed+9B1c1nQ1HKgslKMHMPavYx3Cd/QAx2mBD4hwKBqZXEI/CsQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.16", + "@vue/babel-preset-app": "^5.0.8", + "@vue/cli-shared-utils": "^5.0.8", + "babel-loader": "^8.2.2", + "thread-loader": "^3.0.0", + "webpack": "^5.54.0" + }, + "peerDependencies": { + "@vue/cli-service": "^3.0.0 || ^4.0.0 || ^5.0.0-0" + } + }, + "node_modules/@vue/cli-plugin-eslint": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-eslint/-/cli-plugin-eslint-5.0.8.tgz", + "integrity": "sha512-d11+I5ONYaAPW1KyZj9GlrV/E6HZePq5L5eAF5GgoVdu6sxr6bDgEoxzhcS1Pk2eh8rn1MxG/FyyR+eCBj/CNg==", + "dev": true, + "dependencies": { + "@vue/cli-shared-utils": "^5.0.8", + "eslint-webpack-plugin": "^3.1.0", + "globby": "^11.0.2", + "webpack": "^5.54.0", + "yorkie": "^2.0.0" + }, + "peerDependencies": { + "@vue/cli-service": "^3.0.0 || ^4.0.0 || ^5.0.0-0", + "eslint": ">=7.5.0" + } + }, + "node_modules/@vue/cli-plugin-eslint/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@vue/cli-plugin-eslint/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/@vue/cli-plugin-eslint/node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "dev": true, + "dependencies": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/@vue/cli-plugin-eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@vue/cli-plugin-eslint/node_modules/jest-worker": { + "version": "28.1.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.1.tgz", + "integrity": "sha512-Au7slXB08C6h+xbJPp7VIb6U0XX5Kc9uel/WFc6/rcTzGiaVCBRngBExSYuXSLFPULPSYU3cJ3ybS988lNFQhQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@vue/cli-plugin-eslint/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@vue/cli-plugin-eslint/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/@vue/cli-plugin-eslint/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/@vue/cli-plugin-router": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-router/-/cli-plugin-router-5.0.8.tgz", + "integrity": "sha512-Gmv4dsGdAsWPqVijz3Ux2OS2HkMrWi1ENj2cYL75nUeL+Xj5HEstSqdtfZ0b1q9NCce+BFB6QnHfTBXc/fCvMg==", + "dev": true, + "dependencies": { + "@vue/cli-shared-utils": "^5.0.8" + }, + "peerDependencies": { + "@vue/cli-service": "^3.0.0 || ^4.0.0 || ^5.0.0-0" + } + }, + "node_modules/@vue/cli-plugin-vuex": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-vuex/-/cli-plugin-vuex-5.0.8.tgz", + "integrity": "sha512-HSYWPqrunRE5ZZs8kVwiY6oWcn95qf/OQabwLfprhdpFWAGtLStShjsGED2aDpSSeGAskQETrtR/5h7VqgIlBA==", + "dev": true, + "peerDependencies": { + "@vue/cli-service": "^3.0.0 || ^4.0.0 || ^5.0.0-0" + } + }, + "node_modules/@vue/cli-service": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-service/-/cli-service-5.0.8.tgz", + "integrity": "sha512-nV7tYQLe7YsTtzFrfOMIHc5N2hp5lHG2rpYr0aNja9rNljdgcPZLyQRb2YRivTHqTv7lI962UXFURcpStHgyFw==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.12.16", + "@soda/friendly-errors-webpack-plugin": "^1.8.0", + "@soda/get-current-script": "^1.0.2", + "@types/minimist": "^1.2.0", + "@vue/cli-overlay": "^5.0.8", + "@vue/cli-plugin-router": "^5.0.8", + "@vue/cli-plugin-vuex": "^5.0.8", + "@vue/cli-shared-utils": "^5.0.8", + "@vue/component-compiler-utils": "^3.3.0", + "@vue/vue-loader-v15": "npm:vue-loader@^15.9.7", + "@vue/web-component-wrapper": "^1.3.0", + "acorn": "^8.0.5", + "acorn-walk": "^8.0.2", + "address": "^1.1.2", + "autoprefixer": "^10.2.4", + "browserslist": "^4.16.3", + "case-sensitive-paths-webpack-plugin": "^2.3.0", + "cli-highlight": "^2.1.10", + "clipboardy": "^2.3.0", + "cliui": "^7.0.4", + "copy-webpack-plugin": "^9.0.1", + "css-loader": "^6.5.0", + "css-minimizer-webpack-plugin": "^3.0.2", + "cssnano": "^5.0.0", + "debug": "^4.1.1", + "default-gateway": "^6.0.3", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "fs-extra": "^9.1.0", + "globby": "^11.0.2", + "hash-sum": "^2.0.0", + "html-webpack-plugin": "^5.1.0", + "is-file-esm": "^1.0.0", + "launch-editor-middleware": "^2.2.1", + "lodash.defaultsdeep": "^4.6.1", + "lodash.mapvalues": "^4.6.0", + "mini-css-extract-plugin": "^2.5.3", + "minimist": "^1.2.5", + "module-alias": "^2.2.2", + "portfinder": "^1.0.26", + "postcss": "^8.2.6", + "postcss-loader": "^6.1.1", + "progress-webpack-plugin": "^1.0.12", + "ssri": "^8.0.1", + "terser-webpack-plugin": "^5.1.1", + "thread-loader": "^3.0.0", + "vue-loader": "^17.0.0", + "vue-style-loader": "^4.1.3", + "webpack": "^5.54.0", + "webpack-bundle-analyzer": "^4.4.0", + "webpack-chain": "^6.5.1", + "webpack-dev-server": "^4.7.3", + "webpack-merge": "^5.7.3", + "webpack-virtual-modules": "^0.4.2", + "whatwg-fetch": "^3.6.2" + }, + "bin": { + "vue-cli-service": "bin/vue-cli-service.js" + }, + "engines": { + "node": "^12.0.0 || >= 14.0.0" + }, + "peerDependencies": { + "vue-template-compiler": "^2.0.0", + "webpack-sources": "*" + }, + "peerDependenciesMeta": { + "cache-loader": { + "optional": true + }, + "less-loader": { + "optional": true + }, + "pug-plain-loader": { + "optional": true + }, + "raw-loader": { + "optional": true + }, + "sass-loader": { + "optional": true + }, + "stylus-loader": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + }, + "webpack-sources": { + "optional": true + } + } + }, + "node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15": { + "name": "vue-loader", + "version": "15.10.0", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.10.0.tgz", + "integrity": "sha512-VU6tuO8eKajrFeBzMssFUP9SvakEeeSi1BxdTH5o3+1yUyrldp8IERkSdXlMI2t4kxF2sqYUDsQY+WJBxzBmZg==", + "dev": true, + "dependencies": { + "@vue/component-compiler-utils": "^3.1.0", + "hash-sum": "^1.0.2", + "loader-utils": "^1.1.0", + "vue-hot-reload-api": "^2.3.0", + "vue-style-loader": "^4.1.0" + } + }, + "node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/node_modules/hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==", + "dev": true + }, + "node_modules/@vue/cli-service/node_modules/acorn": { + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", + "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/@vue/cli-shared-utils": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-5.0.8.tgz", + "integrity": "sha512-uK2YB7bBVuQhjOJF+O52P9yFMXeJVj7ozqJkwYE9PlMHL1LMHjtCYm4cSdOebuPzyP+/9p0BimM/OqxsevIopQ==", + "dev": true, + "dependencies": { + "@achrinza/node-ipc": "^9.2.5", + "chalk": "^4.1.2", + "execa": "^1.0.0", + "joi": "^17.4.0", + "launch-editor": "^2.2.1", + "lru-cache": "^6.0.0", + "node-fetch": "^2.6.7", + "open": "^8.0.2", + "ora": "^5.3.0", + "read-pkg": "^5.1.1", + "semver": "^7.3.4", + "strip-ansi": "^6.0.0" + } + }, + "node_modules/@vue/cli-shared-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@vue/cli-shared-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@vue/cli-shared-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@vue/cli-shared-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@vue/cli-shared-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@vue/cli-shared-utils/node_modules/semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@vue/cli-shared-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@vue/component-compiler-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz", + "integrity": "sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==", + "dev": true, + "dependencies": { + "consolidate": "^0.15.1", + "hash-sum": "^1.0.2", + "lru-cache": "^4.1.2", + "merge-source-map": "^1.1.0", + "postcss": "^7.0.36", + "postcss-selector-parser": "^6.0.2", + "source-map": "~0.6.1", + "vue-template-es2015-compiler": "^1.9.0" + }, + "optionalDependencies": { + "prettier": "^1.18.2 || ^2.0.0" + } + }, + "node_modules/@vue/component-compiler-utils/node_modules/hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==", + "dev": true + }, + "node_modules/@vue/component-compiler-utils/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/@vue/component-compiler-utils/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/@vue/component-compiler-utils/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/@vue/component-compiler-utils/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + }, + "node_modules/@vue/web-component-wrapper": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@vue/web-component-wrapper/-/web-component-wrapper-1.3.0.tgz", + "integrity": "sha512-Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA==", + "dev": true + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", + "dev": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn-jsx": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/acorn-jsx/download/acorn-jsx-5.2.0.tgz", + "integrity": "sha1-TGYGkXPW/daO2FI5/CViJhgrLr4=", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/address/download/address-1.1.2.tgz", + "integrity": "sha1-vxEWycdYxRt6kz0pa3LCIe2UKLY=", + "dev": true, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-3.2.1.tgz", + "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "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" + } + ] + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz?cache=0&sync_timestamp=1571657259891&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fargparse%2Fdownload%2Fargparse-1.0.10.tgz", + "integrity": "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/astral-regex/download/astral-regex-1.0.0.tgz", + "integrity": "sha1-bIw/uCfdQ+45GPJ7gngqt2WKb9k=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/async-validator": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-1.8.5.tgz", + "integrity": "sha512-tXBM+1m056MAX0E8TL2iCjg8WvSyXu0Zc8LNtYqrVeyoL3+esHRZ4SieE9fKQyyU09uONjnMEjrNBMqT0mbvmA==", + "dependencies": { + "babel-runtime": "6.x" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.7", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.7.tgz", + "integrity": "sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], + "dependencies": { + "browserslist": "^4.20.3", + "caniuse-lite": "^1.0.30001335", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/axios": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "dependencies": { + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" + } + }, + "node_modules/babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npm.taobao.org/babel-eslint/download/babel-eslint-10.1.0.tgz?cache=0&sync_timestamp=1582676223200&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbabel-eslint%2Fdownload%2Fbabel-eslint-10.1.0.tgz", + "integrity": "sha1-aWjlaKkQt4+zd5zdi2rC9HmUMjI=", + "deprecated": "babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "eslint": ">= 4.12.1" + } + }, + "node_modules/babel-helper-vue-jsx-merge-props": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-2.0.3.tgz", + "integrity": "sha512-gsLiKK7Qrb7zYJNgiXKpXblxbV5ffSwR0f5whkPAaBAR4fhi6bwRZxX9wBlIc5M/v8CCkXUbXZL4N/nSE97cqg==" + }, + "node_modules/babel-loader": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz", + "integrity": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==", + "dev": true, + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dev": true, + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz", + "integrity": "sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.3.1", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz", + "integrity": "sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.1", + "core-js-compat": "^3.21.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz", + "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==", + "dependencies": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "node_modules/babel-runtime/node_modules/core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", + "hasInstallScript": true + }, + "node_modules/babel-runtime/node_modules/regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + }, + "node_modules/balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "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" + } + ] + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npm.taobao.org/big.js/download/big.js-5.2.2.tgz", + "integrity": "sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "node_modules/body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "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/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/bonjour-service": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.13.tgz", + "integrity": "sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA==", + "dev": true, + "dependencies": { + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz", + "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.21.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", + "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001359", + "electron-to-chromium": "^1.4.172", + "node-releases": "^2.0.5", + "update-browserslist-db": "^1.0.4" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "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" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camel-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001364", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001364.tgz", + "integrity": "sha512-9O0xzV3wVyX0SlegIQ6knz+okhBB5pE0PC40MNdwcipjwpxoUEHL24uJ+gG42cgklPjfO5ZjZPme9FTSN3QT2Q==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ] + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.3.0", + "resolved": "https://registry.npm.taobao.org/case-sensitive-paths-webpack-plugin/download/case-sensitive-paths-webpack-plugin-2.3.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcase-sensitive-paths-webpack-plugin%2Fdownload%2Fcase-sensitive-paths-webpack-plugin-2.3.0.tgz", + "integrity": "sha1-I6xhPMmoVuT4j/i7c7u16YmCXPc=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npm.taobao.org/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1573282918610&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "integrity": "sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npm.taobao.org/chardet/download/chardet-0.7.0.tgz", + "integrity": "sha1-kAlISfCTfy7twkJdDSip5fDLrZ4=", + "dev": true + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/chrome-trace-event/download/chrome-trace-event-1.0.2.tgz", + "integrity": "sha1-I0CQ7pfH1K0aLEvq4nUF3v/GCKQ=", + "dev": true, + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "1.6.0", + "resolved": "https://registry.npm.taobao.org/ci-info/download/ci-info-1.6.0.tgz", + "integrity": "sha1-LKINu5zrMtRSSmgzAzE/AwSx5Jc=", + "dev": true + }, + "node_modules/clean-css": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.0.tgz", + "integrity": "sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-highlight": { + "version": "2.1.11", + "resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.11.tgz", + "integrity": "sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "highlight.js": "^10.7.1", + "mz": "^2.4.0", + "parse5": "^5.1.1", + "parse5-htmlparser2-tree-adapter": "^6.0.0", + "yargs": "^16.0.0" + }, + "bin": { + "highlight": "bin/highlight" + }, + "engines": { + "node": ">=8.0.0", + "npm": ">=5.0.0" + } + }, + "node_modules/cli-highlight/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/cli-highlight/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/cli-highlight/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/cli-highlight/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/cli-highlight/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-highlight/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", + "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-width": { + "version": "2.2.0", + "resolved": "https://registry.npm.taobao.org/cli-width/download/cli-width-2.2.0.tgz", + "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", + "dev": true + }, + "node_modules/clipboardy": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-2.3.0.tgz", + "integrity": "sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==", + "dev": true, + "dependencies": { + "arch": "^2.1.1", + "execa": "^1.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/clone-deep/download/clone-deep-4.0.1.tgz", + "integrity": "sha1-wZ/Zvbv4WUK0/ZechNz31fB8I4c=", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz", + "integrity": "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "node_modules/colord": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.2.tgz", + "integrity": "sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/consolidate": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.15.1.tgz", + "integrity": "sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==", + "dev": true, + "dependencies": { + "bluebird": "^3.1.1" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-disposition/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "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" + } + ] + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/copy-webpack-plugin": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-9.1.0.tgz", + "integrity": "sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==", + "dev": true, + "dependencies": { + "fast-glob": "^3.2.7", + "glob-parent": "^6.0.1", + "globby": "^11.0.3", + "normalize-path": "^3.0.0", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/core-js": { + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", + "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.4.tgz", + "integrity": "sha512-RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.1", + "semver": "7.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat/node_modules/semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cosmiconfig": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-6.0.5.tgz", + "integrity": "sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.0.tgz", + "integrity": "sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-loader": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz", + "integrity": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==", + "dev": true, + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.7", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/css-loader/node_modules/semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "dev": true, + "dependencies": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.1.12", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.12.tgz", + "integrity": "sha512-TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ==", + "dev": true, + "dependencies": { + "cssnano-preset-default": "^5.2.12", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.2.12", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.12.tgz", + "integrity": "sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==", + "dev": true, + "dependencies": { + "css-declaration-sorter": "^6.3.0", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.0", + "postcss-convert-values": "^5.1.2", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.6", + "postcss-merge-rules": "^5.1.2", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.3", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.0", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.0", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/de-indent/download/de-indent-1.0.2.tgz", + "integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=", + "dev": true + }, + "node_modules/debug": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.1.1.tgz", + "integrity": "sha1-O3ImAlUQnGtYnO4FDx1RYTlmR5E=", + "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npm.taobao.org/deep-is/download/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "node_modules/deepmerge": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-1.5.2.tgz", + "integrity": "sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dev": true, + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/default-gateway/node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/default-gateway/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/default-gateway/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-gateway/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-gateway/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/default-gateway/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/default-gateway/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/default-gateway/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/default-gateway/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/defaults": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==", + "dev": true, + "dependencies": { + "clone": "^1.0.2" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "dev": true, + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "dev": true + }, + "node_modules/dns-packet": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz", + "integrity": "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==", + "dev": true, + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/doctrine/download/doctrine-3.0.0.tgz", + "integrity": "sha1-rd6+rXKmV023g2OdyHoSF3OXOWE=", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dev": true, + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npm.taobao.org/dotenv-expand/download/dotenv-expand-5.1.0.tgz", + "integrity": "sha1-P7rwIL/XlIhAcuomsel5HUWmKfA=", + "dev": true + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, + "node_modules/easy-stack": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/easy-stack/-/easy-stack-1.0.1.tgz", + "integrity": "sha512-wK2sCs4feiiJeFXn3zvY0p41mdU5VUgbgs1rNsc/y5ngFUijdWd+iIN8eoyuZHKB8xN6BL4PdWmzqFmxNg6V2w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/echarts": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/echarts/-/echarts-5.3.3.tgz", + "integrity": "sha512-BRw2serInRwO5SIwRviZ6Xgm5Lb7irgz+sLiFMmy/HOaf4SQ+7oYqxKzRHAKp4xHQ05AuHw1xvoQWJjDQq/FGw==", + "dependencies": { + "tslib": "2.3.0", + "zrender": "5.3.2" + } + }, + "node_modules/echarts/node_modules/tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.185", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.185.tgz", + "integrity": "sha512-9kV/isoOGpKkBt04yYNaSWIBn3187Q5VZRtoReq8oz5NY/A4XmU6cAoqgQlDp7kKJCZMRjWZ8nsQyxfpFHvfyw==", + "dev": true + }, + "node_modules/element-ui": { + "version": "2.15.9", + "resolved": "https://registry.npmjs.org/element-ui/-/element-ui-2.15.9.tgz", + "integrity": "sha512-dx45nQLt4Hn87/Z9eRr3ex6KFZbxlFAwEU3QoW3wA5EsYftvHTyL9Pq7VnXXD7hu1Eiaup2jcs6kp+/VSFmXuA==", + "dependencies": { + "async-validator": "~1.8.1", + "babel-helper-vue-jsx-merge-props": "^2.0.0", + "deepmerge": "^1.2.0", + "normalize-wheel": "^1.0.1", + "resize-observer-polyfill": "^1.5.0", + "throttle-debounce": "^1.0.1" + }, + "peerDependencies": { + "vue": "^2.5.17" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz", + "integrity": "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=", + "dev": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/emojis-list/download/emojis-list-3.0.0.tgz", + "integrity": "sha1-VXBmIEatKeLpFucariYKvf9Pang=", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz", + "integrity": "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dev": true, + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", + "dev": true + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npm.taobao.org/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint": { + "version": "6.8.0", + "resolved": "https://registry.npm.taobao.org/eslint/download/eslint-6.8.0.tgz", + "integrity": "sha1-YiYtZylzn5J1cjgkMC+yJ8jJP/s=", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "ajv": "^6.10.0", + "chalk": "^2.1.0", + "cross-spawn": "^6.0.5", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^1.4.3", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.1.2", + "esquery": "^1.0.1", + "esutils": "^2.0.2", + "file-entry-cache": "^5.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "inquirer": "^7.0.0", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.3.0", + "lodash": "^4.17.14", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "optionator": "^0.8.3", + "progress": "^2.0.0", + "regexpp": "^2.0.1", + "semver": "^6.1.2", + "strip-ansi": "^5.2.0", + "strip-json-comments": "^3.0.1", + "table": "^5.2.3", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-plugin-vue": { + "version": "6.2.2", + "resolved": "https://registry.npm.taobao.org/eslint-plugin-vue/download/eslint-plugin-vue-6.2.2.tgz?cache=0&sync_timestamp=1584178049037&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Feslint-plugin-vue%2Fdownload%2Feslint-plugin-vue-6.2.2.tgz", + "integrity": "sha1-J/7NmjokeJsPER7N1UCp5WGY4P4=", + "dev": true, + "dependencies": { + "natural-compare": "^1.4.0", + "semver": "^5.6.0", + "vue-eslint-parser": "^7.0.0" + }, + "engines": { + "node": ">=8.10" + }, + "peerDependencies": { + "eslint": "^5.0.0 || ^6.0.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-utils": { + "version": "1.4.3", + "resolved": "https://registry.npm.taobao.org/eslint-utils/download/eslint-utils-1.4.3.tgz", + "integrity": "sha1-dP7HxU0Hdrb2fgJRBAtYBlZOmB8=", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "1.1.0", + "resolved": "https://registry.npm.taobao.org/eslint-visitor-keys/download/eslint-visitor-keys-1.1.0.tgz", + "integrity": "sha1-4qgs6oT/JGrW+1f5veW0ZiFFnsI=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint/node_modules/ansi-escapes": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/ansi-escapes/download/ansi-escapes-4.3.1.tgz", + "integrity": "sha1-pcR8xDGB8fOP/XB2g3cA05VSKmE=", + "dev": true, + "dependencies": { + "type-fest": "^0.11.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.11.0", + "resolved": "https://registry.npm.taobao.org/type-fest/download/type-fest-0.11.0.tgz?cache=0&sync_timestamp=1583733678016&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftype-fest%2Fdownload%2Ftype-fest-0.11.0.tgz", + "integrity": "sha1-l6vwhyMQ/tiKXEZrJWgVdhReM/E=", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.2.1", + "resolved": "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-4.2.1.tgz", + "integrity": "sha1-kK51xCTQCNJiTFvynq0xd+v881k=", + "dev": true, + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "node_modules/eslint/node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npm.taobao.org/figures/download/figures-3.2.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffigures%2Fdownload%2Ffigures-3.2.0.tgz", + "integrity": "sha1-YlwYvSk8YE3EqN2y/r8MiDQXRq8=", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "12.4.0", + "resolved": "https://registry.npm.taobao.org/globals/download/globals-12.4.0.tgz", + "integrity": "sha1-oYgTV2pBsAokqX5/gVkYwuGZJfg=", + "dev": true, + "dependencies": { + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/inquirer": { + "version": "7.1.0", + "resolved": "https://registry.npm.taobao.org/inquirer/download/inquirer-7.1.0.tgz", + "integrity": "sha1-EpigGFmIPhfHJkuChwrhA0+S3Sk=", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^3.0.0", + "cli-cursor": "^3.1.0", + "cli-width": "^2.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.15", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.5.3", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/eslint/node_modules/inquirer/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/chalk/download/chalk-3.0.0.tgz?cache=0&sync_timestamp=1573282918610&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fchalk%2Fdownload%2Fchalk-3.0.0.tgz", + "integrity": "sha1-P3PCv1JlkfV0zEksUeJFY0n4ROQ=", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/inquirer/node_modules/strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz?cache=0&sync_timestamp=1573280518303&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-6.0.0.tgz", + "integrity": "sha1-CxVx3XZpzNTz4G4U7x7tJiJa5TI=", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npm.taobao.org/mute-stream/download/mute-stream-0.0.8.tgz", + "integrity": "sha1-FjDEKyJR/4HiooPelqVJfqkuXg0=", + "dev": true + }, + "node_modules/eslint/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz?cache=0&sync_timestamp=1573280518303&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-5.2.0.tgz", + "integrity": "sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/eslint/node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.1.0", + "resolved": "https://registry.npm.taobao.org/supports-color/download/supports-color-7.1.0.tgz", + "integrity": "sha1-aOMlkd9z4lrRxLSRCKLsUHliv9E=", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npm.taobao.org/type-fest/download/type-fest-0.8.1.tgz?cache=0&sync_timestamp=1583733678016&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftype-fest%2Fdownload%2Ftype-fest-0.8.1.tgz", + "integrity": "sha1-CeJJ696FHTseSNJ8EFREZn8XuD0=", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/espree": { + "version": "6.2.1", + "resolved": "https://registry.npm.taobao.org/espree/download/espree-6.2.1.tgz", + "integrity": "sha1-d/xy4f10SiBSwg84pbV1gy6Cc0o=", + "dev": true, + "dependencies": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/espree/node_modules/acorn": { + "version": "7.1.1", + "resolved": "https://registry.npm.taobao.org/acorn/download/acorn-7.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Facorn%2Fdownload%2Facorn-7.1.1.tgz", + "integrity": "sha1-41Zo3gtALzWd5RXFSCoaufiaab8=", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz", + "integrity": "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.1.0", + "resolved": "https://registry.npm.taobao.org/esquery/download/esquery-1.1.0.tgz", + "integrity": "sha1-xcC2bzg+dlZAT4azEzTXJSTt20g=", + "dev": true, + "dependencies": { + "estraverse": "^4.0.0" + }, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-4.3.0.tgz", + "integrity": "sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz", + "integrity": "sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/event-pubsub": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/event-pubsub/-/event-pubsub-4.3.0.tgz", + "integrity": "sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/express": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "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" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/express/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "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" + } + ] + }, + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/external-editor/download/external-editor-3.1.0.tgz", + "integrity": "sha1-ywP3QL764D6k0oPK7SdBqD8zVJU=", + "dev": true, + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "dev": true, + "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.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz?cache=0&sync_timestamp=1576340291001&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffast-json-stable-stringify%2Fdownload%2Ffast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "node_modules/fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/file-entry-cache": { + "version": "5.0.1", + "resolved": "https://registry.npm.taobao.org/file-entry-cache/download/file-entry-cache-5.0.1.tgz", + "integrity": "sha1-yg9u+m3T1WEzP7FFFQZcL6/fQ5w=", + "dev": true, + "dependencies": { + "flat-cache": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flat-cache": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/flat-cache/download/flat-cache-2.0.1.tgz", + "integrity": "sha1-XSltbwS9pEpGMKMBQTvbwuwIXsA=", + "dev": true, + "dependencies": { + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/flat-cache/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.6.3.tgz?cache=0&sync_timestamp=1581257110269&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.6.3.tgz", + "integrity": "sha1-stEE/g2Psnz54KHNqCYt04M8bKs=", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/flatted": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/flatted/download/flatted-2.0.1.tgz", + "integrity": "sha1-aeV8qo8OrLwoHS4stFjUb9tEngg=", + "dev": true + }, + "node_modules/follow-redirects": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", + "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/functional-red-black-tree/download/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "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==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npm.taobao.org/glob/download/glob-7.1.6.tgz?cache=0&sync_timestamp=1573078121947&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglob%2Fdownload%2Fglob-7.1.6.tgz", + "integrity": "sha1-FB8zuBp8JJLhJVlDB0gMRmeSeKY=", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npm.taobao.org/globals/download/globals-11.12.0.tgz", + "integrity": "sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby/node_modules/ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dev": true, + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/has-flag/download/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hash-sum": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/hash-sum/download/hash-sum-2.0.0.tgz", + "integrity": "sha1-gdAbtd6OpKIUrV1urRtSNGCwtFo=", + "dev": true + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz", + "integrity": "sha1-hK5l+n6vsWX922FWauFLrwVmTw8=", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/highlight.js": { + "version": "10.7.3", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", + "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/html-entities": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", + "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==", + "dev": true + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dev": true, + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-tags": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz", + "integrity": "sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/html-webpack-plugin": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "dev": true, + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "webpack": "^5.20.0" + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "dev": true, + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npm.taobao.org/iconv-lite/download/iconv-lite-0.4.24.tgz?cache=0&sync_timestamp=1579333981154&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ficonv-lite%2Fdownload%2Ficonv-lite-0.4.24.tgz", + "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "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" + } + ] + }, + "node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npm.taobao.org/ignore/download/ignore-4.0.6.tgz", + "integrity": "sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npm.taobao.org/imurmurhash/download/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz", + "integrity": "sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=", + "dev": true + }, + "node_modules/ipaddr.js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", + "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-ci": { + "version": "1.2.1", + "resolved": "https://registry.npm.taobao.org/is-ci/download/is-ci-1.2.1.tgz", + "integrity": "sha1-43ecjuF/zPQoSI9uKBGH8uYyhBw=", + "dev": true, + "dependencies": { + "ci-info": "^1.5.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/is-extglob/download/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-file-esm": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-file-esm/-/is-file-esm-1.0.0.tgz", + "integrity": "sha512-rZlaNKb4Mr8WlRu2A9XdeoKgnO5aA53XdPHgCKVyCrQ/rWi89RET1+bq37Ru46obaQXeiX4vmFIm1vks41hoSA==", + "dev": true, + "dependencies": { + "read-pkg-up": "^7.0.1" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/is-plain-object/download/is-plain-object-2.0.4.tgz", + "integrity": "sha1-LBY7P6+xtgbZ0Xko8FwqHDjgdnc=", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/is-promise/download/is-promise-2.1.0.tgz", + "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", + "dev": true + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npm.taobao.org/is-stream/download/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/isexe/download/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/isobject/download/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/javascript-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", + "integrity": "sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==", + "dev": true + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/joi": { + "version": "17.6.0", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz", + "integrity": "sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0", + "@sideway/address": "^4.1.3", + "@sideway/formula": "^3.0.0", + "@sideway/pinpoint": "^2.0.0" + } + }, + "node_modules/js-message": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/js-message/-/js-message-1.0.7.tgz", + "integrity": "sha512-efJLHhLjIyKRewNS9EGZ4UpI8NguuL6fKkhRxVuMmrGV2xN/0APGdQYwLFky5w9naebSZ0OwAGp0G6/2Cg90rA==", + "dev": true, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npm.taobao.org/js-yaml/download/js-yaml-3.13.1.tgz", + "integrity": "sha1-r/FRswv9+o5J4F2iLnQV6d+jeEc=", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npm.taobao.org/jsesc/download/jsesc-2.5.2.tgz", + "integrity": "sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk=", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz", + "integrity": "sha1-afaofZUTq4u4/mO9sJecRI5oRmA=", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-6.0.3.tgz", + "integrity": "sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/klona": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", + "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/launch-editor": { + "version": "2.2.1", + "resolved": "https://registry.npm.taobao.org/launch-editor/download/launch-editor-2.2.1.tgz", + "integrity": "sha1-hxtaPuOdZoD8wm03kwtu7aidsMo=", + "dev": true, + "dependencies": { + "chalk": "^2.3.0", + "shell-quote": "^1.6.1" + } + }, + "node_modules/launch-editor-middleware": { + "version": "2.2.1", + "resolved": "https://registry.npm.taobao.org/launch-editor-middleware/download/launch-editor-middleware-2.2.1.tgz", + "integrity": "sha1-4UsH5scVSwpLhqD9NFeE5FgEwVc=", + "dev": true, + "dependencies": { + "launch-editor": "^2.2.1" + } + }, + "node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npm.taobao.org/levn/download/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/loader-utils/download/loader-utils-1.4.0.tgz", + "integrity": "sha1-xXm140yzSxp07cbB+za/o3HVphM=", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/loader-utils/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/json5/download/json5-1.0.1.tgz", + "integrity": "sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "node_modules/lodash.defaultsdeep": { + "version": "4.6.1", + "resolved": "https://registry.npm.taobao.org/lodash.defaultsdeep/download/lodash.defaultsdeep-4.6.1.tgz", + "integrity": "sha1-US6b1yHSctlOPTpjZT+hdRZ0HKY=", + "dev": true + }, + "node_modules/lodash.kebabcase": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", + "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==", + "dev": true + }, + "node_modules/lodash.mapvalues": { + "version": "4.6.0", + "resolved": "https://registry.npm.taobao.org/lodash.mapvalues/download/lodash.mapvalues-4.6.0.tgz", + "integrity": "sha1-G6+lAF3p3W9PJmaMMMo3IwzJaJw=", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/log-symbols/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/log-symbols/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-update": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz", + "integrity": "sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==", + "dev": true, + "dependencies": { + "ansi-escapes": "^3.0.0", + "cli-cursor": "^2.0.0", + "wrap-ansi": "^3.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", + "dev": true, + "dependencies": { + "restore-cursor": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", + "dev": true, + "dependencies": { + "mimic-fn": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "dev": true, + "dependencies": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dev": true, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", + "integrity": "sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==", + "dev": true, + "dependencies": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lower-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz", + "integrity": "sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==", + "dev": true, + "dependencies": { + "fs-monkey": "^1.0.3" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "node_modules/merge-source-map": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz", + "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==", + "dev": true, + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz", + "integrity": "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==", + "dev": true, + "dependencies": { + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true + }, + "node_modules/minipass": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz", + "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/module-alias": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/module-alias/-/module-alias-2.2.2.tgz", + "integrity": "sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q==", + "dev": true + }, + "node_modules/mrmime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz", + "integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=", + "dev": true + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dev": true, + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "2.1.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-2.1.11.tgz", + "integrity": "sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==" + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/natural-compare/download/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npm.taobao.org/nice-try/download/nice-try-1.0.5.tgz", + "integrity": "sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y=", + "dev": true + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/no-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true, + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-releases": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", + "dev": true + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/normalize-path/download/normalize-path-3.0.0.tgz", + "integrity": "sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/normalize-wheel": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/normalize-wheel/-/normalize-wheel-1.0.1.tgz", + "integrity": "sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA==" + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npm.taobao.org/npm-run-path/download/npm-run-path-2.0.2.tgz?cache=0&sync_timestamp=1577053500910&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnpm-run-path%2Fdownload%2Fnpm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", + "dev": true, + "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==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", + "dev": true, + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "dev": true, + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz?cache=0&sync_timestamp=1573078174520&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Foptionator%2Fdownload%2Foptionator-0.8.3.tgz", + "integrity": "sha1-hPodA2/p08fiHZmIS2ARZ+yPtJU=", + "dev": true, + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ora/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ora/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/ora/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/ora/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ora/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/os-tmpdir/download/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/p-finally/download/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dev": true, + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/param-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/parent-module/download/parent-module-1.0.1.tgz", + "integrity": "sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parent-module/node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/callsites/download/callsites-3.1.0.tgz", + "integrity": "sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", + "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==", + "dev": true + }, + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "dev": true, + "dependencies": { + "parse5": "^6.0.1" + } + }, + "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascal-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/path-is-absolute/download/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/path-key/download/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dev": true, + "dependencies": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/postcss": { + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-colormin": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", + "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-convert-values": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.2.tgz", + "integrity": "sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==", + "dev": true, + "dependencies": { + "browserslist": "^4.20.3", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dev": true, + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "node_modules/postcss-loader/node_modules/semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.6.tgz", + "integrity": "sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-merge-rules": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.2.tgz", + "integrity": "sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "dev": true, + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-params": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.3.tgz", + "integrity": "sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.6", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.0.tgz", + "integrity": "sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.6", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "dev": true, + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "dev": true, + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.0.tgz", + "integrity": "sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.10", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/postcss/node_modules/nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "dev": true, + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", + "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==", + "dev": true, + "optional": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/progress/download/progress-2.0.3.tgz", + "integrity": "sha1-foz42PW48jnBvGi+tOt4Vn1XLvg=", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/progress-webpack-plugin": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/progress-webpack-plugin/-/progress-webpack-plugin-1.0.16.tgz", + "integrity": "sha512-sdiHuuKOzELcBANHfrupYo+r99iPRyOnw15qX+rNlVUqXGfjXdH4IgxriKwG1kNJwVswKQHMdj1hYZMcb9jFaA==", + "dev": true, + "dependencies": { + "chalk": "^2.1.0", + "figures": "^2.0.0", + "log-update": "^2.3.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "peerDependencies": { + "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/pseudomap/download/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz", + "integrity": "sha1-tYsBCsQMIsVldhbI0sLALHv0eew=", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/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" + } + ] + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz", + "integrity": "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.5", + "resolved": "https://registry.npm.taobao.org/regenerator-runtime/download/regenerator-runtime-0.13.5.tgz?cache=0&sync_timestamp=1584052481783&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregenerator-runtime%2Fdownload%2Fregenerator-runtime-0.13.5.tgz", + "integrity": "sha1-2Hih0JS0MG0QuQlkhLM+vVXiZpc=" + }, + "node_modules/regenerator-transform": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz", + "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexpp": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/regexpp/download/regexpp-2.0.1.tgz", + "integrity": "sha1-jRnTHPYySCtYkEn4KB+T28uk0H8=", + "dev": true, + "engines": { + "node": ">=6.5.0" + } + }, + "node_modules/regexpu-core": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.1.0.tgz", + "integrity": "sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.0.1", + "regjsgen": "^0.6.0", + "regjsparser": "^0.8.2", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz", + "integrity": "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==", + "dev": true + }, + "node_modules/regjsparser": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz", + "integrity": "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dev": true, + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "node_modules/resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", + "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" + }, + "node_modules/resolve": { + "version": "1.15.1", + "resolved": "https://registry.npm.taobao.org/resolve/download/resolve-1.15.1.tgz?cache=0&sync_timestamp=1580943346382&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fresolve%2Fdownload%2Fresolve-1.15.1.tgz", + "integrity": "sha1-J73N7/6vLWJEuVuw+fS0ZTRR8+g=", + "dev": true, + "dependencies": { + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-async": { + "version": "2.4.0", + "resolved": "https://registry.npm.taobao.org/run-async/download/run-async-2.4.0.tgz", + "integrity": "sha1-5ZBUpbhods+uB/Qx0Yy63cWU8eg=", + "dev": true, + "dependencies": { + "is-promise": "^2.1.0" + }, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/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" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rxjs": { + "version": "6.5.4", + "resolved": "https://registry.npm.taobao.org/rxjs/download/rxjs-6.5.4.tgz", + "integrity": "sha1-4Hd/4NGEzseHLfFH8wNXLUFOIRw=", + "dev": true, + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz", + "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=", + "dev": true + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz", + "integrity": "sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=", + "dev": true + }, + "node_modules/sass": { + "version": "1.26.3", + "resolved": "https://registry.npm.taobao.org/sass/download/sass-1.26.3.tgz", + "integrity": "sha1-QS31RIYUO3a1plzfdWnob0Rln0Y=", + "dev": true, + "dependencies": { + "chokidar": ">=2.0.0 <4.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/sass-loader": { + "version": "8.0.2", + "resolved": "https://registry.npm.taobao.org/sass-loader/download/sass-loader-8.0.2.tgz", + "integrity": "sha1-3r7NjDziQ8dkVPLoKQSCFQOACQ0=", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "loader-utils": "^1.2.3", + "neo-async": "^2.6.1", + "schema-utils": "^2.6.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0", + "sass": "^1.3.0", + "webpack": "^4.36.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/sass-loader/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/schema-utils": { + "version": "2.6.5", + "resolved": "https://registry.npm.taobao.org/schema-utils/download/schema-utils-2.6.5.tgz", + "integrity": "sha1-x1jwp+YkJjBz05binNQKoQEVLYo=", + "dev": true, + "dependencies": { + "ajv": "^6.12.0", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "node_modules/selfsigned": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.0.1.tgz", + "integrity": "sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==", + "dev": true, + "dependencies": { + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz", + "integrity": "sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dev": true, + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/shallow-clone/download/shallow-clone-3.0.1.tgz", + "integrity": "sha1-jymBrZJTH1UDWwH7IwdppA4C76M=", + "dev": true, + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/shebang-command/download/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/shebang-regex/download/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shell-quote": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz", + "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==", + "dev": true + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sirv": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-1.0.19.tgz", + "integrity": "sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==", + "dev": true, + "dependencies": { + "@polka/url": "^1.0.0-next.20", + "mrmime": "^1.0.0", + "totalist": "^1.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/slice-ansi/download/slice-ansi-2.1.0.tgz", + "integrity": "sha1-ys12k0YaY3pXiNkqfdT7oGjoFjY=", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", + "dev": true + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/sprintf-js/download/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "node_modules/ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", + "dev": true + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "dev": true + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/strip-eof/download/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/strip-indent/download/strip-indent-2.0.0.tgz", + "integrity": "sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-json-comments": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/strip-json-comments/download/strip-json-comments-3.0.1.tgz", + "integrity": "sha1-hXE5dakfuHvxswXMp3OV5A0qZKc=", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/stylehacks": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.0.tgz", + "integrity": "sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.6", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npm.taobao.org/supports-color/download/supports-color-5.5.0.tgz", + "integrity": "sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", + "dev": true + }, + "node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dev": true, + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/table": { + "version": "5.4.6", + "resolved": "https://registry.npm.taobao.org/table/download/table-5.4.6.tgz", + "integrity": "sha1-EpLRlQDOP4YFOwXw6Ofko7shB54=", + "dev": true, + "dependencies": { + "ajv": "^6.10.2", + "lodash": "^4.17.14", + "slice-ansi": "^2.1.0", + "string-width": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/table/node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-7.0.3.tgz", + "integrity": "sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY=", + "dev": true + }, + "node_modules/table/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstring-width%2Fdownload%2Fstring-width-3.1.0.tgz", + "integrity": "sha1-InZ74htirxCBV0MG9prFG2IgOWE=", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/table/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz?cache=0&sync_timestamp=1573280518303&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-5.2.0.tgz", + "integrity": "sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/terser": { + "version": "5.14.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz", + "integrity": "sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.3.tgz", + "integrity": "sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.7", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "terser": "^5.7.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser/node_modules/acorn": { + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", + "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npm.taobao.org/text-table/download/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/thread-loader": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/thread-loader/-/thread-loader-3.0.4.tgz", + "integrity": "sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==", + "dev": true, + "dependencies": { + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^4.1.0", + "loader-utils": "^2.0.0", + "neo-async": "^2.6.2", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } + }, + "node_modules/thread-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/thread-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/throttle-debounce": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-1.1.0.tgz", + "integrity": "sha512-XH8UiPCQcWNuk2LYePibW/4qL97+ZQ1AN3FNXwZRBNPPowo/NRU5fAlDCSNBJIYCKbioZfuYtMhG4quqoJhVzg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npm.taobao.org/through/download/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npm.taobao.org/tmp/download/tmp-0.0.33.tgz", + "integrity": "sha1-bTQzWIl2jSGyvNoKonfO07G/rfk=", + "dev": true, + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/to-fast-properties/download/to-fast-properties-2.0.0.tgz?cache=0&sync_timestamp=1580550317222&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fto-fast-properties%2Fdownload%2Fto-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/totalist": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-1.1.0.tgz", + "integrity": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "node_modules/tslib": { + "version": "1.11.1", + "resolved": "https://registry.npm.taobao.org/tslib/download/tslib-1.11.1.tgz", + "integrity": "sha1-6xXRKIJ/vuKEFUnhcfRe0zisfjU=", + "dev": true + }, + "node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", + "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist-lint": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/uri-js/download/uri-js-4.2.2.tgz", + "integrity": "sha1-lMVA4f93KVbiKZUHwBCupsiDjrA=", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/v8-compile-cache/download/v8-compile-cache-2.1.0.tgz", + "integrity": "sha1-4U3jezGm0ZT1aQ1n78Tn9vxqsw4=", + "dev": true + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vue": { + "version": "2.6.11", + "resolved": "https://registry.npm.taobao.org/vue/download/vue-2.6.11.tgz?cache=0&sync_timestamp=1583528900332&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue%2Fdownload%2Fvue-2.6.11.tgz", + "integrity": "sha1-dllNh31LEiNEBuhONSdcbVFBJcU=" + }, + "node_modules/vue-awesome": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/vue-awesome/-/vue-awesome-4.0.2.tgz", + "integrity": "sha512-TE9hVwyVrGnBetO/MJwZ/7qLO6Vgr/WrDtIA7vwNryoLdA2jfRcKRw29KacpU5xj3wzZhHfYJ2xJLxfirhmH5Q==", + "dependencies": { + "nanoid": "^2.1.6" + }, + "engines": { + "node": ">= 4.0.0", + "npm": ">= 3.0.0" + }, + "peerDependencies": { + "vue": "^2.4.0" + } + }, + "node_modules/vue-eslint-parser": { + "version": "7.0.0", + "resolved": "https://registry.npm.taobao.org/vue-eslint-parser/download/vue-eslint-parser-7.0.0.tgz?cache=0&sync_timestamp=1573306368916&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue-eslint-parser%2Fdownload%2Fvue-eslint-parser-7.0.0.tgz", + "integrity": "sha1-pO0mafhxed7dBq/dhzasuzo4ZNY=", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "eslint-scope": "^5.0.0", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.1.2", + "esquery": "^1.0.1", + "lodash": "^4.17.15" + }, + "engines": { + "node": ">=8.10" + }, + "peerDependencies": { + "eslint": ">=5.0.0" + } + }, + "node_modules/vue-hot-reload-api": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz", + "integrity": "sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==", + "dev": true + }, + "node_modules/vue-loader": { + "version": "17.0.0", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-17.0.0.tgz", + "integrity": "sha512-OWSXjrzIvbF2LtOUmxT3HYgwwubbfFelN8PAP9R9dwpIkj48TVioHhWWSx7W7fk+iF5cgg3CBJRxwTdtLU4Ecg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "hash-sum": "^2.0.0", + "loader-utils": "^2.0.0" + }, + "peerDependencies": { + "webpack": "^4.1.0 || ^5.0.0-0" + } + }, + "node_modules/vue-loader/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/vue-loader/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/vue-loader/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/vue-loader/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/vue-loader/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/vue-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/vue-loader/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/vue-router": { + "version": "3.1.6", + "resolved": "https://registry.npm.taobao.org/vue-router/download/vue-router-3.1.6.tgz?cache=0&sync_timestamp=1584203224109&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue-router%2Fdownload%2Fvue-router-3.1.6.tgz", + "integrity": "sha1-RfWjo4Q+MXAsBh3YKTk1VOQyj4k=" + }, + "node_modules/vue-style-loader": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.3.tgz", + "integrity": "sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==", + "dev": true, + "dependencies": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + } + }, + "node_modules/vue-style-loader/node_modules/hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==", + "dev": true + }, + "node_modules/vue-template-compiler": { + "version": "2.6.11", + "resolved": "https://registry.npm.taobao.org/vue-template-compiler/download/vue-template-compiler-2.6.11.tgz?cache=0&sync_timestamp=1576267127911&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue-template-compiler%2Fdownload%2Fvue-template-compiler-2.6.11.tgz", + "integrity": "sha1-wEcE749JixUxMAGJk+VjCdRpgIA=", + "dev": true, + "dependencies": { + "de-indent": "^1.0.2", + "he": "^1.1.0" + } + }, + "node_modules/vue-template-es2015-compiler": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz", + "integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==", + "dev": true + }, + "node_modules/vuex": { + "version": "3.1.3", + "resolved": "https://registry.npm.taobao.org/vuex/download/vuex-3.1.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvuex%2Fdownload%2Fvuex-3.1.3.tgz", + "integrity": "sha1-8q1z4/tzaRaYs4yT9m5Y4meUcYA=", + "peerDependencies": { + "vue": "^2.0.0" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dev": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/webpack": { + "version": "5.73.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.73.0.tgz", + "integrity": "sha512-svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHGA==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.4.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.9.3", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.3.1", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-bundle-analyzer": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.5.0.tgz", + "integrity": "sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==", + "dev": true, + "dependencies": { + "acorn": "^8.0.4", + "acorn-walk": "^8.0.0", + "chalk": "^4.1.0", + "commander": "^7.2.0", + "gzip-size": "^6.0.0", + "lodash": "^4.17.20", + "opener": "^1.5.2", + "sirv": "^1.0.7", + "ws": "^7.3.1" + }, + "bin": { + "webpack-bundle-analyzer": "lib/bin/analyzer.js" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/acorn": { + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", + "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/webpack-bundle-analyzer/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-chain": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/webpack-chain/-/webpack-chain-6.5.1.tgz", + "integrity": "sha512-7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA==", + "dev": true, + "dependencies": { + "deepmerge": "^1.5.2", + "javascript-stringify": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "dev": true, + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.9.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.9.3.tgz", + "integrity": "sha512-3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw==", + "dev": true, + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.1", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.0.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.4.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.0.tgz", + "integrity": "sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/webpack-merge": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-virtual-modules": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.4.tgz", + "integrity": "sha512-h9atBP/bsZohWpHnr+2sic8Iecb60GxftXsWNLLLSqewgIsGzByd2gcIID4nXcG+3tNe4GQG3dLcff3kXupdRA==", + "dev": true + }, + "node_modules/webpack/node_modules/acorn": { + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", + "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/webpack/node_modules/acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==", + "dev": true + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npm.taobao.org/which/download/which-1.3.1.tgz?cache=0&sync_timestamp=1574116720213&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwhich%2Fdownload%2Fwhich-1.3.1.tgz", + "integrity": "sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "dev": true + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npm.taobao.org/word-wrap/download/word-wrap-1.2.3.tgz", + "integrity": "sha1-YQY29rH3A4kb00dxzLF/uTtHB5w=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/wrappy/download/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "node_modules/write": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/write/download/write-1.0.3.tgz", + "integrity": "sha1-CADhRSO5I6OH5BUSPIZWFqrg9cM=", + "dev": true, + "dependencies": { + "mkdirp": "^0.5.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ws": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.8.tgz", + "integrity": "sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==", + "dev": true, + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yorkie": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/yorkie/download/yorkie-2.0.0.tgz", + "integrity": "sha1-kkEZEtQ1IU4SxRwq4Qk+VLa7g9k=", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "execa": "^0.8.0", + "is-ci": "^1.0.10", + "normalize-path": "^1.0.0", + "strip-indent": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yorkie/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "dev": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/yorkie/node_modules/execa": { + "version": "0.8.0", + "resolved": "https://registry.npm.taobao.org/execa/download/execa-0.8.0.tgz?cache=0&sync_timestamp=1576749091315&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fexeca%2Fdownload%2Fexeca-0.8.0.tgz", + "integrity": "sha1-2NdrvBtVIX7RkP1t1J08d07PyNo=", + "dev": true, + "dependencies": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yorkie/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/get-stream/download/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/yorkie/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-4.1.5.tgz", + "integrity": "sha1-i75Q6oW+1ZvJ4z3KuCNe6bz0Q80=", + "dev": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/yorkie/node_modules/normalize-path": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/normalize-path/download/normalize-path-1.0.0.tgz", + "integrity": "sha1-MtDkcvkf80VwHBWoMRAY07CpA3k=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yorkie/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + }, + "node_modules/zrender": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/zrender/-/zrender-5.3.2.tgz", + "integrity": "sha512-8IiYdfwHj2rx0UeIGZGGU4WEVSDEdeVCaIg/fomejg1Xu6OifAL1GVzIPHg2D+MyUkbNgPWji90t0a8IDk+39w==", + "dependencies": { + "tslib": "2.3.0" + } + }, + "node_modules/zrender/node_modules/tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + } + }, + "dependencies": { + "@achrinza/node-ipc": { + "version": "9.2.5", + "resolved": "https://registry.npmjs.org/@achrinza/node-ipc/-/node-ipc-9.2.5.tgz", + "integrity": "sha512-kBX7Ay911iXZ3VZ1pYltj3Rfu7Ow9H7sK4H4RSfWIfWR2JKNB40K808wppoRIEzE2j2hXLU+r6TJgCAliCGhyQ==", + "dev": true, + "requires": { + "@node-ipc/js-queue": "2.0.3", + "event-pubsub": "4.3.0", + "js-message": "1.0.7" + } + }, + "@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "dev": true, + "requires": { + "@babel/highlight": "^7.18.6" + } + }, + "@babel/compat-data": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.8.tgz", + "integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==", + "dev": true + }, + "@babel/core": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.6.tgz", + "integrity": "sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.18.6", + "@babel/helper-compilation-targets": "^7.18.6", + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helpers": "^7.18.6", + "@babel/parser": "^7.18.6", + "@babel/template": "^7.18.6", + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.1", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.18.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", + "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", + "dev": true, + "requires": { + "@babel/types": "^7.18.7", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + } + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.6.tgz", + "integrity": "sha512-KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw==", + "dev": true, + "requires": { + "@babel/helper-explode-assignable-expression": "^7.18.6", + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.6.tgz", + "integrity": "sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.18.6", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.20.2", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.6.tgz", + "integrity": "sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-function-name": "^7.18.6", + "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.18.6.tgz", + "integrity": "sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "regexpu-core": "^5.1.0" + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz", + "integrity": "sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-environment-visitor": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", + "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==", + "dev": true + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", + "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-function-name": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", + "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", + "dev": true, + "requires": { + "@babel/template": "^7.18.6", + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.6.tgz", + "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-module-transforms": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz", + "integrity": "sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.18.6", + "@babel/template": "^7.18.6", + "@babel/traverse": "^7.18.8", + "@babel/types": "^7.18.8" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", + "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", + "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==", + "dev": true + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.6.tgz", + "integrity": "sha512-z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-wrap-function": "^7.18.6", + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-replace-supers": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", + "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-member-expression-to-functions": "^7.18.6", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-simple-access": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", + "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.6.tgz", + "integrity": "sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz", + "integrity": "sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.18.6", + "@babel/template": "^7.18.6", + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6" + } + }, + "@babel/helpers": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.6.tgz", + "integrity": "sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==", + "dev": true, + "requires": { + "@babel/template": "^7.18.6", + "@babel/traverse": "^7.18.6", + "@babel/types": "^7.18.6" + } + }, + "@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz", + "integrity": "sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==", + "dev": true + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", + "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.6.tgz", + "integrity": "sha512-Udgu8ZRgrBrttVz6A0EVL0SJ1z+RLbIeqsu632SA1hf0awEppD6TvdznoH+orIF8wtFFAV/Enmw9Y+9oV8TQcw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.6" + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.6.tgz", + "integrity": "sha512-WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-remap-async-to-generator": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz", + "integrity": "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-proposal-decorators": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.18.6.tgz", + "integrity": "sha512-gAdhsjaYmiZVxx5vTMiRfj31nB7LhwBJFMSLzeDxc7X4tKLixup0+k9ughn0RcpBrv9E3PBaXJW7jF5TCihAOg==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/plugin-syntax-decorators": "^7.18.6" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.6.tgz", + "integrity": "sha512-zr/QcUlUo7GPo6+X1wC98NJADqmy5QTFWWhqeQWiki4XHafJtLl/YMGkmRB2szDD2IYJCCdBTd4ElwhId9T7Xw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.6.tgz", + "integrity": "sha512-zMo66azZth/0tVd7gmkxOkOjs2rpHyhpcFo565PUP37hSp6hSd9uUKIfTDFMz58BwqgQKhJ9YxtM5XddjXVn+Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.6.tgz", + "integrity": "sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.18.6", + "@babel/helper-compilation-targets": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.18.6" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.6.tgz", + "integrity": "sha512-PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz", + "integrity": "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-decorators": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.18.6.tgz", + "integrity": "sha512-fqyLgjcxf/1yhyZ6A+yo1u9gJ7eleFQod2lkaUsF9DQ7sbbY3Ligym3L0+I2c0WmqNKDpoD9UTb1AKP3qRMOAQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-import-assertions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz", + "integrity": "sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", + "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz", + "integrity": "sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz", + "integrity": "sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-remap-async-to-generator": "^7.18.6" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", + "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.6.tgz", + "integrity": "sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.8.tgz", + "integrity": "sha512-RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-function-name": "^7.18.6", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.6.tgz", + "integrity": "sha512-9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.6.tgz", + "integrity": "sha512-tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", + "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.6.tgz", + "integrity": "sha512-NJU26U/208+sxYszf82nmGYqVF9QN8py2HFTblPT9hbawi8+1C5a9JubODLTGFuT0qlkqVinmkwOD13s0sZktg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", + "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", + "dev": true, + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.6.tgz", + "integrity": "sha512-kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.18.6", + "@babel/helper-function-name": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.6.tgz", + "integrity": "sha512-x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", + "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz", + "integrity": "sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz", + "integrity": "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-simple-access": "^7.18.6", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.6.tgz", + "integrity": "sha512-UbPYpXxLjTw6w6yXX2BYNxF3p6QY225wcTkfQCy3OMnSlS/C3xGtwUjEzGkldb/sy6PWLiCQ3NbYfjWUTI3t4g==", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-validator-identifier": "^7.18.6", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", + "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.18.6.tgz", + "integrity": "sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", + "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", + "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", + "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", + "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz", + "integrity": "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "regenerator-transform": "^0.15.0" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", + "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.6.tgz", + "integrity": "sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "babel-plugin-polyfill-corejs2": "^0.3.1", + "babel-plugin-polyfill-corejs3": "^0.5.2", + "babel-plugin-polyfill-regenerator": "^0.3.1", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", + "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.6.tgz", + "integrity": "sha512-ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", + "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.6.tgz", + "integrity": "sha512-UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.6.tgz", + "integrity": "sha512-7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.6.tgz", + "integrity": "sha512-XNRwQUXYMP7VLuy54cr/KS/WeL3AZeORhrmeZ7iewgu+X2eBqmpaLI/hzqr9ZxCeUoq0ASK4GUzSM0BDhZkLFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", + "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/preset-env": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.6.tgz", + "integrity": "sha512-WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.18.6", + "@babel/helper-compilation-targets": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.6", + "@babel/plugin-proposal-async-generator-functions": "^7.18.6", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-class-static-block": "^7.18.6", + "@babel/plugin-proposal-dynamic-import": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.6", + "@babel/plugin-proposal-json-strings": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.6", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.18.6", + "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.6", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.18.6", + "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.18.6", + "@babel/plugin-transform-async-to-generator": "^7.18.6", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.18.6", + "@babel/plugin-transform-classes": "^7.18.6", + "@babel/plugin-transform-computed-properties": "^7.18.6", + "@babel/plugin-transform-destructuring": "^7.18.6", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.6", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.6", + "@babel/plugin-transform-function-name": "^7.18.6", + "@babel/plugin-transform-literals": "^7.18.6", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.18.6", + "@babel/plugin-transform-modules-commonjs": "^7.18.6", + "@babel/plugin-transform-modules-systemjs": "^7.18.6", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.18.6", + "@babel/plugin-transform-new-target": "^7.18.6", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.18.6", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.18.6", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.18.6", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.6", + "@babel/plugin-transform-typeof-symbol": "^7.18.6", + "@babel/plugin-transform-unicode-escapes": "^7.18.6", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.18.6", + "babel-plugin-polyfill-corejs2": "^0.3.1", + "babel-plugin-polyfill-corejs3": "^0.5.2", + "babel-plugin-polyfill-regenerator": "^0.3.1", + "core-js-compat": "^3.22.1", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/runtime": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz", + "integrity": "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", + "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.6", + "@babel/types": "^7.18.6" + } + }, + "@babel/traverse": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz", + "integrity": "sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.18.7", + "@babel/helper-environment-visitor": "^7.18.6", + "@babel/helper-function-name": "^7.18.6", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.18.8", + "@babel/types": "^7.18.8", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz", + "integrity": "sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "to-fast-properties": "^2.0.0" + } + }, + "@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "dev": true + }, + "@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "dev": true, + "requires": { + "@hapi/hoek": "^9.0.0" + } + }, + "@jiaminghi/bezier-curve": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/@jiaminghi/bezier-curve/-/bezier-curve-0.0.9.tgz", + "integrity": "sha512-u9xJPOEl6Dri2E9FfmJoGxYQY7vYJkURNX04Vj64tdi535tPrpkuf9Sm0lNr3QTKdHQh0DdNRsaa62FLQNQEEw==", + "requires": { + "@babel/runtime": "^7.5.5" + } + }, + "@jiaminghi/c-render": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@jiaminghi/c-render/-/c-render-0.4.3.tgz", + "integrity": "sha512-FJfzj5hGj7MLqqqI2D7vEzHKbQ1Ynnn7PJKgzsjXaZpJzTqs2Yw5OSeZnm6l7Qj7jyPAP53lFvEQNH4o4j6s+Q==", + "requires": { + "@babel/runtime": "^7.5.5", + "@jiaminghi/bezier-curve": "*", + "@jiaminghi/color": "*", + "@jiaminghi/transition": "*" + } + }, + "@jiaminghi/charts": { + "version": "0.2.12", + "resolved": "https://registry.npmjs.org/@jiaminghi/charts/-/charts-0.2.12.tgz", + "integrity": "sha512-M++pdGrvazODF+27ROyn/jVwChFX8+4Tja0X3ibfye9EOO/ktzN+iMae0PIBSwW1F6X1diwldVYpfgSmXXJMMg==", + "requires": { + "@babel/runtime": "^7.5.5", + "@jiaminghi/c-render": "*" + } + }, + "@jiaminghi/color": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jiaminghi/color/-/color-0.1.1.tgz", + "integrity": "sha512-M09+Sb5HGqVim0zo+nG5gU1v+6gXT8ptr0BZR6dMGt83XmCJgnZtO8s7llTW4hLFFFM5co6geZvTekqLpSPAAQ==", + "requires": { + "@babel/runtime": "^7.5.5" + } + }, + "@jiaminghi/data-view": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@jiaminghi/data-view/-/data-view-2.7.3.tgz", + "integrity": "sha512-3dxFJkaGKogUMzAkJBBMOvD9sXGFwHNByyM7IiLBSO8Hb0a5Aa6IQ8cfu+0X2r+irLw2Ty5KDmoarc9GTxfHoQ==", + "requires": { + "@babel/runtime": "^7.5.5", + "@jiaminghi/charts": "*" + } + }, + "@jiaminghi/transition": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/@jiaminghi/transition/-/transition-1.1.11.tgz", + "integrity": "sha512-owBggipoHMikDHHDW5Gc7RZYlVuvxHADiU4bxfjBVkHDAmmck+fCkm46n2JzC3j33hWvP9nSCAeh37t6stgWeg==", + "requires": { + "@babel/runtime": "^7.5.5" + } + }, + "@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, + "@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + } + } + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.14", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz", + "integrity": "sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "dev": true + }, + "@node-ipc/js-queue": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@node-ipc/js-queue/-/js-queue-2.0.3.tgz", + "integrity": "sha512-fL1wpr8hhD5gT2dA1qifeVaoDFlQR5es8tFuKqjHX+kdOtdNHnxkVZbtIrR2rxnMFvehkjaZRNV2H/gPXlb0hw==", + "dev": true, + "requires": { + "easy-stack": "1.0.1" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@polka/url": { + "version": "1.0.0-next.21", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz", + "integrity": "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==", + "dev": true + }, + "@sideway/address": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", + "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", + "dev": true, + "requires": { + "@hapi/hoek": "^9.0.0" + } + }, + "@sideway/formula": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz", + "integrity": "sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==", + "dev": true + }, + "@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "dev": true + }, + "@soda/friendly-errors-webpack-plugin": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/@soda/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.8.1.tgz", + "integrity": "sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg==", + "dev": true, + "requires": { + "chalk": "^3.0.0", + "error-stack-parser": "^2.0.6", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@soda/get-current-script": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@soda/get-current-script/-/get-current-script-1.0.2.tgz", + "integrity": "sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w==", + "dev": true + }, + "@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true + }, + "@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dev": true, + "requires": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/color-name": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/@types/color-name/download/@types/color-name-1.1.1.tgz", + "integrity": "sha1-HBJhu+qhCoBVu8XYq4S3sq/IRqA=", + "dev": true + }, + "@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/connect-history-api-fallback": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", + "dev": true, + "requires": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "@types/echarts": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/@types/echarts/-/echarts-4.4.3.tgz", + "integrity": "sha512-HmDmg9hDJQC5KOpNOeVgcaBM+emDiduNyCCHVInDrVVfLDVPuK4fSSISy39kn1HqPa1hYDQ96FIGEhjRNGHhPA==", + "requires": { + "@types/zrender": "*" + } + }, + "@types/eslint": { + "version": "8.4.5", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.5.tgz", + "integrity": "sha512-dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dev": true, + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", + "dev": true + }, + "@types/express": { + "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", + "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "dev": true, + "requires": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "@types/express-serve-static-core": { + "version": "4.17.29", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.29.tgz", + "integrity": "sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "dev": true + }, + "@types/http-proxy": { + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", + "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true + }, + "@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "dev": true + }, + "@types/minimist": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", + "dev": true + }, + "@types/node": { + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.3.tgz", + "integrity": "sha512-HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ==", + "dev": true + }, + "@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true + }, + "@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, + "@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "dev": true + }, + "@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "dev": true, + "requires": { + "@types/express": "*" + } + }, + "@types/serve-static": { + "version": "1.13.10", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", + "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", + "dev": true, + "requires": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/ws": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/zrender": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/zrender/-/zrender-4.0.0.tgz", + "integrity": "sha512-s89GOIeKFiod2KSqHkfd2rzx+T2DVu7ihZCBEBnhFrzvQPUmzvDSBot9Fi1DfMQm9Odg+rTqoMGC38RvrwJK2w==" + }, + "@vue/babel-helper-vue-jsx-merge-props": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.2.1.tgz", + "integrity": "sha512-QOi5OW45e2R20VygMSNhyQHvpdUwQZqGPc748JLGCYEy+yp8fNFNdbNIGAgZmi9e+2JHPd6i6idRuqivyicIkA==", + "dev": true + }, + "@vue/babel-helper-vue-transform-on": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.2.tgz", + "integrity": "sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==", + "dev": true + }, + "@vue/babel-plugin-jsx": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.1.tgz", + "integrity": "sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.0.0", + "@babel/template": "^7.0.0", + "@babel/traverse": "^7.0.0", + "@babel/types": "^7.0.0", + "@vue/babel-helper-vue-transform-on": "^1.0.2", + "camelcase": "^6.0.0", + "html-tags": "^3.1.0", + "svg-tags": "^1.0.0" + } + }, + "@vue/babel-plugin-transform-vue-jsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.2.1.tgz", + "integrity": "sha512-HJuqwACYehQwh1fNT8f4kyzqlNMpBuUK4rSiSES5D4QsYncv5fxFsLyrxFPG2ksO7t5WP+Vgix6tt6yKClwPzA==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "html-tags": "^2.0.0", + "lodash.kebabcase": "^4.1.1", + "svg-tags": "^1.0.0" + }, + "dependencies": { + "html-tags": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz", + "integrity": "sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g==", + "dev": true + } + } + }, + "@vue/babel-preset-app": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/babel-preset-app/-/babel-preset-app-5.0.8.tgz", + "integrity": "sha512-yl+5qhpjd8e1G4cMXfORkkBlvtPCIgmRf3IYCWYDKIQ7m+PPa5iTm4feiNmCMD6yGqQWMhhK/7M3oWGL9boKwg==", + "dev": true, + "requires": { + "@babel/core": "^7.12.16", + "@babel/helper-compilation-targets": "^7.12.16", + "@babel/helper-module-imports": "^7.12.13", + "@babel/plugin-proposal-class-properties": "^7.12.13", + "@babel/plugin-proposal-decorators": "^7.12.13", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-jsx": "^7.12.13", + "@babel/plugin-transform-runtime": "^7.12.15", + "@babel/preset-env": "^7.12.16", + "@babel/runtime": "^7.12.13", + "@vue/babel-plugin-jsx": "^1.0.3", + "@vue/babel-preset-jsx": "^1.1.2", + "babel-plugin-dynamic-import-node": "^2.3.3", + "core-js": "^3.8.3", + "core-js-compat": "^3.8.3", + "semver": "^7.3.4" + }, + "dependencies": { + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@vue/babel-preset-jsx": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@vue/babel-preset-jsx/-/babel-preset-jsx-1.3.0.tgz", + "integrity": "sha512-WFHjZWoUV/W0VAnEM/vi3zhdKsWrYf1TVFuxrpMQXVjhU8w8cxAUzNkmUDvf5iugCNzQssTJp9LjDPHAcmCqUw==", + "dev": true, + "requires": { + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "@vue/babel-plugin-transform-vue-jsx": "^1.2.1", + "@vue/babel-sugar-composition-api-inject-h": "^1.3.0", + "@vue/babel-sugar-composition-api-render-instance": "^1.3.0", + "@vue/babel-sugar-functional-vue": "^1.2.2", + "@vue/babel-sugar-inject-h": "^1.2.2", + "@vue/babel-sugar-v-model": "^1.3.0", + "@vue/babel-sugar-v-on": "^1.3.0" + } + }, + "@vue/babel-sugar-composition-api-inject-h": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-composition-api-inject-h/-/babel-sugar-composition-api-inject-h-1.3.0.tgz", + "integrity": "sha512-pIDOutEpqbURdVw7xhgxmuDW8Tl+lTgzJZC5jdlUu0lY2+izT9kz3Umd/Tbu0U5cpCJ2Yhu87BZFBzWpS0Xemg==", + "dev": true, + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + } + }, + "@vue/babel-sugar-composition-api-render-instance": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-composition-api-render-instance/-/babel-sugar-composition-api-render-instance-1.3.0.tgz", + "integrity": "sha512-NYNnU2r7wkJLMV5p9Zj4pswmCs037O/N2+/Fs6SyX7aRFzXJRP1/2CZh5cIwQxWQajHXuCUd5mTb7DxoBVWyTg==", + "dev": true, + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + } + }, + "@vue/babel-sugar-functional-vue": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.2.2.tgz", + "integrity": "sha512-JvbgGn1bjCLByIAU1VOoepHQ1vFsroSA/QkzdiSs657V79q6OwEWLCQtQnEXD/rLTA8rRit4rMOhFpbjRFm82w==", + "dev": true, + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + } + }, + "@vue/babel-sugar-inject-h": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.2.2.tgz", + "integrity": "sha512-y8vTo00oRkzQTgufeotjCLPAvlhnpSkcHFEp60+LJUwygGcd5Chrpn5480AQp/thrxVm8m2ifAk0LyFel9oCnw==", + "dev": true, + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0" + } + }, + "@vue/babel-sugar-v-model": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.3.0.tgz", + "integrity": "sha512-zcsabmdX48JmxTObn3xmrvvdbEy8oo63DphVyA3WRYGp4SEvJRpu/IvZCVPl/dXLuob2xO/QRuncqPgHvZPzpA==", + "dev": true, + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1", + "@vue/babel-plugin-transform-vue-jsx": "^1.2.1", + "camelcase": "^5.0.0", + "html-tags": "^2.0.0", + "svg-tags": "^1.0.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "html-tags": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz", + "integrity": "sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g==", + "dev": true + } + } + }, + "@vue/babel-sugar-v-on": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.3.0.tgz", + "integrity": "sha512-8VZgrS0G5bh7+Prj7oJkzg9GvhSPnuW5YT6MNaVAEy4uwxRLJ8GqHenaStfllChTao4XZ3EZkNtHB4Xbr/ePdA==", + "dev": true, + "requires": { + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-plugin-transform-vue-jsx": "^1.2.1", + "camelcase": "^5.0.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + } + } + }, + "@vue/cli-overlay": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-overlay/-/cli-overlay-5.0.8.tgz", + "integrity": "sha512-KmtievE/B4kcXp6SuM2gzsnSd8WebkQpg3XaB6GmFh1BJGRqa1UiW9up7L/Q67uOdTigHxr5Ar2lZms4RcDjwQ==", + "dev": true + }, + "@vue/cli-plugin-babel": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-babel/-/cli-plugin-babel-5.0.8.tgz", + "integrity": "sha512-a4qqkml3FAJ3auqB2kN2EMPocb/iu0ykeELwed+9B1c1nQ1HKgslKMHMPavYx3Cd/QAx2mBD4hwKBqZXEI/CsQ==", + "dev": true, + "requires": { + "@babel/core": "^7.12.16", + "@vue/babel-preset-app": "^5.0.8", + "@vue/cli-shared-utils": "^5.0.8", + "babel-loader": "^8.2.2", + "thread-loader": "^3.0.0", + "webpack": "^5.54.0" + } + }, + "@vue/cli-plugin-eslint": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-eslint/-/cli-plugin-eslint-5.0.8.tgz", + "integrity": "sha512-d11+I5ONYaAPW1KyZj9GlrV/E6HZePq5L5eAF5GgoVdu6sxr6bDgEoxzhcS1Pk2eh8rn1MxG/FyyR+eCBj/CNg==", + "dev": true, + "requires": { + "@vue/cli-shared-utils": "^5.0.8", + "eslint-webpack-plugin": "^3.1.0", + "globby": "^11.0.2", + "webpack": "^5.54.0", + "yorkie": "^2.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "dev": true, + "requires": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "jest-worker": { + "version": "28.1.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.1.tgz", + "integrity": "sha512-Au7slXB08C6h+xbJPp7VIb6U0XX5Kc9uel/WFc6/rcTzGiaVCBRngBExSYuXSLFPULPSYU3cJ3ybS988lNFQhQ==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@vue/cli-plugin-router": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-router/-/cli-plugin-router-5.0.8.tgz", + "integrity": "sha512-Gmv4dsGdAsWPqVijz3Ux2OS2HkMrWi1ENj2cYL75nUeL+Xj5HEstSqdtfZ0b1q9NCce+BFB6QnHfTBXc/fCvMg==", + "dev": true, + "requires": { + "@vue/cli-shared-utils": "^5.0.8" + } + }, + "@vue/cli-plugin-vuex": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-plugin-vuex/-/cli-plugin-vuex-5.0.8.tgz", + "integrity": "sha512-HSYWPqrunRE5ZZs8kVwiY6oWcn95qf/OQabwLfprhdpFWAGtLStShjsGED2aDpSSeGAskQETrtR/5h7VqgIlBA==", + "dev": true, + "requires": {} + }, + "@vue/cli-service": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-service/-/cli-service-5.0.8.tgz", + "integrity": "sha512-nV7tYQLe7YsTtzFrfOMIHc5N2hp5lHG2rpYr0aNja9rNljdgcPZLyQRb2YRivTHqTv7lI962UXFURcpStHgyFw==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.12.16", + "@soda/friendly-errors-webpack-plugin": "^1.8.0", + "@soda/get-current-script": "^1.0.2", + "@types/minimist": "^1.2.0", + "@vue/cli-overlay": "^5.0.8", + "@vue/cli-plugin-router": "^5.0.8", + "@vue/cli-plugin-vuex": "^5.0.8", + "@vue/cli-shared-utils": "^5.0.8", + "@vue/component-compiler-utils": "^3.3.0", + "@vue/vue-loader-v15": "npm:vue-loader@^15.9.7", + "@vue/web-component-wrapper": "^1.3.0", + "acorn": "^8.0.5", + "acorn-walk": "^8.0.2", + "address": "^1.1.2", + "autoprefixer": "^10.2.4", + "browserslist": "^4.16.3", + "case-sensitive-paths-webpack-plugin": "^2.3.0", + "cli-highlight": "^2.1.10", + "clipboardy": "^2.3.0", + "cliui": "^7.0.4", + "copy-webpack-plugin": "^9.0.1", + "css-loader": "^6.5.0", + "css-minimizer-webpack-plugin": "^3.0.2", + "cssnano": "^5.0.0", + "debug": "^4.1.1", + "default-gateway": "^6.0.3", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "fs-extra": "^9.1.0", + "globby": "^11.0.2", + "hash-sum": "^2.0.0", + "html-webpack-plugin": "^5.1.0", + "is-file-esm": "^1.0.0", + "launch-editor-middleware": "^2.2.1", + "lodash.defaultsdeep": "^4.6.1", + "lodash.mapvalues": "^4.6.0", + "mini-css-extract-plugin": "^2.5.3", + "minimist": "^1.2.5", + "module-alias": "^2.2.2", + "portfinder": "^1.0.26", + "postcss": "^8.2.6", + "postcss-loader": "^6.1.1", + "progress-webpack-plugin": "^1.0.12", + "ssri": "^8.0.1", + "terser-webpack-plugin": "^5.1.1", + "thread-loader": "^3.0.0", + "vue-loader": "^17.0.0", + "vue-style-loader": "^4.1.3", + "webpack": "^5.54.0", + "webpack-bundle-analyzer": "^4.4.0", + "webpack-chain": "^6.5.1", + "webpack-dev-server": "^4.7.3", + "webpack-merge": "^5.7.3", + "webpack-virtual-modules": "^0.4.2", + "whatwg-fetch": "^3.6.2" + }, + "dependencies": { + "@vue/vue-loader-v15": { + "version": "npm:vue-loader@15.10.0", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.10.0.tgz", + "integrity": "sha512-VU6tuO8eKajrFeBzMssFUP9SvakEeeSi1BxdTH5o3+1yUyrldp8IERkSdXlMI2t4kxF2sqYUDsQY+WJBxzBmZg==", + "dev": true, + "requires": { + "@vue/component-compiler-utils": "^3.1.0", + "hash-sum": "^1.0.2", + "loader-utils": "^1.1.0", + "vue-hot-reload-api": "^2.3.0", + "vue-style-loader": "^4.1.0" + }, + "dependencies": { + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==", + "dev": true + } + } + }, + "acorn": { + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", + "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==", + "dev": true + } + } + }, + "@vue/cli-shared-utils": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-5.0.8.tgz", + "integrity": "sha512-uK2YB7bBVuQhjOJF+O52P9yFMXeJVj7ozqJkwYE9PlMHL1LMHjtCYm4cSdOebuPzyP+/9p0BimM/OqxsevIopQ==", + "dev": true, + "requires": { + "@achrinza/node-ipc": "^9.2.5", + "chalk": "^4.1.2", + "execa": "^1.0.0", + "joi": "^17.4.0", + "launch-editor": "^2.2.1", + "lru-cache": "^6.0.0", + "node-fetch": "^2.6.7", + "open": "^8.0.2", + "ora": "^5.3.0", + "read-pkg": "^5.1.1", + "semver": "^7.3.4", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@vue/component-compiler-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz", + "integrity": "sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==", + "dev": true, + "requires": { + "consolidate": "^0.15.1", + "hash-sum": "^1.0.2", + "lru-cache": "^4.1.2", + "merge-source-map": "^1.1.0", + "postcss": "^7.0.36", + "postcss-selector-parser": "^6.0.2", + "prettier": "^1.18.2 || ^2.0.0", + "source-map": "~0.6.1", + "vue-template-es2015-compiler": "^1.9.0" + }, + "dependencies": { + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==", + "dev": true + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + } + } + }, + "@vue/web-component-wrapper": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@vue/web-component-wrapper/-/web-component-wrapper-1.3.0.tgz", + "integrity": "sha512-Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA==", + "dev": true + }, + "@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "dev": true, + "requires": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", + "dev": true + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "dev": true, + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "acorn-jsx": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/acorn-jsx/download/acorn-jsx-5.2.0.tgz", + "integrity": "sha1-TGYGkXPW/daO2FI5/CViJhgrLr4=", + "dev": true, + "requires": {} + }, + "acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true + }, + "address": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/address/download/address-1.1.2.tgz", + "integrity": "sha1-vxEWycdYxRt6kz0pa3LCIe2UKLY=", + "dev": true + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "requires": { + "ajv": "^8.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + } + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true + }, + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true + }, + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-3.2.1.tgz", + "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz?cache=0&sync_timestamp=1571657259891&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fargparse%2Fdownload%2Fargparse-1.0.10.tgz", + "integrity": "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/astral-regex/download/astral-regex-1.0.0.tgz", + "integrity": "sha1-bIw/uCfdQ+45GPJ7gngqt2WKb9k=", + "dev": true + }, + "async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "async-validator": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-1.8.5.tgz", + "integrity": "sha512-tXBM+1m056MAX0E8TL2iCjg8WvSyXu0Zc8LNtYqrVeyoL3+esHRZ4SieE9fKQyyU09uONjnMEjrNBMqT0mbvmA==", + "requires": { + "babel-runtime": "6.x" + } + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true + }, + "autoprefixer": { + "version": "10.4.7", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.7.tgz", + "integrity": "sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==", + "dev": true, + "requires": { + "browserslist": "^4.20.3", + "caniuse-lite": "^1.0.30001335", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + } + }, + "axios": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "requires": { + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" + } + }, + "babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npm.taobao.org/babel-eslint/download/babel-eslint-10.1.0.tgz?cache=0&sync_timestamp=1582676223200&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbabel-eslint%2Fdownload%2Fbabel-eslint-10.1.0.tgz", + "integrity": "sha1-aWjlaKkQt4+zd5zdi2rC9HmUMjI=", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + } + }, + "babel-helper-vue-jsx-merge-props": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-2.0.3.tgz", + "integrity": "sha512-gsLiKK7Qrb7zYJNgiXKpXblxbV5ffSwR0f5whkPAaBAR4fhi6bwRZxX9wBlIc5M/v8CCkXUbXZL4N/nSE97cqg==" + }, + "babel-loader": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz", + "integrity": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==", + "dev": true, + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + } + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dev": true, + "requires": { + "object.assign": "^4.1.0" + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz", + "integrity": "sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.3.1", + "semver": "^6.1.1" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz", + "integrity": "sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.1", + "core-js-compat": "^3.21.0" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz", + "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.1" + } + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + } + } + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npm.taobao.org/big.js/download/big.js-5.2.2.tgz", + "integrity": "sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg=", + "dev": true + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "bonjour-service": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.13.tgz", + "integrity": "sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA==", + "dev": true, + "requires": { + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz", + "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserslist": { + "version": "4.21.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", + "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001359", + "electron-to-chromium": "^1.4.172", + "node-releases": "^2.0.5", + "update-browserslist-db": "^1.0.4" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + } + } + }, + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "caniuse-lite": { + "version": "1.0.30001364", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001364.tgz", + "integrity": "sha512-9O0xzV3wVyX0SlegIQ6knz+okhBB5pE0PC40MNdwcipjwpxoUEHL24uJ+gG42cgklPjfO5ZjZPme9FTSN3QT2Q==", + "dev": true + }, + "case-sensitive-paths-webpack-plugin": { + "version": "2.3.0", + "resolved": "https://registry.npm.taobao.org/case-sensitive-paths-webpack-plugin/download/case-sensitive-paths-webpack-plugin-2.3.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcase-sensitive-paths-webpack-plugin%2Fdownload%2Fcase-sensitive-paths-webpack-plugin-2.3.0.tgz", + "integrity": "sha1-I6xhPMmoVuT4j/i7c7u16YmCXPc=", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npm.taobao.org/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1573282918610&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz", + "integrity": "sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npm.taobao.org/chardet/download/chardet-0.7.0.tgz", + "integrity": "sha1-kAlISfCTfy7twkJdDSip5fDLrZ4=", + "dev": true + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "chrome-trace-event": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/chrome-trace-event/download/chrome-trace-event-1.0.2.tgz", + "integrity": "sha1-I0CQ7pfH1K0aLEvq4nUF3v/GCKQ=", + "dev": true, + "requires": { + "tslib": "^1.9.0" + } + }, + "ci-info": { + "version": "1.6.0", + "resolved": "https://registry.npm.taobao.org/ci-info/download/ci-info-1.6.0.tgz", + "integrity": "sha1-LKINu5zrMtRSSmgzAzE/AwSx5Jc=", + "dev": true + }, + "clean-css": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.0.tgz", + "integrity": "sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + } + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-highlight": { + "version": "2.1.11", + "resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.11.tgz", + "integrity": "sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "highlight.js": "^10.7.1", + "mz": "^2.4.0", + "parse5": "^5.1.1", + "parse5-htmlparser2-tree-adapter": "^6.0.0", + "yargs": "^16.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "cli-spinners": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", + "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", + "dev": true + }, + "cli-width": { + "version": "2.2.0", + "resolved": "https://registry.npm.taobao.org/cli-width/download/cli-width-2.2.0.tgz", + "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", + "dev": true + }, + "clipboardy": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-2.3.0.tgz", + "integrity": "sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==", + "dev": true, + "requires": { + "arch": "^2.1.1", + "execa": "^1.0.0", + "is-wsl": "^2.1.1" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true + }, + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/clone-deep/download/clone-deep-4.0.1.tgz", + "integrity": "sha1-wZ/Zvbv4WUK0/ZechNz31fB8I4c=", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz", + "integrity": "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "colord": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.2.tgz", + "integrity": "sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==", + "dev": true + }, + "colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "dev": true + }, + "consolidate": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.15.1.tgz", + "integrity": "sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==", + "dev": true, + "requires": { + "bluebird": "^3.1.1" + } + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "requires": { + "safe-buffer": "5.2.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true + }, + "convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "copy-webpack-plugin": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-9.1.0.tgz", + "integrity": "sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==", + "dev": true, + "requires": { + "fast-glob": "^3.2.7", + "glob-parent": "^6.0.1", + "globby": "^11.0.3", + "normalize-path": "^3.0.0", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0" + }, + "dependencies": { + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "core-js": { + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz", + "integrity": "sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==" + }, + "core-js-compat": { + "version": "3.23.4", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.4.tgz", + "integrity": "sha512-RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q==", + "dev": true, + "requires": { + "browserslist": "^4.21.1", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "dev": true + } + } + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "cosmiconfig": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-6.0.5.tgz", + "integrity": "sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "css-declaration-sorter": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.0.tgz", + "integrity": "sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og==", + "dev": true, + "requires": {} + }, + "css-loader": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz", + "integrity": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==", + "dev": true, + "requires": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.7", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.5" + }, + "dependencies": { + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "dev": true, + "requires": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "dependencies": { + "ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + } + } + }, + "css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + } + }, + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "cssnano": { + "version": "5.1.12", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.12.tgz", + "integrity": "sha512-TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ==", + "dev": true, + "requires": { + "cssnano-preset-default": "^5.2.12", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + } + }, + "cssnano-preset-default": { + "version": "5.2.12", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.12.tgz", + "integrity": "sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==", + "dev": true, + "requires": { + "css-declaration-sorter": "^6.3.0", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.0", + "postcss-convert-values": "^5.1.2", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.6", + "postcss-merge-rules": "^5.1.2", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.3", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.0", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.0", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + } + }, + "cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "dev": true, + "requires": {} + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "requires": { + "css-tree": "^1.1.2" + } + }, + "de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/de-indent/download/de-indent-1.0.2.tgz", + "integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=", + "dev": true + }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.1.1.tgz", + "integrity": "sha1-O3ImAlUQnGtYnO4FDx1RYTlmR5E=", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npm.taobao.org/deep-is/download/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "deepmerge": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-1.5.2.tgz", + "integrity": "sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==" + }, + "default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dev": true, + "requires": { + "execa": "^5.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "defaults": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==", + "dev": true, + "requires": { + "clone": "^1.0.2" + } + }, + "define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true + }, + "define-properties": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "dev": true, + "requires": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "dev": true + }, + "dns-packet": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz", + "integrity": "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==", + "dev": true, + "requires": { + "@leichtgewicht/ip-codec": "^2.0.1" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/doctrine/download/doctrine-3.0.0.tgz", + "integrity": "sha1-rd6+rXKmV023g2OdyHoSF3OXOWE=", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dev": true, + "requires": { + "utila": "~0.4" + } + }, + "dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + } + } + }, + "dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "dev": true + }, + "dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npm.taobao.org/dotenv-expand/download/dotenv-expand-5.1.0.tgz", + "integrity": "sha1-P7rwIL/XlIhAcuomsel5HUWmKfA=", + "dev": true + }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, + "easy-stack": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/easy-stack/-/easy-stack-1.0.1.tgz", + "integrity": "sha512-wK2sCs4feiiJeFXn3zvY0p41mdU5VUgbgs1rNsc/y5ngFUijdWd+iIN8eoyuZHKB8xN6BL4PdWmzqFmxNg6V2w==", + "dev": true + }, + "echarts": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/echarts/-/echarts-5.3.3.tgz", + "integrity": "sha512-BRw2serInRwO5SIwRviZ6Xgm5Lb7irgz+sLiFMmy/HOaf4SQ+7oYqxKzRHAKp4xHQ05AuHw1xvoQWJjDQq/FGw==", + "requires": { + "tslib": "2.3.0", + "zrender": "5.3.2" + }, + "dependencies": { + "tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + } + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.4.185", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.185.tgz", + "integrity": "sha512-9kV/isoOGpKkBt04yYNaSWIBn3187Q5VZRtoReq8oz5NY/A4XmU6cAoqgQlDp7kKJCZMRjWZ8nsQyxfpFHvfyw==", + "dev": true + }, + "element-ui": { + "version": "2.15.9", + "resolved": "https://registry.npmjs.org/element-ui/-/element-ui-2.15.9.tgz", + "integrity": "sha512-dx45nQLt4Hn87/Z9eRr3ex6KFZbxlFAwEU3QoW3wA5EsYftvHTyL9Pq7VnXXD7hu1Eiaup2jcs6kp+/VSFmXuA==", + "requires": { + "async-validator": "~1.8.1", + "babel-helper-vue-jsx-merge-props": "^2.0.0", + "deepmerge": "^1.2.0", + "normalize-wheel": "^1.0.1", + "resize-observer-polyfill": "^1.5.0", + "throttle-debounce": "^1.0.1" + } + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz", + "integrity": "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/emojis-list/download/emojis-list-3.0.0.tgz", + "integrity": "sha1-VXBmIEatKeLpFucariYKvf9Pang=", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz", + "integrity": "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dev": true, + "requires": { + "stackframe": "^1.3.4" + } + }, + "es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", + "dev": true + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npm.taobao.org/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "eslint": { + "version": "6.8.0", + "resolved": "https://registry.npm.taobao.org/eslint/download/eslint-6.8.0.tgz", + "integrity": "sha1-YiYtZylzn5J1cjgkMC+yJ8jJP/s=", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "ajv": "^6.10.0", + "chalk": "^2.1.0", + "cross-spawn": "^6.0.5", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^1.4.3", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.1.2", + "esquery": "^1.0.1", + "esutils": "^2.0.2", + "file-entry-cache": "^5.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "inquirer": "^7.0.0", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.3.0", + "lodash": "^4.17.14", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "optionator": "^0.8.3", + "progress": "^2.0.0", + "regexpp": "^2.0.1", + "semver": "^6.1.2", + "strip-ansi": "^5.2.0", + "strip-json-comments": "^3.0.1", + "table": "^5.2.3", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.1", + "resolved": "https://registry.npm.taobao.org/ansi-escapes/download/ansi-escapes-4.3.1.tgz", + "integrity": "sha1-pcR8xDGB8fOP/XB2g3cA05VSKmE=", + "dev": true, + "requires": { + "type-fest": "^0.11.0" + }, + "dependencies": { + "type-fest": { + "version": "0.11.0", + "resolved": "https://registry.npm.taobao.org/type-fest/download/type-fest-0.11.0.tgz?cache=0&sync_timestamp=1583733678016&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftype-fest%2Fdownload%2Ftype-fest-0.11.0.tgz", + "integrity": "sha1-l6vwhyMQ/tiKXEZrJWgVdhReM/E=", + "dev": true + } + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.2.1", + "resolved": "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-4.2.1.tgz", + "integrity": "sha1-kK51xCTQCNJiTFvynq0xd+v881k=", + "dev": true, + "requires": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "dev": true + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npm.taobao.org/figures/download/figures-3.2.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffigures%2Fdownload%2Ffigures-3.2.0.tgz", + "integrity": "sha1-YlwYvSk8YE3EqN2y/r8MiDQXRq8=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "globals": { + "version": "12.4.0", + "resolved": "https://registry.npm.taobao.org/globals/download/globals-12.4.0.tgz", + "integrity": "sha1-oYgTV2pBsAokqX5/gVkYwuGZJfg=", + "dev": true, + "requires": { + "type-fest": "^0.8.1" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npm.taobao.org/has-flag/download/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "dev": true + }, + "inquirer": { + "version": "7.1.0", + "resolved": "https://registry.npm.taobao.org/inquirer/download/inquirer-7.1.0.tgz", + "integrity": "sha1-EpigGFmIPhfHJkuChwrhA0+S3Sk=", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^3.0.0", + "cli-cursor": "^3.1.0", + "cli-width": "^2.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.15", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.5.3", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/chalk/download/chalk-3.0.0.tgz?cache=0&sync_timestamp=1573282918610&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fchalk%2Fdownload%2Fchalk-3.0.0.tgz", + "integrity": "sha1-P3PCv1JlkfV0zEksUeJFY0n4ROQ=", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz?cache=0&sync_timestamp=1573280518303&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-6.0.0.tgz", + "integrity": "sha1-CxVx3XZpzNTz4G4U7x7tJiJa5TI=", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + } + } + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npm.taobao.org/mute-stream/download/mute-stream-0.0.8.tgz", + "integrity": "sha1-FjDEKyJR/4HiooPelqVJfqkuXg0=", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz?cache=0&sync_timestamp=1573280518303&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-5.2.0.tgz", + "integrity": "sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + } + } + }, + "supports-color": { + "version": "7.1.0", + "resolved": "https://registry.npm.taobao.org/supports-color/download/supports-color-7.1.0.tgz", + "integrity": "sha1-aOMlkd9z4lrRxLSRCKLsUHliv9E=", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npm.taobao.org/type-fest/download/type-fest-0.8.1.tgz?cache=0&sync_timestamp=1583733678016&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftype-fest%2Fdownload%2Ftype-fest-0.8.1.tgz", + "integrity": "sha1-CeJJ696FHTseSNJ8EFREZn8XuD0=", + "dev": true + } + } + }, + "eslint-plugin-vue": { + "version": "6.2.2", + "resolved": "https://registry.npm.taobao.org/eslint-plugin-vue/download/eslint-plugin-vue-6.2.2.tgz?cache=0&sync_timestamp=1584178049037&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Feslint-plugin-vue%2Fdownload%2Feslint-plugin-vue-6.2.2.tgz", + "integrity": "sha1-J/7NmjokeJsPER7N1UCp5WGY4P4=", + "dev": true, + "requires": { + "natural-compare": "^1.4.0", + "semver": "^5.6.0", + "vue-eslint-parser": "^7.0.0" + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "1.4.3", + "resolved": "https://registry.npm.taobao.org/eslint-utils/download/eslint-utils-1.4.3.tgz", + "integrity": "sha1-dP7HxU0Hdrb2fgJRBAtYBlZOmB8=", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "eslint-visitor-keys": { + "version": "1.1.0", + "resolved": "https://registry.npm.taobao.org/eslint-visitor-keys/download/eslint-visitor-keys-1.1.0.tgz", + "integrity": "sha1-4qgs6oT/JGrW+1f5veW0ZiFFnsI=", + "dev": true + }, + "espree": { + "version": "6.2.1", + "resolved": "https://registry.npm.taobao.org/espree/download/espree-6.2.1.tgz", + "integrity": "sha1-d/xy4f10SiBSwg84pbV1gy6Cc0o=", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "acorn": { + "version": "7.1.1", + "resolved": "https://registry.npm.taobao.org/acorn/download/acorn-7.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Facorn%2Fdownload%2Facorn-7.1.1.tgz", + "integrity": "sha1-41Zo3gtALzWd5RXFSCoaufiaab8=", + "dev": true + } + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz", + "integrity": "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=", + "dev": true + }, + "esquery": { + "version": "1.1.0", + "resolved": "https://registry.npm.taobao.org/esquery/download/esquery-1.1.0.tgz", + "integrity": "sha1-xcC2bzg+dlZAT4azEzTXJSTt20g=", + "dev": true, + "requires": { + "estraverse": "^4.0.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-4.3.0.tgz", + "integrity": "sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz", + "integrity": "sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true + }, + "event-pubsub": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/event-pubsub/-/event-pubsub-4.3.0.tgz", + "integrity": "sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ==", + "dev": true + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "express": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "dev": true, + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/external-editor/download/external-editor-3.1.0.tgz", + "integrity": "sha1-ywP3QL764D6k0oPK7SdBqD8zVJU=", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz?cache=0&sync_timestamp=1576340291001&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffast-json-stable-stringify%2Fdownload%2Ffast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-entry-cache": { + "version": "5.0.1", + "resolved": "https://registry.npm.taobao.org/file-entry-cache/download/file-entry-cache-5.0.1.tgz", + "integrity": "sha1-yg9u+m3T1WEzP7FFFQZcL6/fQ5w=", + "dev": true, + "requires": { + "flat-cache": "^2.0.1" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/flat-cache/download/flat-cache-2.0.1.tgz", + "integrity": "sha1-XSltbwS9pEpGMKMBQTvbwuwIXsA=", + "dev": true, + "requires": { + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" + }, + "dependencies": { + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-2.6.3.tgz?cache=0&sync_timestamp=1581257110269&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frimraf%2Fdownload%2Frimraf-2.6.3.tgz", + "integrity": "sha1-stEE/g2Psnz54KHNqCYt04M8bKs=", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "flatted": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/flatted/download/flatted-2.0.1.tgz", + "integrity": "sha1-aeV8qo8OrLwoHS4stFjUb9tEngg=", + "dev": true + }, + "follow-redirects": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", + "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==" + }, + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true + }, + "fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "dev": true + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", + "dev": true + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/functional-red-black-tree/download/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "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==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npm.taobao.org/glob/download/glob-7.1.6.tgz?cache=0&sync_timestamp=1573078121947&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglob%2Fdownload%2Fglob-7.1.6.tgz", + "integrity": "sha1-FB8zuBp8JJLhJVlDB0gMRmeSeKY=", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npm.taobao.org/globals/download/globals-11.12.0.tgz", + "integrity": "sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=", + "dev": true + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "dependencies": { + "ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true + } + } + }, + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dev": true, + "requires": { + "duplexer": "^0.1.2" + } + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/has-flag/download/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true + }, + "hash-sum": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/hash-sum/download/hash-sum-2.0.0.tgz", + "integrity": "sha1-gdAbtd6OpKIUrV1urRtSNGCwtFo=", + "dev": true + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/he/download/he-1.2.0.tgz", + "integrity": "sha1-hK5l+n6vsWX922FWauFLrwVmTw8=", + "dev": true + }, + "highlight.js": { + "version": "10.7.3", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", + "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==", + "dev": true + }, + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + } + } + }, + "html-entities": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", + "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==", + "dev": true + }, + "html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dev": true, + "requires": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + } + }, + "html-tags": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz", + "integrity": "sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==", + "dev": true + }, + "html-webpack-plugin": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "dev": true, + "requires": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + } + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "dev": true, + "requires": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npm.taobao.org/iconv-lite/download/iconv-lite-0.4.24.tgz?cache=0&sync_timestamp=1579333981154&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ficonv-lite%2Fdownload%2Ficonv-lite-0.4.24.tgz", + "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "requires": {} + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npm.taobao.org/ignore/download/ignore-4.0.6.tgz", + "integrity": "sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npm.taobao.org/imurmurhash/download/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz", + "integrity": "sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=", + "dev": true + }, + "ipaddr.js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", + "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", + "dev": true + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-ci": { + "version": "1.2.1", + "resolved": "https://registry.npm.taobao.org/is-ci/download/is-ci-1.2.1.tgz", + "integrity": "sha1-43ecjuF/zPQoSI9uKBGH8uYyhBw=", + "dev": true, + "requires": { + "ci-info": "^1.5.0" + } + }, + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/is-extglob/download/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-file-esm": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-file-esm/-/is-file-esm-1.0.0.tgz", + "integrity": "sha512-rZlaNKb4Mr8WlRu2A9XdeoKgnO5aA53XdPHgCKVyCrQ/rWi89RET1+bq37Ru46obaQXeiX4vmFIm1vks41hoSA==", + "dev": true, + "requires": { + "read-pkg-up": "^7.0.1" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npm.taobao.org/is-plain-object/download/is-plain-object-2.0.4.tgz", + "integrity": "sha1-LBY7P6+xtgbZ0Xko8FwqHDjgdnc=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/is-promise/download/is-promise-2.1.0.tgz", + "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npm.taobao.org/is-stream/download/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "requires": { + "is-docker": "^2.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/isexe/download/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/isobject/download/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "javascript-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", + "integrity": "sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==", + "dev": true + }, + "jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "joi": { + "version": "17.6.0", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz", + "integrity": "sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==", + "dev": true, + "requires": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0", + "@sideway/address": "^4.1.3", + "@sideway/formula": "^3.0.0", + "@sideway/pinpoint": "^2.0.0" + } + }, + "js-message": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/js-message/-/js-message-1.0.7.tgz", + "integrity": "sha512-efJLHhLjIyKRewNS9EGZ4UpI8NguuL6fKkhRxVuMmrGV2xN/0APGdQYwLFky5w9naebSZ0OwAGp0G6/2Cg90rA==", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npm.taobao.org/js-yaml/download/js-yaml-3.13.1.tgz", + "integrity": "sha1-r/FRswv9+o5J4F2iLnQV6d+jeEc=", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npm.taobao.org/jsesc/download/jsesc-2.5.2.tgz", + "integrity": "sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk=", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz", + "integrity": "sha1-afaofZUTq4u4/mO9sJecRI5oRmA=", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-6.0.3.tgz", + "integrity": "sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=", + "dev": true + }, + "klona": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", + "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", + "dev": true + }, + "launch-editor": { + "version": "2.2.1", + "resolved": "https://registry.npm.taobao.org/launch-editor/download/launch-editor-2.2.1.tgz", + "integrity": "sha1-hxtaPuOdZoD8wm03kwtu7aidsMo=", + "dev": true, + "requires": { + "chalk": "^2.3.0", + "shell-quote": "^1.6.1" + } + }, + "launch-editor-middleware": { + "version": "2.2.1", + "resolved": "https://registry.npm.taobao.org/launch-editor-middleware/download/launch-editor-middleware-2.2.1.tgz", + "integrity": "sha1-4UsH5scVSwpLhqD9NFeE5FgEwVc=", + "dev": true, + "requires": { + "launch-editor": "^2.2.1" + } + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npm.taobao.org/levn/download/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "lilconfig": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", + "dev": true + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/loader-utils/download/loader-utils-1.4.0.tgz", + "integrity": "sha1-xXm140yzSxp07cbB+za/o3HVphM=", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/json5/download/json5-1.0.1.tgz", + "integrity": "sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "lodash.defaultsdeep": { + "version": "4.6.1", + "resolved": "https://registry.npm.taobao.org/lodash.defaultsdeep/download/lodash.defaultsdeep-4.6.1.tgz", + "integrity": "sha1-US6b1yHSctlOPTpjZT+hdRZ0HKY=", + "dev": true + }, + "lodash.kebabcase": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", + "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==", + "dev": true + }, + "lodash.mapvalues": { + "version": "4.6.0", + "resolved": "https://registry.npm.taobao.org/lodash.mapvalues/download/lodash.mapvalues-4.6.0.tgz", + "integrity": "sha1-G6+lAF3p3W9PJmaMMMo3IwzJaJw=", + "dev": true + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "log-update": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz", + "integrity": "sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==", + "dev": true, + "requires": { + "ansi-escapes": "^3.0.0", + "cli-cursor": "^2.0.0", + "wrap-ansi": "^3.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "dev": true + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", + "dev": true, + "requires": { + "restore-cursor": "^2.0.0" + } + }, + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", + "dev": true, + "requires": { + "mimic-fn": "^1.0.0" + } + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "dev": true, + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + } + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + }, + "wrap-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", + "integrity": "sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==", + "dev": true, + "requires": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0" + } + } + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + } + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true + }, + "memfs": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz", + "integrity": "sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==", + "dev": true, + "requires": { + "fs-monkey": "^1.0.3" + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "merge-source-map": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz", + "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==", + "dev": true, + "requires": { + "source-map": "^0.6.1" + } + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "mini-css-extract-plugin": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz", + "integrity": "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==", + "dev": true, + "requires": { + "schema-utils": "^4.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + } + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", + "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true + }, + "minipass": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz", + "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "requires": { + "minimist": "^1.2.6" + } + }, + "module-alias": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/module-alias/-/module-alias-2.2.2.tgz", + "integrity": "sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q==", + "dev": true + }, + "mrmime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz", + "integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=", + "dev": true + }, + "multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dev": true, + "requires": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + } + }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "nanoid": { + "version": "2.1.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-2.1.11.tgz", + "integrity": "sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==" + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/natural-compare/download/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npm.taobao.org/nice-try/download/nice-try-1.0.5.tgz", + "integrity": "sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y=", + "dev": true + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + } + } + }, + "node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dev": true, + "requires": { + "whatwg-url": "^5.0.0" + } + }, + "node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true + }, + "node-releases": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", + "dev": true + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/normalize-path/download/normalize-path-3.0.0.tgz", + "integrity": "sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=", + "dev": true + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true + }, + "normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "dev": true + }, + "normalize-wheel": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/normalize-wheel/-/normalize-wheel-1.0.1.tgz", + "integrity": "sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA==" + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npm.taobao.org/npm-run-path/download/npm-run-path-2.0.2.tgz?cache=0&sync_timestamp=1577053500910&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnpm-run-path%2Fdownload%2Fnpm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "requires": { + "boolbase": "^1.0.0" + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true + }, + "object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", + "dev": true + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "open": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", + "dev": true, + "requires": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + } + }, + "opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "dev": true + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz?cache=0&sync_timestamp=1573078174520&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Foptionator%2Fdownload%2Foptionator-0.8.3.tgz", + "integrity": "sha1-hPodA2/p08fiHZmIS2ARZ+yPtJU=", + "dev": true, + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + } + }, + "ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "requires": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/os-tmpdir/download/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/p-finally/download/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dev": true, + "requires": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + } + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/parent-module/download/parent-module-1.0.1.tgz", + "integrity": "sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=", + "dev": true, + "requires": { + "callsites": "^3.0.0" + }, + "dependencies": { + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/callsites/download/callsites-3.1.0.tgz", + "integrity": "sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=", + "dev": true + } + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parse5": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", + "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==", + "dev": true + }, + "parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "dev": true, + "requires": { + "parse5": "^6.0.1" + }, + "dependencies": { + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + } + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + } + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/path-is-absolute/download/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/path-key/download/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dev": true, + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "postcss": { + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "dev": true, + "requires": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "dependencies": { + "nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "dev": true + } + } + }, + "postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-colormin": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", + "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", + "dev": true, + "requires": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-convert-values": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.2.tgz", + "integrity": "sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==", + "dev": true, + "requires": { + "browserslist": "^4.20.3", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "dev": true, + "requires": {} + }, + "postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "dev": true, + "requires": {} + }, + "postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "dev": true, + "requires": {} + }, + "postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "dev": true, + "requires": {} + }, + "postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dev": true, + "requires": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "dependencies": { + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "postcss-merge-longhand": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.6.tgz", + "integrity": "sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.0" + } + }, + "postcss-merge-rules": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.2.tgz", + "integrity": "sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==", + "dev": true, + "requires": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "dev": true, + "requires": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-minify-params": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.3.tgz", + "integrity": "sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==", + "dev": true, + "requires": { + "browserslist": "^4.16.6", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "requires": {} + }, + "postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0" + } + }, + "postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "dev": true, + "requires": {} + }, + "postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-unicode": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.0.tgz", + "integrity": "sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==", + "dev": true, + "requires": { + "browserslist": "^4.16.6", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "dev": true, + "requires": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "dev": true, + "requires": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-reduce-initial": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.0.tgz", + "integrity": "sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==", + "dev": true, + "requires": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0" + } + }, + "postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-selector-parser": { + "version": "6.0.10", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + } + }, + "postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true + }, + "prettier": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", + "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==", + "dev": true, + "optional": true + }, + "pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dev": true, + "requires": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npm.taobao.org/progress/download/progress-2.0.3.tgz", + "integrity": "sha1-foz42PW48jnBvGi+tOt4Vn1XLvg=", + "dev": true + }, + "progress-webpack-plugin": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/progress-webpack-plugin/-/progress-webpack-plugin-1.0.16.tgz", + "integrity": "sha512-sdiHuuKOzELcBANHfrupYo+r99iPRyOnw15qX+rNlVUqXGfjXdH4IgxriKwG1kNJwVswKQHMdj1hYZMcb9jFaA==", + "dev": true, + "requires": { + "chalk": "^2.1.0", + "figures": "^2.0.0", + "log-update": "^2.3.0" + } + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "dependencies": { + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + } + } + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/pseudomap/download/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz", + "integrity": "sha1-tYsBCsQMIsVldhbI0sLALHv0eew=", + "dev": true + }, + "qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true + }, + "raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true + } + } + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "dependencies": { + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + } + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "regenerate-unicode-properties": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz", + "integrity": "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==", + "dev": true, + "requires": { + "regenerate": "^1.4.2" + } + }, + "regenerator-runtime": { + "version": "0.13.5", + "resolved": "https://registry.npm.taobao.org/regenerator-runtime/download/regenerator-runtime-0.13.5.tgz?cache=0&sync_timestamp=1584052481783&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregenerator-runtime%2Fdownload%2Fregenerator-runtime-0.13.5.tgz", + "integrity": "sha1-2Hih0JS0MG0QuQlkhLM+vVXiZpc=" + }, + "regenerator-transform": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz", + "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==", + "dev": true, + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regexpp": { + "version": "2.0.1", + "resolved": "https://registry.npm.taobao.org/regexpp/download/regexpp-2.0.1.tgz", + "integrity": "sha1-jRnTHPYySCtYkEn4KB+T28uk0H8=", + "dev": true + }, + "regexpu-core": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.1.0.tgz", + "integrity": "sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==", + "dev": true, + "requires": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.0.1", + "regjsgen": "^0.6.0", + "regjsparser": "^0.8.2", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + } + }, + "regjsgen": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz", + "integrity": "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==", + "dev": true + }, + "regjsparser": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz", + "integrity": "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==", + "dev": true, + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true + } + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "dev": true + }, + "renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dev": true, + "requires": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", + "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" + }, + "resolve": { + "version": "1.15.1", + "resolved": "https://registry.npm.taobao.org/resolve/download/resolve-1.15.1.tgz?cache=0&sync_timestamp=1580943346382&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fresolve%2Fdownload%2Fresolve-1.15.1.tgz", + "integrity": "sha1-J73N7/6vLWJEuVuw+fS0ZTRR8+g=", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "run-async": { + "version": "2.4.0", + "resolved": "https://registry.npm.taobao.org/run-async/download/run-async-2.4.0.tgz", + "integrity": "sha1-5ZBUpbhods+uB/Qx0Yy63cWU8eg=", + "dev": true, + "requires": { + "is-promise": "^2.1.0" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "rxjs": { + "version": "6.5.4", + "resolved": "https://registry.npm.taobao.org/rxjs/download/rxjs-6.5.4.tgz", + "integrity": "sha1-4Hd/4NGEzseHLfFH8wNXLUFOIRw=", + "dev": true, + "requires": { + "tslib": "^1.9.0" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz", + "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=", + "dev": true + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz", + "integrity": "sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=", + "dev": true + }, + "sass": { + "version": "1.26.3", + "resolved": "https://registry.npm.taobao.org/sass/download/sass-1.26.3.tgz", + "integrity": "sha1-QS31RIYUO3a1plzfdWnob0Rln0Y=", + "dev": true, + "requires": { + "chokidar": ">=2.0.0 <4.0.0" + } + }, + "sass-loader": { + "version": "8.0.2", + "resolved": "https://registry.npm.taobao.org/sass-loader/download/sass-loader-8.0.2.tgz", + "integrity": "sha1-3r7NjDziQ8dkVPLoKQSCFQOACQ0=", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "loader-utils": "^1.2.3", + "neo-async": "^2.6.1", + "schema-utils": "^2.6.1", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz", + "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "dev": true + } + } + }, + "schema-utils": { + "version": "2.6.5", + "resolved": "https://registry.npm.taobao.org/schema-utils/download/schema-utils-2.6.5.tgz", + "integrity": "sha1-x1jwp+YkJjBz05binNQKoQEVLYo=", + "dev": true, + "requires": { + "ajv": "^6.12.0", + "ajv-keywords": "^3.4.1" + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "selfsigned": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.0.1.tgz", + "integrity": "sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==", + "dev": true, + "requires": { + "node-forge": "^1" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz", + "integrity": "sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=", + "dev": true + }, + "send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + } + } + }, + "serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dev": true, + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true + } + } + }, + "serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/shallow-clone/download/shallow-clone-3.0.1.tgz", + "integrity": "sha1-jymBrZJTH1UDWwH7IwdppA4C76M=", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npm.taobao.org/shebang-command/download/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/shebang-regex/download/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "shell-quote": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz", + "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==", + "dev": true + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "sirv": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-1.0.19.tgz", + "integrity": "sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==", + "dev": true, + "requires": { + "@polka/url": "^1.0.0-next.20", + "mrmime": "^1.0.0", + "totalist": "^1.0.0" + } + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "slice-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/slice-ansi/download/slice-ansi-2.1.0.tgz", + "integrity": "sha1-ys12k0YaY3pXiNkqfdT7oGjoFjY=", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + } + }, + "sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", + "dev": true + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/sprintf-js/download/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "requires": { + "minipass": "^3.1.1" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "dev": true + }, + "stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "dev": true + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", + "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + } + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + } + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/strip-eof/download/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, + "strip-indent": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/strip-indent/download/strip-indent-2.0.0.tgz", + "integrity": "sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=", + "dev": true + }, + "strip-json-comments": { + "version": "3.0.1", + "resolved": "https://registry.npm.taobao.org/strip-json-comments/download/strip-json-comments-3.0.1.tgz", + "integrity": "sha1-hXE5dakfuHvxswXMp3OV5A0qZKc=", + "dev": true + }, + "stylehacks": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.0.tgz", + "integrity": "sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==", + "dev": true, + "requires": { + "browserslist": "^4.16.6", + "postcss-selector-parser": "^6.0.4" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npm.taobao.org/supports-color/download/supports-color-5.5.0.tgz", + "integrity": "sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", + "dev": true + }, + "svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dev": true, + "requires": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "dependencies": { + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true + } + } + }, + "table": { + "version": "5.4.6", + "resolved": "https://registry.npm.taobao.org/table/download/table-5.4.6.tgz", + "integrity": "sha1-EpLRlQDOP4YFOwXw6Ofko7shB54=", + "dev": true, + "requires": { + "ajv": "^6.10.2", + "lodash": "^4.17.14", + "slice-ansi": "^2.1.0", + "string-width": "^3.0.0" + }, + "dependencies": { + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-7.0.3.tgz", + "integrity": "sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstring-width%2Fdownload%2Fstring-width-3.1.0.tgz", + "integrity": "sha1-InZ74htirxCBV0MG9prFG2IgOWE=", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz?cache=0&sync_timestamp=1573280518303&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-5.2.0.tgz", + "integrity": "sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true + }, + "terser": { + "version": "5.14.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz", + "integrity": "sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==", + "dev": true, + "requires": { + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "dependencies": { + "acorn": { + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", + "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==", + "dev": true + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + } + } + }, + "terser-webpack-plugin": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.3.tgz", + "integrity": "sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.7", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "terser": "^5.7.2" + }, + "dependencies": { + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npm.taobao.org/text-table/download/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "requires": { + "any-promise": "^1.0.0" + } + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "requires": { + "thenify": ">= 3.1.0 < 4" + } + }, + "thread-loader": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/thread-loader/-/thread-loader-3.0.4.tgz", + "integrity": "sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==", + "dev": true, + "requires": { + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^4.1.0", + "loader-utils": "^2.0.0", + "neo-async": "^2.6.2", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "throttle-debounce": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-1.1.0.tgz", + "integrity": "sha512-XH8UiPCQcWNuk2LYePibW/4qL97+ZQ1AN3FNXwZRBNPPowo/NRU5fAlDCSNBJIYCKbioZfuYtMhG4quqoJhVzg==" + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npm.taobao.org/through/download/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npm.taobao.org/tmp/download/tmp-0.0.33.tgz", + "integrity": "sha1-bTQzWIl2jSGyvNoKonfO07G/rfk=", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/to-fast-properties/download/to-fast-properties-2.0.0.tgz?cache=0&sync_timestamp=1580550317222&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fto-fast-properties%2Fdownload%2Fto-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true + }, + "totalist": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-1.1.0.tgz", + "integrity": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==", + "dev": true + }, + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "tslib": { + "version": "1.11.1", + "resolved": "https://registry.npm.taobao.org/tslib/download/tslib-1.11.1.tgz", + "integrity": "sha1-6xXRKIJ/vuKEFUnhcfRe0zisfjU=", + "dev": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2" + } + }, + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true + }, + "unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "requires": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "dev": true + }, + "unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", + "dev": true + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true + }, + "update-browserslist-db": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", + "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", + "dev": true, + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, + "uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npm.taobao.org/uri-js/download/uri-js-4.2.2.tgz", + "integrity": "sha1-lMVA4f93KVbiKZUHwBCupsiDjrA=", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", + "dev": true + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true + }, + "v8-compile-cache": { + "version": "2.1.0", + "resolved": "https://registry.npm.taobao.org/v8-compile-cache/download/v8-compile-cache-2.1.0.tgz", + "integrity": "sha1-4U3jezGm0ZT1aQ1n78Tn9vxqsw4=", + "dev": true + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true + }, + "vue": { + "version": "2.6.11", + "resolved": "https://registry.npm.taobao.org/vue/download/vue-2.6.11.tgz?cache=0&sync_timestamp=1583528900332&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue%2Fdownload%2Fvue-2.6.11.tgz", + "integrity": "sha1-dllNh31LEiNEBuhONSdcbVFBJcU=" + }, + "vue-awesome": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/vue-awesome/-/vue-awesome-4.0.2.tgz", + "integrity": "sha512-TE9hVwyVrGnBetO/MJwZ/7qLO6Vgr/WrDtIA7vwNryoLdA2jfRcKRw29KacpU5xj3wzZhHfYJ2xJLxfirhmH5Q==", + "requires": { + "nanoid": "^2.1.6" + } + }, + "vue-eslint-parser": { + "version": "7.0.0", + "resolved": "https://registry.npm.taobao.org/vue-eslint-parser/download/vue-eslint-parser-7.0.0.tgz?cache=0&sync_timestamp=1573306368916&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue-eslint-parser%2Fdownload%2Fvue-eslint-parser-7.0.0.tgz", + "integrity": "sha1-pO0mafhxed7dBq/dhzasuzo4ZNY=", + "dev": true, + "requires": { + "debug": "^4.1.1", + "eslint-scope": "^5.0.0", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.1.2", + "esquery": "^1.0.1", + "lodash": "^4.17.15" + } + }, + "vue-hot-reload-api": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz", + "integrity": "sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==", + "dev": true + }, + "vue-loader": { + "version": "17.0.0", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-17.0.0.tgz", + "integrity": "sha512-OWSXjrzIvbF2LtOUmxT3HYgwwubbfFelN8PAP9R9dwpIkj48TVioHhWWSx7W7fk+iF5cgg3CBJRxwTdtLU4Ecg==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "hash-sum": "^2.0.0", + "loader-utils": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "vue-router": { + "version": "3.1.6", + "resolved": "https://registry.npm.taobao.org/vue-router/download/vue-router-3.1.6.tgz?cache=0&sync_timestamp=1584203224109&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue-router%2Fdownload%2Fvue-router-3.1.6.tgz", + "integrity": "sha1-RfWjo4Q+MXAsBh3YKTk1VOQyj4k=" + }, + "vue-style-loader": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.3.tgz", + "integrity": "sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==", + "dev": true, + "requires": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + }, + "dependencies": { + "hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==", + "dev": true + } + } + }, + "vue-template-compiler": { + "version": "2.6.11", + "resolved": "https://registry.npm.taobao.org/vue-template-compiler/download/vue-template-compiler-2.6.11.tgz?cache=0&sync_timestamp=1576267127911&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue-template-compiler%2Fdownload%2Fvue-template-compiler-2.6.11.tgz", + "integrity": "sha1-wEcE749JixUxMAGJk+VjCdRpgIA=", + "dev": true, + "requires": { + "de-indent": "^1.0.2", + "he": "^1.1.0" + } + }, + "vue-template-es2015-compiler": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz", + "integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==", + "dev": true + }, + "vuex": { + "version": "3.1.3", + "resolved": "https://registry.npm.taobao.org/vuex/download/vuex-3.1.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvuex%2Fdownload%2Fvuex-3.1.3.tgz", + "integrity": "sha1-8q1z4/tzaRaYs4yT9m5Y4meUcYA=", + "requires": {} + }, + "watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dev": true, + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "webpack": { + "version": "5.73.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.73.0.tgz", + "integrity": "sha512-svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHGA==", + "dev": true, + "requires": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.4.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.9.3", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.3.1", + "webpack-sources": "^3.2.3" + }, + "dependencies": { + "acorn": { + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", + "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==", + "dev": true + }, + "acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true, + "requires": {} + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "webpack-bundle-analyzer": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.5.0.tgz", + "integrity": "sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==", + "dev": true, + "requires": { + "acorn": "^8.0.4", + "acorn-walk": "^8.0.0", + "chalk": "^4.1.0", + "commander": "^7.2.0", + "gzip-size": "^6.0.0", + "lodash": "^4.17.20", + "opener": "^1.5.2", + "sirv": "^1.0.7", + "ws": "^7.3.1" + }, + "dependencies": { + "acorn": { + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", + "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "webpack-chain": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/webpack-chain/-/webpack-chain-6.5.1.tgz", + "integrity": "sha512-7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA==", + "dev": true, + "requires": { + "deepmerge": "^1.5.2", + "javascript-stringify": "^2.0.1" + } + }, + "webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "dev": true, + "requires": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + } + } + }, + "webpack-dev-server": { + "version": "4.9.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.9.3.tgz", + "integrity": "sha512-3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw==", + "dev": true, + "requires": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.1", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.0.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.4.2" + }, + "dependencies": { + "ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + }, + "ws": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.0.tgz", + "integrity": "sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ==", + "dev": true, + "requires": {} + } + } + }, + "webpack-merge": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + } + }, + "webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true + }, + "webpack-virtual-modules": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.4.tgz", + "integrity": "sha512-h9atBP/bsZohWpHnr+2sic8Iecb60GxftXsWNLLLSqewgIsGzByd2gcIID4nXcG+3tNe4GQG3dLcff3kXupdRA==", + "dev": true + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true + }, + "whatwg-fetch": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==", + "dev": true + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npm.taobao.org/which/download/which-1.3.1.tgz?cache=0&sync_timestamp=1574116720213&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwhich%2Fdownload%2Fwhich-1.3.1.tgz", + "integrity": "sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "dev": true + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npm.taobao.org/word-wrap/download/word-wrap-1.2.3.tgz", + "integrity": "sha1-YQY29rH3A4kb00dxzLF/uTtHB5w=", + "dev": true + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/wrappy/download/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "write": { + "version": "1.0.3", + "resolved": "https://registry.npm.taobao.org/write/download/write-1.0.3.tgz", + "integrity": "sha1-CADhRSO5I6OH5BUSPIZWFqrg9cM=", + "dev": true, + "requires": { + "mkdirp": "^0.5.1" + } + }, + "ws": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.8.tgz", + "integrity": "sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==", + "dev": true, + "requires": {} + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + }, + "yorkie": { + "version": "2.0.0", + "resolved": "https://registry.npm.taobao.org/yorkie/download/yorkie-2.0.0.tgz", + "integrity": "sha1-kkEZEtQ1IU4SxRwq4Qk+VLa7g9k=", + "dev": true, + "requires": { + "execa": "^0.8.0", + "is-ci": "^1.0.10", + "normalize-path": "^1.0.0", + "strip-indent": "^2.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "dev": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "0.8.0", + "resolved": "https://registry.npm.taobao.org/execa/download/execa-0.8.0.tgz?cache=0&sync_timestamp=1576749091315&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fexeca%2Fdownload%2Fexeca-0.8.0.tgz", + "integrity": "sha1-2NdrvBtVIX7RkP1t1J08d07PyNo=", + "dev": true, + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npm.taobao.org/get-stream/download/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-4.1.5.tgz", + "integrity": "sha1-i75Q6oW+1ZvJ4z3KuCNe6bz0Q80=", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "normalize-path": { + "version": "1.0.0", + "resolved": "https://registry.npm.taobao.org/normalize-path/download/normalize-path-1.0.0.tgz", + "integrity": "sha1-MtDkcvkf80VwHBWoMRAY07CpA3k=", + "dev": true + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + } + } + }, + "zrender": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/zrender/-/zrender-5.3.2.tgz", + "integrity": "sha512-8IiYdfwHj2rx0UeIGZGGU4WEVSDEdeVCaIg/fomejg1Xu6OifAL1GVzIPHg2D+MyUkbNgPWji90t0a8IDk+39w==", + "requires": { + "tslib": "2.3.0" + }, + "dependencies": { + "tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + } + } + } + } +} diff --git a/yuhong-ui/package.json b/yuhong-ui/package.json new file mode 100644 index 0000000..eeb41d1 --- /dev/null +++ b/yuhong-ui/package.json @@ -0,0 +1,51 @@ +{ + "name": "big-screen-vue-datav", + "version": "1.5.1", + "private": true, + "scripts": { + "serve": "vue-cli-service serve", + "build": "vue-cli-service build", + "lint": "vue-cli-service lint" + }, + "dependencies": { + "@jiaminghi/data-view": "^2.7.3", + "@types/echarts": "^4.4.3", + "axios": "^0.27.2", + "core-js": "^3.6.4", + "echarts": "^5.3.3", + "element-ui": "^2.15.9", + "vue": "^2.6.11", + "vue-awesome": "^4.0.2", + "vue-router": "^3.1.5", + "vuex": "^3.1.2" + }, + "devDependencies": { + "@vue/cli-plugin-babel": "^5.0.8", + "@vue/cli-plugin-eslint": "^5.0.8", + "@vue/cli-service": "^5.0.8", + "babel-eslint": "^10.0.3", + "eslint": "^6.7.2", + "eslint-plugin-vue": "^6.1.2", + "sass": "^1.25.0", + "sass-loader": "^8.0.2", + "vue-template-compiler": "^2.6.11" + }, + "eslintConfig": { + "root": true, + "env": { + "node": true + }, + "extends": [ + "plugin:vue/essential", + "eslint:recommended" + ], + "parserOptions": { + "parser": "babel-eslint" + }, + "rules": {} + }, + "browserslist": [ + "> 1%", + "last 2 versions" + ] +} diff --git a/yuhong-ui/public/favicon.ico b/yuhong-ui/public/favicon.ico new file mode 100644 index 0000000..df36fcf Binary files /dev/null and b/yuhong-ui/public/favicon.ico differ diff --git a/yuhong-ui/public/image.png b/yuhong-ui/public/image.png new file mode 100644 index 0000000..099507b Binary files /dev/null and b/yuhong-ui/public/image.png differ diff --git a/yuhong-ui/public/index.html b/yuhong-ui/public/index.html new file mode 100644 index 0000000..4123528 --- /dev/null +++ b/yuhong-ui/public/index.html @@ -0,0 +1,17 @@ + + + + + + + + <%= htmlWebpackPlugin.options.title %> + + + +
+ + + diff --git a/yuhong-ui/src/App.vue b/yuhong-ui/src/App.vue new file mode 100644 index 0000000..5b680b1 --- /dev/null +++ b/yuhong-ui/src/App.vue @@ -0,0 +1,14 @@ + + + diff --git a/yuhong-ui/src/assets/logo.png b/yuhong-ui/src/assets/logo.png new file mode 100644 index 0000000..f3d2503 Binary files /dev/null and b/yuhong-ui/src/assets/logo.png differ diff --git a/yuhong-ui/src/assets/pageBg.png b/yuhong-ui/src/assets/pageBg.png new file mode 100644 index 0000000..d393f2b Binary files /dev/null and b/yuhong-ui/src/assets/pageBg.png differ diff --git a/yuhong-ui/src/assets/scss/_variables.scss b/yuhong-ui/src/assets/scss/_variables.scss new file mode 100644 index 0000000..80edb92 --- /dev/null +++ b/yuhong-ui/src/assets/scss/_variables.scss @@ -0,0 +1,98 @@ +// 颜色 +$colors: ( + "primary": #1A5CD7, + "info-1": #4394e4, + "info": #4b67af, + "white": #ffffff, + "light": #f9f9f9, + "grey-1": #999999, + "grey": #666666, + "dark-1": #5f5f5f, + "dark": #222222, + "black-1": #171823, + "black": #000000, + "icon": #5cd9e8 +); + +// 字体大小 +$base-font-size: 0.2rem; +$font-sizes: ( + xxs: 0.1, + //8px + xs: 0.125, + //10px + sm: 0.2875, + //12px + md: 0.1625, + //13px + lg: 0.175, + //14px + xl: 0.2, + //16px + xxl: 0.225, + //18px + xxxl: 0.25 //20px,,,, +); + +// 宽高 +.w-100 { + width: 100%; +} +.h-100 { + height: 100%; +} + +//flex +.d-flex { + display: flex; +} +.flex-column { + flex-direction: column; +} +.flex-wrap { + flex-wrap: wrap; +} +.flex-nowrap { + flex-wrap: nowrap; +} +$flex-jc: ( + start: flex-start, + end: flex-end, + center: center, + between: space-between, + around: space-around, + evenly: space-evenly, +); + +$flex-ai: ( + start: flex-start, + end: flex-end, + center: center, + stretch: stretch, +); + +.flex-1 { + flex: 1; +} + +//.mt-1 => margin top +//spacing +$spacing-types: ( + m: margin, + p: padding, +); +$spacing-directions: ( + t: top, + r: right, + b: bottom, + l: left, +); +$spacing-base-size: 0.5rem; +$spacing-sizes: ( + 0: 0, + 1: 0.5, + 2: 1, + 3: 1.5, + 4: 2, + 5: 2.5, +); diff --git a/yuhong-ui/src/assets/scss/index.scss b/yuhong-ui/src/assets/scss/index.scss new file mode 100644 index 0000000..c327628 --- /dev/null +++ b/yuhong-ui/src/assets/scss/index.scss @@ -0,0 +1,144 @@ +#index { + color: #d3d6dd; + width: 1920px; + height: 1080px; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + transform-origin: left top; + overflow: hidden; + + .bg { + width: 100%; + height: 100%; + padding: 16px 16px 0 16px; + background-image: url("../assets/pageBg.png"); + background-size: cover; + background-position: center center; + } + + .host-body { + .dv-dec-10, + .dv-dec-10-s { + width: 33.3%; + height: 5px; + } + .dv-dec-10-s { + transform: rotateY(180deg); + } + .dv-dec-8 { + width: 200px; + height: 50px; + } + .title { + position: relative; + width: 500px; + text-align: center; + background-size: cover; + background-repeat: no-repeat; + + .title-text { + font-size: 24px; + position: absolute; + bottom: 0; + left: 50%; + transform: translate(-50%); + } + + .dv-dec-6 { + position: absolute; + bottom: -30px; + left: 50%; + width: 250px; + height: 8px; + transform: translate(-50%); + } + } + + // 第二行 + .aside-width { + width: 40%; + } + .react-r-s, + .react-l-s { + background-color: #0f1325; + } + + // 平行四边形 + .react-right { + &.react-l-s { + text-align: right; + width: 500px; + } + font-size: 18px; + width: 300px; + line-height: 50px; + text-align: center; + transform: skewX(-45deg); + + .react-after { + position: absolute; + right: -25px; + top: 0; + height: 50px; + width: 50px; + background-color: #0f1325; + transform: skewX(45deg); + } + + .text { + display: inline-block; + transform: skewX(45deg); + } + } + + .react-left { + &.react-l-s { + width: 500px; + text-align: left; + } + font-size: 18px; + width: 300px; + height: 50px; + line-height: 50px; + text-align: center; + transform: skewX(45deg); + background-color: #0f1325; + + .react-left { + position: absolute; + left: -25px; + top: 0; + height: 50px; + width: 50px; + background-color: #0f1325; + transform: skewX(-45deg); + } + + .text { + display: inline-block; + transform: skewX(-45deg); + } + } + + .body-box { + margin-top: 16px; + display: flex; + flex-direction: column; + + //下方区域的布局 + .content-box { + display: grid; + grid-template-columns: 2fr 3fr 5fr 3fr 2fr; + } + + // 底部数据 + .bototm-box { + margin-top: 10px; + display: grid; + grid-template-columns: repeat(2, 50%); + } + } + } +} diff --git a/yuhong-ui/src/assets/scss/style.scss b/yuhong-ui/src/assets/scss/style.scss new file mode 100644 index 0000000..17b9778 --- /dev/null +++ b/yuhong-ui/src/assets/scss/style.scss @@ -0,0 +1,185 @@ +@import "./variables"; + +// 全局样式 +* { + margin: 0; + padding: 0; + list-style-type: none; + outline: none; + box-sizing: border-box; +} + +html { + margin: 0; + padding: 0; +} + +body { + font-family: Arial, Helvetica, sans-serif; + line-height: 1.2em; + background-color: #f1f1f1; + margin: 0; + padding: 0; +} + +a { + color: #343440; + text-decoration: none; +} + +.clearfix { + &::after { + content: ""; + display: table; + height: 0; + line-height: 0; + visibility: hidden; + clear: both; + } +} + +//浮动 +.float-r { + float: right; +} + +//浮动 +.float-l { + float: left; +} + +// 字体加粗 +.fw-b { + font-weight: bold; +} + +//文章一行显示,多余省略号显示 +.title-item { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.bg-color-black { + background-color: rgba(19, 25, 47, 0.6); +} + +.bg-color-blue { + background-color: #1a5cd7; +} + +.colorBlack { + color: #272727 !important; + + &:hover { + color: #272727 !important; + } +} + +.colorGrass { + color: #33cea0; + + &:hover { + color: #33cea0 !important; + } +} + +.colorRed { + color: #ff5722; + + &:hover { + color: #ff5722 !important; + } +} + +.colorText { + color: #d3d6dd !important; + + &:hover { + color: #d3d6dd !important; + } +} + +.colorBlue { + color: #257dff !important; + + &:hover { + color: #257dff !important; + } +} + +//颜色 +@each $colorkey, $color in $colors { + .text-#{$colorkey} { + color: $color; + } + + .bg-#{$colorkey} { + background-color: $color; + } +} + +//对齐 +@each $var in (left, center, right) { + .text-#{$var} { + text-align: $var !important; + } +} + +//flex +@each $key, $value in $flex-jc { + .jc-#{$key} { + justify-content: $value; + } +} + +@each $key, $value in $flex-ai { + .ai-#{$key} { + align-items: $value; + } +} + +//字体 +@each $fontkey, $fontvalue in $font-sizes { + .fs-#{$fontkey} { + font-size: $fontvalue * $base-font-size; + } +} + +//.mt-1 => margin top +//spacing + +@each $typekey, $type in $spacing-types { + //.m-1 + @each $sizekey, $size in $spacing-sizes { + .#{$typekey}-#{$sizekey} { + #{$type}: $size * $spacing-base-size; + } + } + + //.mx-1 + @each $sizekey, $size in $spacing-sizes { + .#{$typekey}x-#{$sizekey} { + #{$type}-left: $size * $spacing-base-size; + #{$type}-right: $size * $spacing-base-size; + } + + .#{$typekey}y-#{$sizekey} { + #{$type}-top: $size * $spacing-base-size; + #{$type}-bottom: $size * $spacing-base-size; + } + } + + //.mt-1 + @each $directionkey, $direction in $spacing-directions { + @each $sizekey, $size in $spacing-sizes { + .#{$typekey}#{$directionkey}-#{$sizekey} { + #{$type}-#{$direction}: $size * $spacing-base-size; + } + } + } + + .#{$typekey} { + #{$type}: 0; + } +} diff --git a/yuhong-ui/src/common/echart/index.vue b/yuhong-ui/src/common/echart/index.vue new file mode 100644 index 0000000..37a9c63 --- /dev/null +++ b/yuhong-ui/src/common/echart/index.vue @@ -0,0 +1,69 @@ + + + + + diff --git a/yuhong-ui/src/common/echart/theme.json b/yuhong-ui/src/common/echart/theme.json new file mode 100644 index 0000000..ce81aba --- /dev/null +++ b/yuhong-ui/src/common/echart/theme.json @@ -0,0 +1,490 @@ +{ + "color": [ + "#2d8cf0", + "#19be6b", + "#ff9900", + "#E46CBB", + "#9A66E4", + "#ed3f14" + ], + "backgroundColor": "rgba(0,0,0,0)", + "textStyle": {}, + "title": { + "textStyle": { + "color": "#516b91" + }, + "subtextStyle": { + "color": "#93b7e3" + } + }, + "line": { + "itemStyle": { + "normal": { + "borderWidth": "2" + } + }, + "lineStyle": { + "normal": { + "width": "2" + } + }, + "symbolSize": "6", + "symbol": "emptyCircle", + "smooth": true + }, + "radar": { + "itemStyle": { + "normal": { + "borderWidth": "2" + } + }, + "lineStyle": { + "normal": { + "width": "2" + } + }, + "symbolSize": "6", + "symbol": "emptyCircle", + "smooth": true + }, + "bar": { + "itemStyle": { + "normal": { + "barBorderWidth": 0, + "barBorderColor": "#ccc" + }, + "emphasis": { + "barBorderWidth": 0, + "barBorderColor": "#ccc" + } + } + }, + "pie": { + "itemStyle": { + "normal": { + "borderWidth": 0, + "borderColor": "#ccc" + }, + "emphasis": { + "borderWidth": 0, + "borderColor": "#ccc" + } + } + }, + "scatter": { + "itemStyle": { + "normal": { + "borderWidth": 0, + "borderColor": "#ccc" + }, + "emphasis": { + "borderWidth": 0, + "borderColor": "#ccc" + } + } + }, + "boxplot": { + "itemStyle": { + "normal": { + "borderWidth": 0, + "borderColor": "#ccc" + }, + "emphasis": { + "borderWidth": 0, + "borderColor": "#ccc" + } + } + }, + "parallel": { + "itemStyle": { + "normal": { + "borderWidth": 0, + "borderColor": "#ccc" + }, + "emphasis": { + "borderWidth": 0, + "borderColor": "#ccc" + } + } + }, + "sankey": { + "itemStyle": { + "normal": { + "borderWidth": 0, + "borderColor": "#ccc" + }, + "emphasis": { + "borderWidth": 0, + "borderColor": "#ccc" + } + } + }, + "funnel": { + "itemStyle": { + "normal": { + "borderWidth": 0, + "borderColor": "#ccc" + }, + "emphasis": { + "borderWidth": 0, + "borderColor": "#ccc" + } + } + }, + "gauge": { + "itemStyle": { + "normal": { + "borderWidth": 0, + "borderColor": "#ccc" + }, + "emphasis": { + "borderWidth": 0, + "borderColor": "#ccc" + } + } + }, + "candlestick": { + "itemStyle": { + "normal": { + "color": "#edafda", + "color0": "transparent", + "borderColor": "#d680bc", + "borderColor0": "#8fd3e8", + "borderWidth": "2" + } + } + }, + "graph": { + "itemStyle": { + "normal": { + "borderWidth": 0, + "borderColor": "#ccc" + } + }, + "lineStyle": { + "normal": { + "width": 1, + "color": "#aaa" + } + }, + "symbolSize": "6", + "symbol": "emptyCircle", + "smooth": true, + "color": [ + "#2d8cf0", + "#19be6b", + "#f5ae4a", + "#9189d5", + "#56cae2", + "#cbb0e3" + ], + "label": { + "normal": { + "textStyle": { + "color": "#eee" + } + } + } + }, + "map": { + "itemStyle": { + "normal": { + "areaColor": "#f3f3f3", + "borderColor": "#516b91", + "borderWidth": 0.5 + }, + "emphasis": { + "areaColor": "rgba(165,231,240,1)", + "borderColor": "#516b91", + "borderWidth": 1 + } + }, + "label": { + "normal": { + "textStyle": { + "color": "#000" + } + }, + "emphasis": { + "textStyle": { + "color": "rgb(81,107,145)" + } + } + } + }, + "geo": { + "itemStyle": { + "normal": { + "areaColor": "#f3f3f3", + "borderColor": "#516b91", + "borderWidth": 0.5 + }, + "emphasis": { + "areaColor": "rgba(165,231,240,1)", + "borderColor": "#516b91", + "borderWidth": 1 + } + }, + "label": { + "normal": { + "textStyle": { + "color": "#000" + } + }, + "emphasis": { + "textStyle": { + "color": "rgb(81,107,145)" + } + } + } + }, + "categoryAxis": { + "axisLine": { + "show": true, + "lineStyle": { + "color": "#cccccc" + } + }, + "axisTick": { + "show": false, + "lineStyle": { + "color": "#333" + } + }, + "axisLabel": { + "show": true, + "textStyle": { + "color": "#fff" + } + }, + "splitLine": { + "show": false, + "lineStyle": { + "color": [ + "#eeeeee" + ] + } + }, + "splitArea": { + "show": false, + "areaStyle": { + "color": [ + "rgba(250,250,250,0.05)", + "rgba(200,200,200,0.02)" + ] + } + } + }, + "valueAxis": { + "axisLine": { + "show": true, + "lineStyle": { + "color": "#cccccc" + } + }, + "axisTick": { + "show": false, + "lineStyle": { + "color": "#333" + } + }, + "axisLabel": { + "show": true, + "textStyle": { + "color": "#fff" + } + }, + "splitLine": { + "show": false, + "lineStyle": { + "color": [ + "#eeeeee" + ] + } + }, + "splitArea": { + "show": false, + "areaStyle": { + "color": [ + "rgba(250,250,250,0.05)", + "rgba(200,200,200,0.02)" + ] + } + } + }, + "logAxis": { + "axisLine": { + "show": true, + "lineStyle": { + "color": "#cccccc" + } + }, + "axisTick": { + "show": false, + "lineStyle": { + "color": "#333" + } + }, + "axisLabel": { + "show": true, + "textStyle": { + "color": "#999999" + } + }, + "splitLine": { + "show": true, + "lineStyle": { + "color": [ + "#eeeeee" + ] + } + }, + "splitArea": { + "show": false, + "areaStyle": { + "color": [ + "rgba(250,250,250,0.05)", + "rgba(200,200,200,0.02)" + ] + } + } + }, + "timeAxis": { + "axisLine": { + "show": true, + "lineStyle": { + "color": "#cccccc" + } + }, + "axisTick": { + "show": false, + "lineStyle": { + "color": "#333" + } + }, + "axisLabel": { + "show": true, + "textStyle": { + "color": "#999999" + } + }, + "splitLine": { + "show": true, + "lineStyle": { + "color": [ + "#eeeeee" + ] + } + }, + "splitArea": { + "show": false, + "areaStyle": { + "color": [ + "rgba(250,250,250,0.05)", + "rgba(200,200,200,0.02)" + ] + } + } + }, + "toolbox": { + "iconStyle": { + "normal": { + "borderColor": "#999" + }, + "emphasis": { + "borderColor": "#666" + } + } + }, + "legend": { + "textStyle": { + "color": "#fff" + } + }, + "tooltip": { + "axisPointer": { + "lineStyle": { + "color": "#ccc", + "width": 1 + }, + "crossStyle": { + "color": "#ccc", + "width": 1 + } + } + }, + "timeline": { + "lineStyle": { + "color": "#8fd3e8", + "width": 1 + }, + "itemStyle": { + "normal": { + "color": "#8fd3e8", + "borderWidth": 1 + }, + "emphasis": { + "color": "#8fd3e8" + } + }, + "controlStyle": { + "normal": { + "color": "#8fd3e8", + "borderColor": "#8fd3e8", + "borderWidth": 0.5 + }, + "emphasis": { + "color": "#8fd3e8", + "borderColor": "#8fd3e8", + "borderWidth": 0.5 + } + }, + "checkpointStyle": { + "color": "#8fd3e8", + "borderColor": "rgba(138,124,168,0.37)" + }, + "label": { + "normal": { + "textStyle": { + "color": "#8fd3e8" + } + }, + "emphasis": { + "textStyle": { + "color": "#8fd3e8" + } + } + } + }, + "visualMap": { + "color": [ + "#516b91", + "#59c4e6", + "#a5e7f0" + ] + }, + "dataZoom": { + "backgroundColor": "rgba(0,0,0,0)", + "dataBackgroundColor": "rgba(255,255,255,0.3)", + "fillerColor": "rgba(167,183,204,0.4)", + "handleColor": "#a7b7cc", + "handleSize": "100%", + "textStyle": { + "color": "#333" + } + }, + "markPoint": { + "label": { + "normal": { + "textStyle": { + "color": "#eee" + } + }, + "emphasis": { + "textStyle": { + "color": "#eee" + } + } + } + } +} diff --git a/yuhong-ui/src/common/map/fujian.js b/yuhong-ui/src/common/map/fujian.js new file mode 100644 index 0000000..c6f2c3f --- /dev/null +++ b/yuhong-ui/src/common/map/fujian.js @@ -0,0 +1,48 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +(function (root, factory) { + // eslint-disable-next-line + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module. + // eslint-disable-next-line + define(['exports', 'echarts'], factory); + } else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') { + // CommonJS + factory(exports, require('echarts')); + } else { + // Browser globals + factory({}, root.echarts); + } +}(this, function (exports, echarts) { + var log = function (msg) { + if (typeof console !== 'undefined') { + console && console.error && console.error(msg); + } + } + if (!echarts) { + log('ECharts is not Loaded'); + return; + } + if (!echarts.registerMap) { + log('ECharts Map is not loaded') + return; + } + echarts.registerMap('福建', {"type":"FeatureCollection","features":[{"id":"350100","type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[["@@K@KLDBLBBIHCAA"],["@@CBABCD@FJFCFBDHFFBB@FM@CCEBCCEMC"],["@@ACCBBDDA"],["@@@CC@@DD@"],["@@B@A@"],["@@MCKEO@ICCCAEAKBKAAIAC@AVFPCRBBFBNHNBVXJ@DADCHAB@@GBCL@B@BCCIEEBC@CHCACG@ABKPA@CC"],["@@@A@B"],["@@A@CDC@WH@FLXCB@DFDATBFH@HELA@CCACI@AFAD@BA@AH@DED@FDBHHHJDT@JC@AEOECGKC@EDOQIACBG@CC@CKC"],["@@B@BCE@BD"],["@@J@BA@AAAI@ABBD"],["@@B@@ACABD"],["@@B@@AA@@B"],["@@B@AC@@@D"],["@@BAA@@B"],["@@@A@B"],["@@BAA@ABB@"],["@@DA@CCB@D"],["@@MDFFAFBH@BCFCDBN@BHFDJJHFBDCDMCCE@AA@EHOD@HDDABC@ECCGDCEGAGACC@G@A"],["@@B@@AA@@B"],["@@B@@AA@@B"],["@@B@A@"],["@@B@A@"],["@@B@AC@B@B"],["@@BA@AAB@B"],["@@BA@CC@ABCCC@@BDDHB"],["@@BKCEEAEF@HBDHDDA"],["@@E@AFCBC@CCABACA@AACFB@@BADQAALDDAB@JBFADLADGAC@@PBHF@@DCAAAECEJCDDAFBDCDBLDBBA@AAADAAADA@ADBDACGDACADCAADEGKE@AA"],["@@ABBBAFEBQBEDQBABCJOLEHD^NF\\BLGFMH@FKD@LBPENB@A@CM@CAAE@CBA@CE@A@@ABA@EDAAKE@MEC@"],["@@@HCBEAEJAH@BDDL@DCFDNBB@@CFBDEEEGGG@A@BCEEEA"],["@@ABFLAB@DJDFNDDJ@BCDAFHBBFC@CGEBCKEA@BEIC@CCBADIIA@ACC@"],["@@FD@A@CAC@ACABFAD"],["@@C@@BDDD@@FBB@DAB@B@BB@BA@AF@@CFEIEIC"],["@@BDHBB@CGBGEADAACCCEACCC@@DE@@DHDBFHJ"],["@@@AA@BB"],["@@FFB@@CACC@AB"],["@@ABD@@BB@HACCABE@"],["@@BBJ@DBDAAEA@CAABC@ACCH"],["@@ABBBF@AACA"],["@@@DFJDBFFHDB@@ECCEGEACEE@"],["@@DHDBD@FADCCEFAFBB@HKBECCEDC@A@CF@@AGEECCCGABABABCAEBAABCAAA@GH@DDDAFF@BBADGBECABARA@CGCECBABBFAFJD@HBBD@JABCDC@EAI@AF@FBF@@F"],["@@CBD@BAA@"],["@@B@@AA@@B"],["@@DBBACAAB"],["@@DFDAACA@AEA@@F"],["@@DB@CC@ABB@"],["@@FNFAFFFACGA@ACC@EEE@@B"],["@@@DBBF@AECAAB"],["@@BDB@@CBAEEA@BH"],["@@BBD@@ACCDAE@@D@B"],["@@JB@@AAE@CA@BB@"],["@@BDDBBAAC@CC@ACA@BH"],["@@DD@CD@ACC@AD"],["@@FDH@GEEB"],["@@C@ADHBBF@@DAFBCEIE"],["@@BCAEBA@IECABBJEHID@FMFBBBBBFD@FFD@D@@HBBF@RADCBE@CGCEBAAGG@CBC"],["@@B@@BD@@CAAAA@BAD@@"],["@@BDAE@B"],["@@CFDDD@DAJ@D@BAACBACC@EAACBABKH"],["@@BB@AA@"],["@@DBBGAAA@CA@BDFAB"],["@@@BDFDBB@CGEA"],["@@@BB@@AA@"],["@@EDBDB@FA@EC@"],["@@CF@DADDFB@BA@CBBHBBABAD@ACAABEAAEAIB"],["@@@@@A@B"],["@@BBBA@ACB"],["@@DB@CA@AB"],["@@DDB@@ABACCABAB"],["@@ABBBD@@CD@@ACACD"],["@@BBDAAEE@BF"],["@@@BB@AA@@"],["@@JFB@CEG@"],["@@@DFBAEC@"],["@@@DD@ACA@"],["@@ABFB@CC@"],["@@B@B@AAAB"],["@@BDB@ACA@"],["@@B@@@A@"],["@@JHB@ACGCA@"],["@@DDHFBBDCFDD@JHDA@@KKCAACEBEGGCABBDCD"],["@@DFNJHBJOJEBACGIACCK@CACBCCC@CDADDP"],["@@ADBBHAAABCAAED"],["@@@BBA@AAB"],["@@HBBCAEGF@B"],["@@HHB@GIAB"],["@@P@@A@CECM@@DDF"],["@@IKGACD@FNLHJHB@EGM"],["@@A@CDG@CBC@EFIDBBAD@BDDFA@FDFD@BICKDAD@JNDBBJAB@BPH@BJJF@FDAHHDF@DAJDBDB@@GCA@CBCCMIKBCE@CA@GECE@IEE@@ABACGIEC@"],["@@BA@ACBBB"],["@@BCAAAAC@DHB@"],["@@DB@CBAE@@D"],["@@@@@@"],["@@FAB@BCAAE@CDBD"],["@@JNPJF@DABAAI@ADAVHZFFBHJJDF@DA@EEI@EFG@C@A@KAEECEAC@GBIJC@IGQA@BC@GEEBE@GCABADMJC@@BAHBD"],["@@DDBA@CCAAB@B"],["@@BAAB"],["@@DBBA@CC@AD"],["@@JFBCDA@AACIACD@D"],["@@@BDAC@"],["@@B@BAA@AB"],["@@BBDBAEAAA@@D"],["@@@DHBBMCG@AAAC@AFBN"],["@@BBBCA@AB"],["@@@BBB@CA@"],["@@@DD@AEC@BB"],["@@BBBAACC@BD"],["@@BBB@@C@AG@DD"],["@@@BB@@CAB"],["@@BBBCC@@B"],["@@BBB@ACAB"],["@@@B@A"],["@@B@@AAB"],["@@BDF@CECB"],["@@ABDBBCC@"],["@@ABDBDEA@CB"],["@@@BBBDAAAC@"],["@@D@AAAB"],["@@E@@FB@@ADA@A"],["@@@BF@DEC@ED"],["@@DDD@@ACAC@"],["@@B@B@AAAB"],["@@HHDAAACEE@@B"],["@@B@AA@B"],["@@BDB@BCCAAB"],["@@FBAAC@@@"],["@@B@AAA@BB"],["@@BBF@B@@EEACB@D"],["@@BDB@@EC@@B"],["@@CDBBDAAC"],["@@CD@F@BDAHA@CD@@E@AC@GD"],["@@FFB@@ACGA@AD"],["@@ADB@BCA@"],["@@@BF@AAC@"],["@@@DBCA@"],["@@@AAAADD@"],["@@DIF@ACCBCAC@@DCBALA@@DF@FG"],["@@BDD@CI@@AF"],["@@@@@@"],["@@@BB@@AA@"],["@@BHBBFA@AAABCCCBCAAA@ABC@@FBB"],["@@CB@BF@@AAA"],["@@ADBDB@FMC@CF"],["@@ADBBDEC@"],["@@@BBAA@"],["@@ADD@@CA@"],["@@AB@BBC@@"],["@@B@@AAB"],["@@@B@A"],["@@@BDAC@"],["@@@BBDFADB@CE@ACCA@D"],["@@J@BCCCG@@H"],["@@A@@DBC@@"],["@@@EAACFAAAFBBBCF@"],["@@EDADD@DABBD@@EEA"],["@@@BBFCBC@A@ERBBJ@FBF@EFE@@DDBN@HED@FBCFFBBDD@JC@CEEBCAANCBCB@@CKEEEOAGCADE@ME"],["@@@BBBF@@CAAEB"],["@@@BBBBECA@D"],["@@ABBBDCCA@B"],["@@GDDFHABAACCA"],["@@BDB@DA@CAAA@CD"],["@@DB@CAAAD"],["@@ABBBHACAC@"],["@@DHH@BA@EFBBA@ICCACCBE@@FEF@D"],["@@DFHDBAACCCCACB"],["@@@DFBD@@CAAGA@B"],["@@B@@AA@@B"],["@@@DF@ACDCAGA@@FCF"],["@@@DDBDCBAAAE@AB"],["@@@BDAC@"],["@@DBBAEAABB@"],["@@ABBBBAAA"],["@@DBB@AAC@"],["@@@BB@@CA@@B"],["@@B@AA@B"],["@@@@@@@@"],["@@ADDADDDB@GEEE@BF"],["@@ADFBFBDA@ACACECBAB"],["@@BFFGCAA@AD"],["@@AB@BDCA@"],["@@B@@CE@AD@@F@"],["@@CDM@@BDBAFFBBDBB@FFDRFLDAK@ICEHKACGACBABC@K@"],["@@DBDA@CEAAB@D"],["@@DDAEA@@B"],["@@CCA@DLB@DCBCE@"],["@@BBBCCAABBB"],["@@BBBAAAAB"],["@@@BDJDBDDDACEBCDAHCBAEACDQ@"],["@@@DDAAAA@"],["@@AB@BFCA@A@"],["@@@BB@AA"],["@@@AAB@@B@"],["@@DBCA"],["@@@BB@@CAB"],["@@ADD@@CA@"],["@@AB@DDCAA"],["@@AAABD@"],["@@f•f¯BGEOBGBCLKbqBEBOBCRORQBAIKAEBEVEZ@\\HjRXJ\\@FA@COeCEe_aUGEAOEEKAIAmDQEG@A@CRCDGFSDG@…]GGBILENADC@EAIEIYWIACBMLOPIFI@Ÿ_YCYAmGECGG@KDGRQBE@EAGUMAC@UAIEEoM]_YISKAM@MFILIFcFKBCNEPARM@ECEJYR@BWHMJyH]BEFAHBdNH@F@NERGLODMAiCUIaYOuCIGCSC{CMCICEEEGGWGeAeD{D‡HMBCH@DOAGCEQKEIEEMGCCEOCAAEEA@EJCBGFC@AQcQIUA‘JaA‰SAKMEKBGEAE@IHMDUAIBA`BNMFAJFF@^EFBHJJ@FCBGAQFM@GACQSACDKJ@REVBTCJDJDPNJBL@DAHMEQ@ATOFQHC@GAGHWBKCGKKAKDWFELKJM@E@EGG@GBADAJ@FDTVLDDABA@]BAlJHV@BEB@HHFBFVHFPDDTFREF@JDBD@DSHABDLCH@F@DH@@V@LKXELcPALIJAH@JJHH@BJLLBHXND@FAD@DBBPDHHFTJXFTLBH@@HAjZF@FAFG@KCEYa@C@GDOJMDAJA\\HLAD@HIFCH@PKPGFG@ECCECCIIK@ADCH@PMhKN@ZLH@DA@EE[GKYUKEGAI@CDGPGDIBiSGECCEUAWDODGBCXCDCDIDEBANDDBB@JCDIPHBDB@FEAKBIKS@KEEK@EBABCLCFAB[FGAECCEKCEBIAKIKCc[IAGACCEO@MHCN@FCLAFC@GMC@KEABCACE@EBCAAB@DA@GCE@SPCHAHGDCFSBIFKAKPKDW@C@@B@DVD@FAHEBAEM@CBEHGDCD@DNR@FG@CAC@IL@D{OAA@GCKCIYMG@CC@CHEPADAH@BBBHD@D@JILA@FAHBHF@F@FBFCDE@SDI@AEG@MEAIBGA@KAC@EJ[DC@MDA@AGEBEAAA@GHC@SMQCKE@CDAVBTHHHF@BA@CCMGIECEG_IWBABMBEAMIIAEBCHKN@HDBLBQXIV@LBFJLDRCFAPIDCH@LHJCDIFADDH@NCJGFMAEAEECEBEGUHIFADADE@IBAH@DBDEDKDI@AGEMECIAEACIEGBECAKEABG@CEEIAMEE@@JDF@D@HEBEBO@KAGIQEEQC@QHCD@JJP^XDD@HENQVGFGBCDBNJfCFGDE@GA]BCACIGOQSG[EACDBTCJON@DPJTT@HIFA@AHDVBFHHJ^AFGDMBI@OSAAEAiHEDATEFsVIFIDIAEIGUKsAODOJYJO@EBQAICCI@CECBCDGHO@IGG[IEIDM@OASBWTOJKVA`JZJRHFGDMEIBEF@TA@o]AIO@EAEJA@GACBADFJ@DELCD@DDBLANCD@LVBFENB@JCF@DDDBDDAHFP@FGNMT@PIJAPIGGCQOIGCCADAHIBIFICGBCBKRMDCRSTBBBBJBFGFCB@BHCPEB@EAAC@C@DN@DADEBIB@HBB@BBDGDALMFGFMR@HAH@JJTFPFJANFBHAJ@BBCFIBIJETBDNBDBBDCHADGAAHADEBI@@HIAAABAEC@BCB@A@AABBHHFPNJDJHLT@DABIDG@EBEBGHMGEHkDEAKGAACBCLA@CAEGGCKDCD@HEC@EgGMK_BSIACmAIGKDMAEEEIMCCCAGOGANDTDHBFCPEF@D@HDDF@DB@DADCBC@MG@GGGG@ICIOMMAKIACAQCGECBCGCCCEKGIIEAEEC@ABHL@FGBCCO@OGC@MDADEBG@QLEHADW@EBEGOI@AHABAMSUMWIICMBIDMNCBCA@CBEBGCGIGMAIMEEE@GBADL`@NCBUOI@EGCAKF@HA@CCIFAJSAMBED@BBBHFON]FO@EAI@ECACAOICEBIHIDAJABC@CA@EDMCAEDCA@CBOAGEAGAADELABGACA@MCGCAGPEBEAAC@CJIGEC@INUKIFOMCGDEEEGCYAEBCLKJGLGFC@IJKJALUPAJWFMJGJA@CBKEGBIFQRGV@LBBARCHIHCH@JG`EJSHGFKRMCEF@FVXDP@NDLD@LEHDLNF@HF@DEJIZABKFADBDJBCLDFN@BDCJV\\LNHC\\ULOFAFCBCI{BAJHP@FHBZCFAHAFC@AFBDJHHBPINALCP@JO@AACD@HB@BKPCJEBHHALBFNRDJAFG@AFDTHLAHDFKLBDDFDFEF@FEDJTBHCXGF@L@BH@ETBFJJBZIPAHAHBB\\CpBnHJ@XSRFONBHJHFNCBGCGBAFE^CBEFAN@LAFFHFLAFDD@FCBSGG@GFGNA`FL@LCFBD@LD@PGDBDDITDJDHBDCFBDABBB@BF@FDBB@DBB\\BTKFLIHKTEFPLFHDAhANINGLANJD@HCBDDLFHBDCDHB@F@NK`BHABHJVJDDCJH@D@@DD@BADCF@DBBD@DABKDBZDDNJFFHDHHR\\|AFABA@ENE\\EFB\\RHDDVDJBJEHQLE@EBCDGLIHDHEFGFQBEDAFDF@JJBELJPEDSH]PGFHNBFCRDJ@RBFHFD@HJRHBHAHIBBLCDEB@B@HDHVAFBD@DCHAT@FEFIEKBAJAPENEDG@]OK@CXSDEACC@@E@KFKJGJAL@XHbTJNBLPHDD@J@D\\HDDHDbJLAVBF@PSHEN@LHH\\ALEFOAEFAHDLPNDVFJLFRH`BFAJGF@DBBDFB@DEHBDFF@DOP@DDDFDD@LEHF@BCJBDJJ@DE@AD@HHBBDBNFBJED@@DANHD`CJ@DBNND@DADENIFEFE@EACIAKGEGAEDCRGL@PDB@DCDAJBBB@LDBD@@GDCAEFGACAAJADEBCFCAIFG@CDCHBFABB@DDBT@DAHGBBBHHBF@FCHBDAD@BFJJD@H@NFDDJNHDFJDBNEDENYHG@SDCNSFAD@ZHJJJZDFHAVIJGBCJCDDH†HRVXFBF@VA@GFABAAIE@CE@CB@HD@CFCBFFBB@DAHDFH@FJFJAFFAFED@B@DBBH@DC@LDAH@DCDAVDFFJP@NBFPBNAJCJADAH@JDAHYJABBBH@BB@DDBLANOFANBVDNFT@HADCF@FB@DFBTKLC@EXBDCJKAC@INQJCBILELQ@AKIPUDCN@^KBC@EECDCDAJDFANKRBHGF@HFF@NEFCDC@EFA@CB@NABAAE@ADAF@RFNHDAHBPEJ@FBBH@DDHF@FENF@DPpDDFBJ@NJVEH@FAXKJDTPDBGF@DDBLA\\DJATMJCDGTKBGJM"]],"encodeOffsets":[[[121678,27068]],[[122867,26893]],[[123104,26891]],[[123102,26881]],[[122918,26872]],[[122887,26845]],[[122899,26847]],[[122808,26762]],[[123295,26793]],[[122500,26759]],[[122597,26600]],[[122653,26290]],[[122432,26267]],[[122495,26224]],[[122330,26023]],[[122337,25968]],[[122386,25960]],[[122568,25912]],[[122491,25946]],[[122489,25944]],[[122479,25933]],[[122477,25932]],[[122575,25918]],[[122572,25914]],[[122600,25884]],[[122600,25866]],[[122778,26197]],[[122515,26757]],[[122816,26587]],[[122847,26569]],[[122779,27057]],[[122762,27045]],[[122794,27053]],[[122756,27019]],[[122755,26998]],[[122828,27009]],[[122848,27000]],[[122971,27014]],[[123107,26964]],[[123388,27005]],[[122776,26927]],[[122780,26924]],[[122774,26924]],[[122896,26865]],[[122900,26866]],[[122880,26870]],[[122857,26818]],[[122855,26792]],[[122703,26916]],[[122688,26897]],[[122685,26889]],[[122705,26880]],[[122597,26897]],[[122598,26867]],[[122549,26752]],[[122532,26772]],[[122538,26773]],[[122508,26742]],[[122877,26603]],[[122846,26566]],[[122564,26378]],[[122535,26397]],[[122528,26369]],[[122546,26375]],[[122686,26379]],[[122731,26321]],[[122734,26322]],[[122700,26282]],[[122700,26286]],[[122708,26284]],[[122643,26330]],[[122631,26281]],[[122600,26328]],[[122566,26286]],[[122561,26282]],[[122575,26281]],[[122577,26283]],[[122534,26303]],[[122539,26306]],[[122511,26289]],[[122521,26281]],[[122483,26327]],[[122477,26331]],[[122496,26319]],[[122487,26291]],[[122494,26291]],[[122458,26284]],[[122450,26243]],[[122414,26223]],[[122416,26230]],[[122478,26197]],[[122483,26194]],[[122473,26208]],[[122535,26263]],[[122567,26229]],[[122588,26246]],[[122671,26268]],[[122676,26263]],[[122686,26264]],[[122691,26237]],[[122726,26231]],[[122737,26209]],[[122786,26210]],[[122722,26189]],[[122715,26193]],[[122751,26184]],[[122716,26129]],[[122701,26140]],[[122691,26129]],[[122691,26122]],[[122699,26124]],[[122696,26122]],[[122542,26118]],[[122578,26154]],[[122582,26156]],[[122583,26146]],[[122580,26168]],[[122590,26165]],[[122580,26144]],[[122571,26142]],[[122568,26189]],[[122479,26187]],[[122495,26125]],[[122497,26125]],[[122499,26129]],[[122500,26143]],[[122545,26107]],[[122532,26091]],[[122519,26069]],[[122539,26058]],[[122556,26069]],[[122511,26041]],[[122587,26026]],[[122681,26067]],[[122677,26060]],[[122686,26053]],[[122695,26033]],[[122691,26034]],[[122693,26038]],[[122818,26043]],[[122753,26083]],[[122747,26086]],[[122725,26100]],[[122643,26003]],[[122650,26004]],[[122634,25999]],[[122631,26000]],[[122628,26000]],[[122620,26011]],[[122548,26022]],[[122539,26005]],[[122542,26007]],[[122602,25961]],[[122588,25985]],[[122578,25962]],[[122579,25943]],[[122579,25951]],[[122570,25955]],[[122565,25953]],[[122556,25945]],[[122648,25899]],[[122646,25905]],[[122632,25906]],[[122619,25901]],[[122600,25885]],[[122442,26033]],[[122436,26036]],[[122438,26056]],[[122438,25999]],[[122455,26007]],[[122420,25975]],[[122403,25968]],[[122376,25971]],[[122375,25972]],[[122375,25975]],[[122470,25938]],[[122346,25914]],[[122355,25916]],[[122358,25920]],[[122351,25932]],[[122342,25940]],[[122331,25960]],[[122336,25979]],[[122230,26022]],[[122230,26020]],[[122245,26043]],[[122256,26046]],[[122280,26060]],[[122299,26064]],[[122846,26708]],[[122684,26856]],[[122684,26858]],[[122686,26859]],[[122689,26858]],[[122586,25928]],[[122556,26196]],[[122676,27184]]]},"properties":{"cp":[119.206239,26.075302],"name":"福州市","childNum":197}},{"id":"350200","type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[["@@C@@DJ@@AEA"],["@@QDKHAHJPLBJIFCDCBE@GCCGA"],["@@BFF@@CCACA@B"],["@@JDFFJ@HCFDDABAAAC@AEMAC@GCGBCF"],["@@FDJC@AEBECAGA@AACB@BHDAF"],["@@FcAIO[•…MOMKQAcDUFaNIJKTMNAFCP@HHNFjTxBHJXJNHHXNfHJDNBFAFEJQFC^ClQNKFIDOB["],["@@iDoCEBSHKREDQBEDONKTCLHV@@CBABHHBHAJBBG`E@AFOHCHCBEAEBADCPEHKHCBO@GD@LBJBDGHAFDRFF@HEHEDMHMLMHADJFDJ@J@FALDBBBNCPDRADBTfJHNFLLJDDDDNDH@DAJLDDF@FCNK\\CNBLABMFCFIhARFLDTDHJDFBALHJDLBNAXALGNF@DBBF@FABAFDJAFFTIFCBSCG@EBWbMHQLBJBDFDH@H@DCJGFKBAXJTEHIHQHEDGDAHHF@ZLLDBBONAD@DLNL@RCDBBFCHOJSDGF@FDFHBZMHADDBPFBXGLBFADEAQDGLKHMFEHAFDHNH@DABE@SDMFAPTrXBAF@LTLHTLFBLEN@LB@FJDN@JADADEDAD@DDJCNBRUAAKAEM@EFGTKLCHGTGBIACEEBELODIDAFAH@FBDLHBF@DGFBDADCF@FBHHTDH@JERCFCHWFCHMLEHEHACGHEAEGIBCRMD@BFDDDBFCDE@KA@CBCBCACE@EFEESCCC@CDSAEE@EDCFUDANADCJMAG]iAEDCHGXM@EAGBC\\QA_OMHWCQEEIAEOCCEE@CDIDBFBJNB@BC@GCQLGLEBEBKBAJ@DW@]IUEGOGkG‰GsMkGl]ZgZOZIJKNICOGaOQMMUOGGIIOIKUO}AEQSGSEu"]],"encodeOffsets":[[[120993,25143]],[[120906,25022]],[[121027,25035]],[[121218,25145]],[[121249,25142]],[[121042,25093]],[[120883,25005]]]},"properties":{"cp":[118.11022,24.690474],"name":"厦门市","childNum":7}},{"id":"350300","type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[["@@ABG@DFAFHDDH@B@BF@@CHBBCAAHCAGDC@CE@GBMC"],["@@@FAAGDBNDFD@@EBA@CBCB@DBDAGGA@CC"],["@@F@@ACAAD"],["@@EBMLCF@FHBLEDEDG@CAAAA"],["@@B@A@@@"],["@@BBB@ACAB"],["@@BDD@CCA@"],["@@BBB@ACAB"],["@@DBFAFCCCE@ED@D"],["@@KDADDBDADDHCBA@CGA"],["@@T@BA@AECC@KFG@@DB@FA"],["@@@BDFBCDDDABCACMB"],["@@@BBBF@BAJAACB@@ACCKAGDABBDDB"],["@@FD@BD@@GI@A@BB"],["@@@FBBH@BA@IF@@EBCC@CDAACDAAC@AFBD"],["@@AEEBCCEAADDJA@A@@FB@FAF@@BBBFGAC"],["@@FBDAAAC@C@@B"],["@@CD@BFBBHH@B@AC@AJ@CCBA@ACCA@CDIA"],["@@HDBCGAAB@@"],["@@FHADDBDIAGEACF"],["@@@BEBAFDBJLBAAGH@@CEEAMGB@DBD"],["@@OJ@FJAZK@AAEC@MF"],["@@ADBFFDHABEAAEIA@E@BDAB"],["@@BHFBBBD@BEACGCDC@AA@GF@B"],["@@ADCBBBD@BC@AAA"],["@@BAACABBD"],["@@@BBDAFDBDBBDPI@C@CGEIAGF"],["@@RDDAACCACEE@ACAHIFBBFA"],["@@YDI@SFETDJFFBFOR@D@HDDD@JEHADDBHDHDDD@JADB@HBJFHFBJEDEBIAECA@CBAFCFBBBABBDDBJAHCDEAQBSDIJER@BGDEbKL@BDDHDFDABEBAHBDED@FBFHHDPAFABC@CECA@AAFGEEEAIAIBEFCACEDQ@AMDCC@CNSCGDC@AICGAW@QGA@ABBHADCDGFODAB@FCD@DDFABKDG@GDIDGAGHSJ"],["@@FJFFFBH@LCJHnBBDTJ`ANLhH@FFD@GDCLCHDFHDBB@DKDABBLHNBdCFGNHHGFAFAH@JCBAAGIOIGICOMGEAEBC@DDA@AFDABBBJB@GJ@FABCBGHBBCDGACCAMAACFSJIJADEAAI@GBEABMEIEOIS@IBG@GNQHENEBKHCAC@AAA@GJAFABC@CCMD@D@BB@FFADOAGA@EDEHIAAAAATSDQNCLQDAHAJDJEJADKDDJHRPHDJHBOJI@ONSHM@EEOBGAAECCCE@IDA@FMAEKUC@MDKBCC@ADCFK@CEIBCDAHBB@FIMIuSqYEGOUKkAaBELCJBNFD@HE@MDCpMPAFDDBXEHKBC@IFCBCAKBGPS@OJG@EDAFAFBBJCZBDD@F@HATIHATBJBFBPAFCXgnkHGVEN@HIVGH@PHF@BAEIAIAKBMACCCYIIEIA]BGACE@IEAQDMHGBKEC@EFI@EAAEFI@CAC@EFKBKDKJMNEDGCCGAEEIMCAC@ADEAYQGMOEEB@JED@DDFADqVIFEBWCWOSEQ@ODGFOHEDEJcZGJCHBLAHEDMCEGEIMECC@EGGAIAAEB@CJYLOR@NIN@DCDGAMGECBAABEFCHEF@B@JHN@FCDGCeBG@EK_@KAKIAIKKECAAI@KHMEEAEBCL@BC@GAAGAAGGCAGGICUICFKAE@@K@C@@HBJALGDEFKBCDBDHD@BCHCBODOLADFDJ@ZIHBDDDD@DO\\EHBDDDJ@HPLFJJFBTBDB@DAFIFG@©FMQSFSNGNUHKJM\\AVBLANDPDDFFB@TIRCJBHJPXBJBbDHLHBHU\\_EI@GAIIEASBIAACCOAEEEOIKAKDICE@AFBNQREH@JDHHJFDBH@LBJHHDNDBLGFGBEBAHALDFHDDDHAHEHKBMAOFIBGCIIC@Q@IBK@GDG@CCCGCAiSGAKDI@MIGMIE[CUBACICBKAGGGQAECGIC@ADDH@FOBE@BGCACAIAEASBICGBKCEBBHMEGCQECCEKDQ@AAAMAKBEAGEQEICGBEKWYCBM@IIEGGC@ASAA@AEC@BHC@DJCFBJOFEHEBCNDNKJ@BBFFBL@DFHDBFFF@B@BECAFG@@EAA@RAHBBF@@FEFBBHFBD@BCBADAH@DJRLF@BYREFGCGGCAK@ABCBEQA@CFIFAHGBBHFFTDFFBJFHKPDHMDSEG@MFEAMOEACBI@EBIJA@CAAEA@KNA@OEI@IDCC@CE@A@@GCB@ADGAEC@AFIB]@ACCAEF@BS@BLGNAHFHFL@FELCBECCECIGKA@G@ADAHBFFFDJDDN@ABIFBZJJDD@HQJ@JAFCBUNGLEBK@AD@FJRADSFEP@VADCBICMBA@AJILERADDHNTFNJBBDDP@HADC@KCC@CB@BJDDDBFADOFBLEF@JJH@DGB@BJLJFJPLNLLBBCD@DFFJDZNBR@DABBJjpBLLFBHLFADADFFHPEF[LCBABJLRL@DADEFFFCFDHPNJEVLJMD@HFIJ@DBDFBFAHODBDH@NDBHBBAFKBCHBFBBHAP@DDBFCDBCN@FDBD@BABIJCJGFAJDBPDFdD^EDCLIGEAA@AFCNATBBIJEDDB@@GJCF@FHL@TPDA@MK_BCHAF@FFJNNBJHDHAHAF@DDBDANMJCNAJDXJVNNTABGB@BPJFHFAX@BCFGRKH@FABCNCD@PHP@DDHA@EGKBAD@FFFBJJLHDFDDDHDAHFRDDBJBBLNNJPJDH@HH@HFDLDDABC@CCAE@CC@G@CFEDOAECGCSBMPHBHDDND"]],"encodeOffsets":[[[122386,25872]],[[122237,25718]],[[121933,25635]],[[122329,25582]],[[122027,26000]],[[122033,25986]],[[122061,25979]],[[122434,25772]],[[122266,25758]],[[122516,25833]],[[122474,25841]],[[122480,25849]],[[122461,25848]],[[122461,25821]],[[122449,25855]],[[122450,25871]],[[122423,25772]],[[122463,25792]],[[122389,25759]],[[122350,25860]],[[122207,25920]],[[122233,25935]],[[122120,25960]],[[122130,25957]],[[122231,25718]],[[122143,25765]],[[121875,25778]],[[121906,25704]],[[122339,25802]],[[121825,26342]]]},"properties":{"cp":[119.007558,25.431011],"name":"莆田市","childNum":30}},{"id":"350400","type":"Feature","geometry":{"type":"Polygon","coordinates":["@@A@CFUPGBQAQKC@EDCbADKF@FARCHIFEBIAEIK]IEK@O@GHIXEDCAOOEAGFGNI@IAIIGIAGLSBECEECIAIDMAEECIKCGEGEOLIJIHM@EEEKKGQCOBGF@JFF@HCBODOJIBMMGCO@QBKEQEEGE@IDOKKCQBGAAG@GHCHCBCBEAEICKGKMIGE@EDEHGHC@MCG@EFEHABC@CAAGWCAA@EFCBKJAFEBCLGDIIMCD@HADGIEACCCMIE@IEOAC@CHC@CCIBOEGAMOEE@GBGFC@AAAEAOAAEDE@@A@GBCJC@IDGFEDE@GBCNBFA@AGGBCHEDIBALRD@FA@IMgAMEGECWAKGC@M@WCEC@ABCACK@EDG@ACHE@AKCEECCCM@CBAH@NHJ@BECEHQFDFALD@AFCAGH@HG@CCCJADEF@AEDEFAAAC@BCB@BCB@FNDEPAPHTDJNLCLBDABADMBOAGBECOCICCGCAEDKGEAA@MACOGOMCEQGACMSYGCE@KAGBAD@DAACCACBKLULK@IEICI@EKIACKGCQEEBCAEEAAYAA@@ECAYBSGC@MBUMIAEBIFUdMJEFK@SOCAIDO@CCBKBQNMDEBGACC@GBKFMNIHINC@EEEBCNEFI@SEMDEDADFB@DABQAIBCCABICC@KFCFQGCEGR@XBHFJDPFPBBH@HHRKLKHAD@JPRPJNJlAJG@CEMBcGKLK\\U\\YVMHGNGTKTQJOBECG@GC_UOIKAI@GBGJKVBFLJAHOPIPCBKBI@ODOHEFCPKTEFE@GGG@QGKIKSGCA@@HIH@NGNBFPLBHABQGGBCNEBG@GEOCO@CC@CHEFDHCFC@CAECCKEOISoKgIG{M]@EHBJTdDJANCN@TEjEHACBSAGAASNCVGPBBJFDDATEDGf]FM@KICQBMAQYEWI]OQCM@MAWKKMASECAKMOMYLGZFPBJALQBIEMg[SQaQCMAQGKEIMIIWMECC@IQU\\AACCAKCCEIEIFQ\\EBGAACEEEAGBBRDN@TSbYXGLCXOPwNQAAAGAKAK@CPKP@BDBHCF@BLG@AD@FABG@@HE@KCCBEB@DTNBZ@FOZCBA@A@DOCAQRADBDPFFHLB@FMV@D@FJFBD@DADKLBLBF@HENQRW`KhC^GPOHOBWCUCQGKGeGGJSFKJQBOAWIWYO[CCOGGKM_IGODMEOGcGUNMPg\\INF\\FPJRLNAFIDSA[OQGOLGjA`CJIJOHQFYTMDUBMVEDKAOPU@GBCFAZDLCJGF@VFRDFAFBDFFEBK@ABDHSNKDGkIKGCKAGDGFKDGBMOIEQHgJ]NG@IEMM[Q[WK@GFGLCPB`CLIJOHwFWFOD]PIHFLCPDBLDTJDFBRDDFBTNPFTPJLLBDF^RLLFFBPANCHADIH@JDHGJ@FDJAF@DEBEHBDABB@IFO@CGC@CCC@EA@CB@AAEACBWKQAGBCCADBDHFGHCAGOE@C@ADCFUDIH@DDFHFAFBFBLFD@BE@AFDDABEACD@DB@JB@BGFBF@@EBAACCF@@AAAG@IFHDD@FNCNGNCNVN@D@FAFEF@BDJHHAJDFFDbHDDDL@JSN^DBBPLBBD\\JHFB@@DDJFFJFRLHPFN@DFPJL@HDBDCFGDFL@PBJFBLAHHBJ@LFNHD^CBE@IVGJBFDDE@GHO@MIYDA^LL@FA@CDAFANJNBFBBJNNDTMXBHALBDDBAJBHHLFFFFNDFDDFBJ@JBHFFFDBDAJDL@DMAUBSCMNCAIB@BHNEBMDCFNJFJ@FCDK@ADED@HQDBJ@JCFMFONIFQHIFGDAFADDNDDH@NLLjFrFN@PHNEP_BIRIFGJadGLGdFZNNRHNJBHXVLRFNANINKVGZBbHhRXHFPHllNFJLh~X^``VZh`NFRLTHLDLBPATBXGHEPEPbRLRFvLRFJARAhMTD^TJL\\LTB^@RCRYHFJRDNX`RR„fXJPBZFZPLDDDB@DFPLF@B@BGAGJGPCNCHDFJDLDBD@JCNINMHAHBJFPDPNFDN@DFD@HKPGFEFCDEFSHIHORWJEN@JGRCHCDCVGDQDCF@JDDBFJFPBBPFNNJ@BB@RDJBFAPGNDJLHBDAVCFG@EAEEG@@FDTBFFDFBJ@`SNEHAFAL@FAJMPGNCFEBCNHL@JBPAHCLBFEBIGK@KCEBK@ADADBRCFC@CBGNOLANNPBLJHBF@DA@CEGQQEE@CBCHCJLFBHCDCDUBEGK@ALEBACMFMHCF@NNZHDHFFDDHC@CGQ@AdAFBBFLDBAAGLCFGFCLDDABCACBERBHEBAEGAEOEAG@KAEASAAEC_EGCCECIAQBE@IBCJILCRLFBJ@PGD@D@HNFBN@HKFCF@LHHADCF[LaJC@CBAHAHCX[B@HBDAHMLI@CAIFGBGBEPKNQFMJK\\S@CGE@QHIBGIKIEIICI@KCIEGGOKEOCCAIMAESDEAEECKKSAAI@ACAEDEFCP@HC@C@CKIBCJCLAJIDFNENAJC@IHGICCBA@@ABCHADG^ATBDA@EAEMGBGHOD@TFDLDBZEFPHJNHNDH@HDFDJAFEB@BBAHDDDADAFKD@TFF@TKHNLHFBDAP@XJPAFED@FHDALERFJLTHHADABED@IEDEEEAEAACAACVK@BCF@BF@BABCAICEECAKLEBGRCFCACGIO@GEGBCGHEDYNCDCBKGQ@AFANBBCDGBGEIJSDDHJXJHD@@@EBGB@FFDBDABKBAXARJNTB@B@LEHMLFPCLFB@NIJJBD@FGJBDD@FCJBF@DAJIHAN@BA@AKIU[@KCC@EXQDC@UEI@ED@DED@NFF@DEXHF@D@JEDEAEAACDA@GMC@@AJQIAECAC@IHUDCDAFJDFFBFBFANGAKBEPMCCEC@ICA@CBELEBQDCB@HDD@HEL@@EHKBGEI@CBCFC@IJ@JDHGFALB@GFEEG@GJ@FCR@D@DE@OBAB@d\\F@FCB@DDH@BB@NFDHBHCFBLG@CFCHBHFJBHDDFHBHFAN@JNFF@DEFCRAJ@EM@A`CNL@JEDAFBDHLHJX@DALKDAVJBF@FGJ@DTLDADKZATPD@@@@CESICECCE@KDGFCL@FDL@@FFHB@BCFSDCDANDBEB@NJDHVIFKDCLEJ@V@FFPBf@DCHADBBJBDDBH@@CCEHOAICCCCC@OPCDE@IGGI@OBKFEFIDCBGFEPCFCDQDCZNFFJDBFTHRNHDFADGDALANMBGPWFBR@DHDBNBNAPKBEEK@CHEDAPFdABCGIDGFCBEFGHCFDD@JGBEDQJBLCHBBADO@GBGJIDEZ@DCLQRWAEEECKACGDC@MIKBMHMJgBCBEGOKFELSJGEKSL]CAEECE@@AAABAACDEACCGCIJSCCCAOHC@@KACDE@KEKB_HMHEH@THDA@ECCBEEKEGBE@KBMFEDAF]BEHAHDDAEMIGAGPMQEWTI@mGoA[DAABGBGJOAYIIAEFSG@@A@KHEDWAGISFC@EFECECEACLKCEBGGKCSBEH@BECIMQAEBKGGFADILO@AGAC@BD@BIPO@KDMBOJGAIGACBED@BEBGDEAYEGO@IGABJ|ADEDEBKP[VGDKMU[DIACM@CE"],"encodeOffsets":[[121252,26511]]},"properties":{"cp":[117.435001,26.265444],"name":"三明市","childNum":1}},{"id":"350500","type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[["@@D@ACC@BD"],["@@DAJBAEEAG@AFDB"],["@@CB@F@DDBBDH@BAAGEGC@"],["@@BAAAEBBBD@"],["@@HBDAACG@A@@D"],["@@@AABB@"],["@@DDDACCC@@B"],["@@@A@B"],["@@DA@AEAADDB"],["@@B@@AA@@B"],["@@F@B@GA@B@@"],["@@MHIBEF@BJFBDBFCJ@FFFN@DZDJHDR@BBBDFBDBDAPKVIAKCG@MEKAAI@ABADE@IGBECGICGDC@EAIMEA"],["@@BAAAE@@BFB"],["@@H@AEBGHAFBD@AEICGFE@BFEHDD"],["@@B@DCJ@CCGACDC@@DDB"],["@@ACA@@BDB"],["@@BA@AC@@BBB"],["@@GAADLJH@@EDCAAK@"],["@@BBB@ACAB"],["@@@BDAAAAB"],["@@BBBACA@B"],["@@FB@CC@AB"],["@@DBDACAC@@B"],["@@@BBA@AAB"],["@@BBBAAAAB"],["@@BB@AAA@B"],["@@BBFBACCCAB@B"],["@@DDFB@CAAEAAB"],["@@DBAAA@"],["@@@@BAAA@D"],["@@BDBAACAB"],["@@BBB@ACAB"],["@@D@@@AAAB"],["@@BBBAAAAB"],["@@BB@AAA@B"],["@@D@@AA@AB"],["@@@BB@BCC@@B"],["@@B@BA@@CB"],["@@DBBA@CC@AD"],["@@BA@AGABFD@"],["@@@AABB@"],["@@@AA@@BB@"],["@@HC@AC@CD@B"],["@@@BBBBC@ECB@D"],["@@AACAAEEAAIC@AJBDDBBADJBFFBD@@AAABAAC"],["@@@AA@BB"],["@@@A@ACB@BD@"],["@@ABBBF@@ABDD@AGIB"],["@@B@BGAECCAD@HDF"],["@@@B@BD@DA@C@@GB"],["@@@AC@BDBA"],["@@DB@CAAAD"],["@@B@BAC@@B"],["@@EDBBFA@CA@"],["@@@FAB@DCDBDBBBAF@BA@EBCHA@AGGGBAB"],["@@@BB@AA"],["@@A@@BBA"],["@@ACCAEB@BNF@AAA"],["@@BAAAE@ABHB"],["@@AB@BD@DA@CAACD"],["@@BAAACB@BD@"],["@@BAAAC@BDB@"],["@@AB@BBABBBAAAA@"],["@@ADDAAA"],["@@@BB@@AA@"],["@@DBB@AAC@"],["@@D@AAAB"],["@@DBB@@AAACB"],["@@DAA@AB"],["@@B@BACB"],["@@BBBACA@B"],["@@@BAA@BD@@AA@"],["@@BBBAC@"],["@@D@AAAB"],["@@@DF@@CCAAB"],["@@@DDACA"],["@@@@D@AAAB"],["@@BAAB"],["@@FDD@@AECCB"],["@@BBD@BAG@"],["@@BNCHBDD@BEFCB@@DHBH@DCDBBACCFGBKFEDAZAFA@AAI@EBCFABCBOHIDAHDHA@CIMAG@MFMDEH@FC@E@GCEEAC@@BABAACEEABEBAFIGGC@CBCAAABG@AEEQGC@MGUACFBDHDJ@BDADIHSBKDKHKFY@gCWKOICE[sGGGAG@MBWPOBAHGF@FWNAD@DDDN@DB@DEHBDHBd@@BC`I\\CHCDKFABAJDLNJTFBHFBLEDCl]NEdIJCNBPLDJAJMNBBJAF@BFLFBFAFEB@BBB@FCN@FRBRH"],["@@D@A@A@"],["@@@DD@@CC@"],["@@AB@BH@@CAACB"],["@@BBBAA@A@"],["@@@DB@@CA@"],["@@@BBAA@"],["@@BBBAAAAB"],["@@AAABDB@A"],["@@DDJARBBA@CEABCFCNCTFJ@FEDMFAFFD@JMJGNMLEHAD@BDAHCFMNARALDDP@JCDBTPL@FENIVcJEFAJBVNNAD@THZADB@FB@ZBBBFFDBFARFHDDLJBFLJ@JDJFL@VKLKDADBBDIDBH@LDFZHNTBDRHDFPNPHBD@NBBHFCLBFHDDDDJDPAFBHAPCNABCBKAKDIMSCOGOBCFEMA@ADA@ADD@BBEBCFBFE@CFIBDD@DGHG@BHED@BKCEBECGRDFAFI@MGG@AB@DDNDDFFLD@BGFBDH@FCL@BDAD@BFDXDN@D@LHXBFDFHBNNh@JEBC@KQABCJGFADHH@BEBMAAD@HCFEFCH@JIDAD@H@BF@FCBBBPBFBBD@HEHAF@PFBNFHAPDJ@DGD@DBDFP@JJFDNDDFBHJBC@GDCJNCJKHADEFIBALED@FBBXDBHDBD@BAFGFEH@NDD@HGFGFCF@JHLNLHJDBFAFADGDGD@HBHHBRALDPLJCF@FHRFLFRAP@HDNNJAPIPCDA@GEE@IHEPARDLHFLFFN@JGJIPKHFHFLDDJFFNBJCJBFDDFAFKTBHHJJJJBJ@HMHEFBPPDBFCJWHGP@L@JFL^FJJBFAJEDGBQ@ELEBCDaFCD@RLRBHAVODEB@DKIA@GLEBAJYFI@CGEE@KMGCKFC@CK@MCOUW@EFENDLQHETGFIH_@IDGJGDGBQAA@KHURQJEHALFDAB@HINIXEBIVOBKLIJID@HEHKLIDGBC^@HDDCDE@CQKIKBADA\\KFEGOEEBCBCKEAGKEAKioAIBA@CAQYMICEE@CDCAAKKKMIOIEEECGHA@CIG@E@CFEAKPEBCAECCIC@ADAD@LDD@BC@GCOACIAEMMSCGBCFQJKBIB@NAJDDABC@UFOTEBCIQ@EBCL@FAHKVMDABE@IRI@GCCIIAYJEBAM@CCCIGI@ABGDCF@B@HLDJDFFDDADGBIEKEGBGHMAKT@@AFEDBBD^@JABED@BFCH@BDA@HB@F@@DDDJCJ@PFB@LMB@BFDBB@JIFAJ@DAFBNPFBNEH@TFNCCGLOEGAIEEEAMAEEAGHABGJEFGBBDRDABAL@DBHHHDFETMFEKEGMAGDKDA@AACGEAAFE@EE@AABG@QBB@FH@BEFD@A@AEEAEGCCEK@EAAE@ALICMDMFAFGPEAIDECID@AGD@BFB@TB@BHDFHJJN@DAXZFLHAJDRFHFFBLANBBB@BCRBFHJhPAGFAHDLAJDTAFBJBHDAHF@PA@ECGBCD@HJFDRBHHBHALJDBDPADAZBNCLFDCJADKRCJIRCBGEE@EDEDAHGF@bFHADOBCVG@mBKEAKIGCOKYAAE@MBSBIFANBFGRCBCAEMGYIEEICSIG@KDUAEE_GM@qST]FGJGJ@TBJALEHMAYHKVKJAF@JFHBHAPIHAL@HBLHJ\\BFDBP@DBLJRJH@JIJ@BC@CIMIKIE@QEEAMHG@CCAI@@CDCBCGAKAEFG@EKAGBMLUNID@HDDADE@OD@PJFBDCL@JAACBC[UII_C_KCD@BFBABGBƒ\\G@GAIE]cAEBIDGLADADQBCDARBFCJKDCHAJBHDPDP@NGBABMHIBCCEWGaEKCA@DDABA@CCC@ABADCBGAE@KGIASF]FMFGJIB]FWAGCEEEAMKS@AKCCRCDCAACAAGEEIAGLKJIHMDMAIGCCWO‰UGI@WCGCCCAGBEFATAHCBYDYDKHAJHV@DGDC@CAMSIEUIkGECCU@GJgFEJAHCFIHCHCJ@FBRJXIRBHF@DCJ@BHNJDV@DEBCGSBODKDGJEHANANBBAFBHENBJABAHBH@@CEE@CDCEIDE@CCCGYEEIAGEAE@C@EAAIABEGGGCABKJGCCGDANBBCQOC@@CEABKB@FBBAEGAEA@KCAGCACBADAAAADABCEG@ECAK@EGGACEGEUEM@IDGFIPCJMEKGCGE_DiDIFIHCJ@FLBHDBLBBA@CF@@FBBDABCBmIQ@MGUCGIGQAMGCGBMBIAAG@EBIAKI@COGKOA@CBC@GSCGIEMEYCUMCAIDCDE@KAEBADRRC`AF]NEFALDHHFJBDBBF@FCFytSPMDƒN_BeAMGYUEC_IƒcMIEEACCTI@ABALAFKFKHDR@HADA@IMEACACJ@DFFDDFPJBFFDRGXPNB`[RADBH@FWNGHCDBF^jBHINCDMBCBEVCD@FFFTBDCD@DDFTEF@FDFDBDADAB@@JCHCDEACCAEC@QNADHJBFGFDHGBGFKFGNEDGXEDQDIFG@SCGGEAE@CDCBEACHE@GACKEAG@EBCBCJKPAFFFBDAJSHGHKDSLEH@FFNLBBBQVMAIDCCC@CBCFCBIBM@IC@EKAM@KFEASKKGKSE@ABqWOSEBCN@TAFCBG@GMECGBEFGNKLCHBRCFEBKAWHEAAOCCGBYNGACE@EHETCPIDGAECAQDK@KM@CBCPMAAKCYKE@GGCBCHGFGRGJSFWIABELIHCDG@G@ECACAKI@GHIBIJAFBHCFIJIDAABIAAEIGEAE@ICCCBKLMAGEEAKDULG@IEGGHOIIDC@CIECGCAIDKB@DCD@LEFE@AACICECAQIE@IJBF@BCRADC@ICEDIDAHEBOBKFE@OCOIGGEMCCECYGMEGGEAMBIJEBOCINKAC@IJGFGBOAENIHAFBD@FCJ@J@FBBRJFJHHBVCDW@ODGF@JEN@LJJJPJHfNHDFFXL@DCJBJ@FFBR@JDHALIHIF@JDDD@HJNJBPAF@FXDFHBZPFF@JAFYLLPADGN@VEJCDE@KGGKC@QVGFO@SNGHCNA\\BXABMJUHa@ADCJCBIGKTAFDH@LMFK@IBIFCHMDI@EDON@BDDADEDO@ECEBEF@FDZEJPLFFD@F@@FHFBHFBFAPGF@B@DA@EB@LCB@DDJAF@FFJVDLCNGJKJOHDf@HELCD@DLJT@HBTPRFVLLJFRHNJJ\\LFD@FIFBFNDLR@JCPDRON@HPRFJBHHJOZ@JDL@HDFDDLDDFBNFNHHLBFDGJELALFPBN"]],"encodeOffsets":[[[121802,25820]],[[121740,25685]],[[121899,25675]],[[121684,25454]],[[121623,25425]],[[121623,25333]],[[121555,25259]],[[121539,25232]],[[121508,25224]],[[121270,25180]],[[121098,25050]],[[121068,24987]],[[121114,25038]],[[121002,24979]],[[120996,24966]],[[121182,24971]],[[121184,24974]],[[121622,25426]],[[121505,25152]],[[121225,25095]],[[121247,25105]],[[121281,25132]],[[121310,25121]],[[121294,25099]],[[121308,25078]],[[121313,25080]],[[121224,25052]],[[121217,25047]],[[121312,25017]],[[121314,25021]],[[121048,25070]],[[121078,25061]],[[121087,25044]],[[121071,25039]],[[121068,25037]],[[121054,25036]],[[121052,25033]],[[121055,25030]],[[121034,25014]],[[121843,25475]],[[121818,25469]],[[121820,25470]],[[121739,25478]],[[121837,25804]],[[121861,25787]],[[121838,25757]],[[121820,25703]],[[121800,25650]],[[121798,25647]],[[121880,25681]],[[121897,25672]],[[121871,25658]],[[121870,25623]],[[121876,25629]],[[121885,25631]],[[121885,25580]],[[121891,25561]],[[121897,25564]],[[121836,25535]],[[121815,25501]],[[121685,25431]],[[121692,25439]],[[121642,25448]],[[121650,25451]],[[121624,25406]],[[121606,25376]],[[121609,25377]],[[121549,25420]],[[121535,25397]],[[121552,25256]],[[121505,25148]],[[121483,25130]],[[121401,25127]],[[121359,25192]],[[121301,25152]],[[121289,25160]],[[121259,25116]],[[121278,25108]],[[121282,25109]],[[121304,24997]],[[121255,25103]],[[121040,25021]],[[121071,24986]],[[121034,24979]],[[121012,24979]],[[121005,24963]],[[120979,24957]],[[120982,24961]],[[120987,24961]],[[120544,26125]]]},"properties":{"cp":[118.289421,25.108853],"name":"泉州市","childNum":90}},{"id":"350600","type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[["@@@BBDH@ACGA"],["@@@DD@DA@CAAC@AD"],["@@@@B@BAAAAD"],["@@BBBAAAAB"],["@@AABB@@"],["@@ADBBHADGA@EDC@"],["@@@DBA@AA@"],["@@@DDABDD@ACCCCB@@"],["@@ABD@AA"],["@@CB@DD@DA@ECB"],["@@A@CDBBDE"],["@@B@BAA@AB"],["@@@BDACA@B"],["@@AFB@BCAA@@"],["@@PHDAACECC@EAAB@B"],["@@AACBHFAC@A"],["@@BAAABAACEBCBC@ADBBFAHB"],["@@BBB@AEA@@D"],["@@CDAHFABBF@BCFBFABAB@DAAEBAA@IFCGIAA@@FAB"],["@@AB@BB@DBHCCGEDAB"],["@@FCFDBIFC@EGBCFEDC@@HB@"],["@@D@@AA@AB"],["@@@DAF@LBDB@BADG@IDAACDA@AACCACDCF"],["@@BBD@EC@@@B"],["@@BACA@DB@"],["@@B@DA@E@AGF@DB@"],["@@RKNGXaFAH@TDDAJEESBECIBEBA@EAECAE@HMBKBWAMCKGIBKEAICCGCSEKBQJgDENEBAAKDML[DM@ECEKCBI@CCGCMCCICKKMEIGSeCAQBOCMDAACABK@E@ICIIEBCNGNKNGFCFG@GEECQBEHGACAI@KHCP@DALGFGDOBCFAFBDADGPGBEF@H_AABIAGGGBADA@@GUDKLSPMFCRAFCLQZIpDXAVAˆODC@EGiBQCKEGGEAEBCJEJDTBVAJAPMDEBUFABC@]B@XGJGDICQ@GTSHKBOAMCIEEKEGAcBA@AaAEECGCQAEKCIGMSGEGEcKKAM@EI_a@mIKIG_QWQa[UWOUAEC[FaBSCMQ]EOIIUKSCs@ICWcmeeeIUS}IMeWMA…BqDYAWIMK[uM‹BGDGJKDGAMCGgeWe]‰IOMGK@I@UJULqHMCcSc@CAO[GU@IBEHAFADCFO@QCGMIKAiAICGIEI@aBKPOBUACSUWGM@OBIAWKyWM@G@SFI@OA_G_CM@QBGHGJEXiIßGAÀBJCHIFEAIBICGHK@GDKJMRIEADC@CAG@OIAAERKVKBUAIHIAABEJKLEPEFE@GCQFEDCJ@NBFEF@DBJCFAFDFAJBF@DCJ@XCJILE^EHENSPIJBFCL@BRPEPCVEJAHABEDAHABYHIFIBICEIQ@OFEFEJBBDDDBZACFBFBJFD@BABIBAB@DDFCH]LADDFBD@HAFEDCHBDHBFAJBLHFHBNFFBNCJHNORCF@FBJAFBDBNLLBFIJMFGAKGKHAD@DDN@FKJGHGBCF@DBBLBDBBFBJALDBBFGBMEG@ABCNIHADBHC^BLCJAJBFHLFZBHJJDFJBDBHNHFJLFDR@DBBHHHRHDDDJJJBDAFGJWLGJCBKAGJCJOJ@HU@EAQFANDJF@@@BRAFELDNAVFF@F@FA@C@@B@DDF@DGFIBQEC@GFCnBJLNCFMHADAXYT@FBLRZ@DELL@NATDFBNPJpFTBRIbEPQXEPM^GVC^DJRLN[D@BBHP@JGN`Xv@NA`GTHVXJRBX@TDP@PS\\BXHDdELNFRBT@BMVML@DFJBJDD@PCDUB@LCHMLL~@`AZBLHL^TJ@HHFJA\\BNFJNDJGBGDSCY@IBIFENCTJBDJBLBzIN@NLNbHLXRFHB^BT@NBRHJVLDJF@LHFL@DGB@NKBCDGT@HCJBHZGR@JANUDCJAFBFJPTAPHNBFDDF@BPCFUB@JDFlNTJNLJPNFLGBEMO@EDANHL@LOHAHDBAD@HF\\HLHPCLENCNBFDNNLFTGP@fCDBFCHELMNMHC^ARB^AHBJFFRIžBNJJFPHJFNBbBLFhOfkXEF@HJNBd@ZDDNCDB@LDFPDVAHDLHHHBZFFBBLMLED@BFIX@FBDF@N@FICY@EFEFAFDP@FCBCCC@APMFCJ@NCDGJEJAL@NE@KCGBELSJHDADIBCb@VGNIBAAWB[DMHGTMP@HERUD@HLLHF@DCFI@UHMBCKOZKBE@IEEYOGACEEWE@OBIAIM@GCCICE@GJKJGBICQ@EA@EAIDI@CWKEEGCeMIGIOII@KFM@IHEPCX@DCAUGGEIQIAA@E@IDI@EACBEJGFMPBHAHEJID@LBJMPDFAJINAFBHHNFZHFDDDFNHHPJPDF@LEPAFABGJCFCJDD@BCDQ@AAEJIF@RJDBDFDJBBF@FE@KDC@CLAJCDBDHJF@DCDJJGPHHJFH@VKLCFBHFNBLKDADD@JBFHFFJBBAJBBJCJIDEAGBEJIJAHGJB"],["@@JE@EA@AAA@BHED@B@@"],["@@DDFBBBB@@EECC@CCABBD"],["@@BDD@@CAAC@@B"],["@@BDB@DCEAAB"],["@@C@@FCFBBCFDB@BAFA@AF@DBBD@LGBEDAACEA@CBCB@@ADCCCE@AA"]],"encodeOffsets":[[[120963,24945]],[[120535,24416]],[[120559,24424]],[[120918,24768]],[[120921,24767]],[[120968,24911]],[[120975,24931]],[[120916,24946]],[[120923,24946]],[[120861,24766]],[[120641,24511]],[[120694,24484]],[[120562,24394]],[[120570,24387]],[[120585,24385]],[[120560,24355]],[[120557,24362]],[[120543,24340]],[[120537,24344]],[[120521,24355]],[[120509,24356]],[[120498,24353]],[[120494,24362]],[[120517,24095]],[[120494,24116]],[[120293,24163]],[[120743,25468]],[[120278,24145]],[[120239,24127]],[[120243,24135]],[[121075,24739]],[[120987,24903]]]},"properties":{"cp":[117.561801,24.310897],"name":"漳州市","childNum":32}},{"id":"350700","type":"Feature","geometry":{"type":"Polygon","coordinates":["@@NCDCHMHE@GCIEGCMACSCSUECKAGEU_@KBAR@HDPHJ@VGJGDIBMEYEMDOAIDCSIGKCAC@QBKAEAEECQKEKDMGAACICAEGCGMGGKI@@A@]BGJCPODIAEIOES@SFGHKCCBGCYBELEbeBKH@N@LCBAZEhQBGECAC@AdC@CEGJK@C@OJKFCFAKKBKNEDI@GEEAEAMCCCCROBGBCCEFQFGLGBE@OFKBECAE@ICECFKCENEDEJ@BABOJKJSL]DAHAFCJMJKJBF@AIHI@CAEG@UBM@CAAGJKBEAECEGE@EBCHI@EBELKPIHMJKBIEKDCBAAMFCJ@DABCAIGEAMCIBGGGBE@M@KFEHCCEQCGECMIQMIYEKUGAEK@GBAJEFBNDBBFCBKAA@CBAFA@CCCDCLDDGDG@KCC@CBEJBHEJSAIFCFAX@DBJ@NBD@FADGVEJKFDJVAFADCBNJH@PFNAHDBHAFDF@DEFEDCD@FPJHGHEN@XDHAFGLEPSFCD@DFVGBKRKDBLJF@FAHKHAD@HDDFFDJHNFLJPCHCFGFSACO@ICBCHEDC@CCKAIAG@ANIF@HDD@LAFE@GDAHDDBJEFBFDFEB@J@JFD@JENEFGJBJADDFDJAPGZDFEBBJD@RFDBABE@I@EFDHDHAFAAEAMDOFMJIHGBOMSKEM@CC@MDM@EICEA@GAEECAEDG@KBGUBECAIAAA@KFCAGEM]DE@EAGEA@WBKDKACG@C@BCHCBGFAF@D@LSTONHH@BABEDBLIDDFA@AACAELEDILGBCEKEGAIC@ABAJIBCCE@ACCAAD@HCFEBEEABGHBNAD@HGDGAKFI@GHE@C@CE@GG_UGIAKFCEDCCE@K@K@M@GEI@C@AF@LBHADEDIAKIaAGBCJEJ@RGFCBEEEAGGAIICBEHMFCCEAE@GCOCECAOFGACCCEBECUGSDKAAABSBCJIFYACaE@LEDAB@FCDE@C@AD@JADMDKJAJDH@HCDWBGDABEA@BC@ECC@ADAAACG@AFBHA@IIA@CHIFE@AA@GIBEAYBECIIIBGHEGE@CBAFGBCJNRDLOJCFDTGhCHEDKAE@SJQ@IBMDGHE@ECGG@CFC@AAG@AD@LFAIMY@KFAJ@JBFDAM@MT@@KDEACCAIQGCSDGFAHC@I@AAAEAKGGCEQEGEIWAMQMGKIKCICOCKSQCAEGKFEBECIIAKBGFEAKGCCCDG@CWKIGQEWCQMEGBMAKGGKCU@QFQAMBYNGAOMKEIAODIHEH@LKHSAEEMYFIf]J]DEHI@CEAAK@IAGMKHSCCGKOEIBIEIBGDYCEEBEACC@G@UAAAIWDENIFGFGBI@GGiEEI@CACEDE@ECEAOGIKUAI@[CGKG@IES@MC@GDC@ECEDC@KOCKDEKIEIACDCJGVAPGDADM@EKMBKCQEME@CGBG@EEMHQ@GEO@KCIBOCI@ECCDGFILEJAHADAFBLHLAD@FE@EMOFM@IYmHW@IEIGMEGE@C@AJC@GGWIKEECEGCEAEBIAEIGBAJCFEDGAIAEIEEKGAGG@K@AAABQDA@GVGDC@OAUBAJADDBFDDPAFBDHAFFBDC@CEM@GDCJC@KCGL@FDNPDBD@HHFBJALMFCRCTMLCLG@CCEFOSMCEFEFIBCAGFKHGBEBOCOFGAGNeAG@EAAE@MTKRCDGBOAOPAH@HCRA@KAGDIACRAFIHC@ECIFELILHJADcBOECBGF@DFLAFOLMBMACACGQ@EAOXAHMNKBCBCHCBICQMSGAEICEEYMCDCREDODEFAHCDEJEFAL@PHJJHF@DCPOD@DDDDBJGPDF@DG@CAACAICAGBCDe@OAEEU@I@KFCDELUJCGMIA@AFMCCBCDETADA@EG@EK@ECK@EDCH@LDFFDJDFT@D@@C@SOYBCLCBSK@CHI@EAEUICBKLCBW@GIGKACBEFC@IMK_D@BFNI@QBEDCFE@ME@IBMGEGACEGCIAGEGAED@DKHEAGDGAEC@MAAG@CCA@EDE@c[A@AB@PCFC@Q@EDI@@HFHEF@HKAEBGHICI@@JEDAD@DFJAHGL@FK@GFC@GCA@CDARKFAF@DDB@JFDDDONAFBLMHEBEAEACEEICBCDGV@JBDFDJBIR@BD@HNB@DCBBBFCFIFC@E@WGCFE@MEC@CFC@@FFJ@VCDWR@FDD@LV\\LJ@BABM@GBIJCBE@IAEDC@ACHI@EACIIMJA@KEODKEGNKFA@A@MSQIWBABALCBCAEEA@AH@F@@GCWIGICCITFJAHCHADMAEB@BHRALCDMDCZGFDHHAHFP@HJBDEDQDAHKFBLFDDFBJADABE@@ADE@AULBDDBBBBFFFCFJFC@AFCBGBSGIKQEKFCBEGC@EFOBWIO@CBEAKGGMSLE@SEC@ELCBCBCCBGAAA@EFIBECGCG@MCMGGIEOYFCACKSEC@GPAHNHBF@FCBSA]BCHGBAD@BB@DAJDGH@JIDMBMFCEIJKBIDADLJ@D@DGDO@EDCFBFBDJ@BBLTDLFFFBTCBFJNDBPDLFHPFHDJ@LDJJJJFJLAHGJ@RHF@D[TILENMROLAFAHEHBJ@DKJGNCBGAA@W\\GDGBAB@DIDKbE\\CDGBKGE@EDGLM@EAGMC@C@OHI@EAQKKDIJAD@JAFBRDJDFHD`FFDBBBTBF@LBHPFBFFHABGFQAAFBDADCBKCEDEHKDBHABKCAEEAcB@BHR@DGDCCEECGYGMME@GDENDNABKF@BHLAFCVCDGDEAIKGDAD@DFFRRFH@DCBE@GAKIOAMMKBMPAH@DEDQDCACB@BALDF@LHLAJEFKAGDOBIAK@MGADEFMDOHINEBK@EBGBMF_TI@EAECAECS@EH@FFFBH@DEBUACKGCIHMBOAECI@QAAI@MMOEAAEOEICAICE@CDCRUHCDGDQDIHM@IFQXGPGJETCFEDEFOHGLC@CEM@ECOMOCIEGAGBMNMJIDC@CACKEIGCMDODEDCDBLCDE@OKCEA@EX@JADEHET@NDPFHRJDNTX`PDFDJR^HDHGXHDFDLJDFJVNFLNHBDCJLL@RDDHDHAFF@LFDCHDFFRCDG@GBCDGNM@IAQDBJJP@FCHU@]LGCA@IHGLAFFZCPFRADEJAHNF@RBF`NFHDDBJHVBFMRAdCBIAMJCDBNCD@DFNIHCD@FBJJLFBCFEBAJCHEDALB`APEHOFEJBJINCDCBICEMMGIOGECAGNE@MCIFG@GBMHGJAHFPJjEHAHCDIDAB@DHJ@BOLEJEFDDFDBFJEDBFNFJCTLPPHHJFBL@JDPCLILOPM@CAEBG`]DAF@JFLFABCBAF@JHBDDSdKJ@@HTLH@JJBHJFDJ@BCJAFGLDL@PGJBfQRFFFN@JDNA@@AF@HBPCH@HBJFHFBJANFNBN@LCFBJPFDFBNCFDBNFJJJLDBDGV@FDJD@LGV@JPHHBF@FQb@DD\\HfCHONO@GBGDADF^DHCD@DDBDABCFAJFN@HDLJ@LJJHLHBH@DAJGDCBIBICMBECE@GB@HCHGNBFBDD@JJLPXXLNCHDLJT@PHFH`\\BJDDDBFBHDHPHDFJNDD@DE@CDCJABEB@HALRl`FDDJDZVPNBDA@KFEVGN@FCHCDGFCBEGQDMHGHCHNLHNGCMDA@SDKAECG@GBCBANGFOHGFECYBGBCFA@AFCV@FEvQLITGHKHQNID@JHD@HCB@FDHJHBBAFKJGHOTMHIFCHAF@BBJLPJFVJPJFFFL@DDJTJLBDAFEDCJBNFJDLCJAJBFDBNDHFBJHFJDJPLFXFJFZPDFJNFBDADCDIDANJJBTHFBRCHFR@@HJJFJPFH@FFHHHBF@VGDADGFCH@ZHLHFHDPPPDALSHDH@DAF@NLRBD@FCFKFAB@DBDBN@HDNEFEBODCVCL@JBDB@FIXDPAF@JBLFFLHDNFAHEPAH@JHBDALCHIJARJF@FTL@DDDN@LDJFNGTALCLGL@HDB@FEF@LFJHDBFAVFXRLNTMFBVRPHN@HDPCdPFAJCLDVAF@BEDAXFFHBLALFJBHEJ@NFFRF@BADILADBJGLBBBHRFPLDDIP@HBPADCBSBKFUCMFIZKDQLIL@FLHdRB@JAFLFFBDAJBBRBJD@FHJNJD@DCRDJH@DHFNBBFBBJFJBRNJ@FDB@BIGQFEDQHBDA@EEEBAT@BCII@A@EHBDEHCHABAF@DCLFLCHFNKJEHNND@FDF@BGAABBB@FC@CHGD@@DHBLBDHBFHD@RSHAXB`HBB@L@F@DBBTGXFLCTBHCFILKBEEIBMJENFZAD@HHNBNZN@JFF@JIJCJ@LBNPPZHVLPHBHAHFH@HAFCLKDE@KCIAG@KZEBE@O\\[RG\\GHE^@"],"encodeOffsets":[[121647,28921]]},"properties":{"cp":[118.178459,27.335627],"name":"南平市","childNum":1}},{"id":"350800","type":"Feature","geometry":{"type":"Polygon","coordinates":["@@JG^OPCXExEPGJIDKA_DOHKHEL@\\X\\RNNJFH@^MhIRGJFNPHALCHEHCLBHDJLHlLCTMCGBAL@FAEEACBECEEQ@UHEDICKBYDEHAV@POLBFCNUVANCZSREPGJIDIB_HiPKRH\\PTBJCBEKMIQEOE[JMh[NOVMdHPHNFPCJHN`HLPHDDP\\XZXJPBRALITEHIfHLHRHVDXDPAPGHOD]LgX_RQFM@GAEAKLKBC@CACIE@E@CNU@EKAEGOEACBCRQDBCPB@B@DAPY@EAYSM@CFADALDF@@GH@BA@EBCH@AKE@GDCA@ALODOL@LBHBBBRBxMPODWHKZWTa@SCMAQHAFBFFBDHBFAR[JEJFDFLDDBBD[BRV@JDDNFJXNJFJHLBRDNbRTRh\\FNAJKRIBOAYEKHNZNPBLFDBTLNXLNBN@RD^PXJZFBRANBJBHLJN@^EHeFCBSCCIEAAHODUTMBBBHATBDFGFi@SDMBMCIScAIFG^@|NJHLhTpPJLFDDBF@DEDGDECGF@DDDP@PDHFH@FADMHARHBAAGOKAEHM@MJG@GB@HDLTLJRHH@HHF@FELSDOFEPGPCJ@LADAJOPOBGKIAELUHIHAJ@LBPJ`VHDH@FDPARILSHSHMNGZUV[L[LKdHNAFFF@@A@QGaIMQOIOC@GBKLQLGGG@AAEOCOEIA_HQDFRHDELED@JDBAAMEOBKFKHIECKAGGEMAMCEKCEGAICK@EBGNUGIAGEIOQ@GPMCQDO@IKQMCAEJE@EEC[KIIGMEQKIUKQESOGAS@KI@CDCFK@GCePGLIHIDMCKIUEEE@IBCCA@KDA@@FCBA@E@OHEBEAAGGE@EE@C@EEOKS@AC@EJWAEC@KFKNAAEEAYGGKGGCUBOCCE@KCAMDCC@YAcIM@GFElWPeEgAKAaEMGIEOIIAMJEQIEGA]BQA]BGDMNKNGFEDCAeDO@SHKEMMECMAMDKFODKG[GGEC@ABGCGBKPK@MGCB@FNPAFKHMEIOMKSIkMCE@IVADEAOE@CCAEGMBOOSEIEAIBCDMVIBQ@YHAGDI@GHSDCLA@MHA@CEKKGE@CIUKGIAQ@MASA]EGWQGKMaMKM@yJKAIAACSIMDEFAJ@JDZE\\IHMCEIAMB[EIGGI@]SGKAKBY@_K}NKDG@KVADC@OCCAIEI@CNKNU@AASEQKMcFGCAWT[@OCO@SAWIQKMIISG_HMBu@_WHM@IGOAAC@M\\QKCID]HUN]FORWFOJaAQESIoMOEASCMBK@FK@CCEKXURCLE@EAKGCHCF@TIBABKVCFOHABO^@DHFCLBBTCBBLHDF@DMPIROPOT[SKEA@@D@BHH@B_NIHORINGN@FBLCBM@[XCH@JBDHFNHIXEHBFjjDHFHBHPJDDDDCRBJFDFBFFJDBBDREJCLQZIBIASDGAQQMKQS@@MHGJAFCBM@I@KEKDGAI@CCAEAEECUHICQBQ@UEEAAEC@QAEEG@CGAGA@CBKBEHGDEAE@SNGBGIAKIMSGIEAE@EAEQCAEIACAACSAKEOGG@KLIDIFGLHHAHFL@JBF@DHFBHCFGBAJIJCFCHAV@FDH@LCFSVEPGFE@GEQD[KI@IBGFCLANCHEDI@AHABQDEDAFDFHBIJ@BFHF@CH@DOPIFCFCJCNADC@KGE@I@EFBJMLAFFRAHHHFDJBFDJ@NHXJFF@DILI@ALMAEBEFAHDNIHDDHB@DAB_@ECC@@ABGACI@GFGCOSGEBE@GCM@MCKGGI@CACGC@@JIGSIGIOGIKGAYEY@MB[MK@IDOJ@DBHJNNNJD@H@DGDKBMCECCAMHABAXADADIDELCDODIPGXGBMEGKWUGEQSGAOAIF_DIDGCIBC@CCEDG@CABIGKA@GFBFALCFA@WBAEEAEPCDI@KDCFEHDHABABGEE@@BDBBDCBAPCFQNMPGFGBA@SQA@KAMHG@C@CNCDAH@FC@A@ICA@CFAEEAGD@BMFCCEBCCAFCBI@I@GBI@UHG@EAABAFADQPABGAKRCJGDG@EBEL@RDHVJDADGJCFODAF@JFZKH@FBBBAHMTedaFCDBHIFAFAF@NAHLJRCDFBJJBBFBDDBDAFHPDLGDDFJH@DFADKJAD@HO@@FFDAHHFEFEJIHMFKBW@EBAFBPFHOLCFAD@NDDLAJFDHAJCNEBCDALCDC@OEGBEHKAADAHAHBBPD@DCDGFCHJD@DAXBFC^PLHNFAHCDGDAPFBAHDVZRDPEBBHDLDDBDLHJFPJH@FJJBNEPALFLDBF@JCLIJ@DBFD@NBBDBF@HEDIB@HHJHLNDNHP@DEDIB@DHDBD@LEHCFQD@@BHLDDNOZ@HFJZ\\AFIX@HBBDDT@JHDD@HAD@HDLADIJ@HIRBPFLFJABMGGFAFDTCBAFJHFHFTHBVDLHCHBD@DAPBTDLBBDBPCLBDBBHHHDJ@DKLBJGJ@^CJIFGBED@FNTGFCNDBP@BDDLFFFBDAFGD@BDBTKHAHIJ@DJH@DCHBHH@@B@BQLHN@LFBBABIFBATBFDBFGHBLKD@D@HHNAF@PHDB@HAN@RJNFBDDCLBFHLJJBFDHP@FBBBJCDFH@JFJBH@B@BCEIBI@KHCLFBbDJFL@DEDCJCDGBAFCFCDGBCBDPCHUNMBCD@FEFGECD@RADAF@ZDFAJXNBDBFBBRJRDNAHN@FHNZNPATDJHVFD@DAJMFALDLBNCFBDBFPHFFBZ@LHF@H@NFDBDNFHJHHBHFHTBHDDT@LHLBbAFBDDBBEVEPIR@FBD@HHJJ@FBAJLLLZBB`D"],"encodeOffsets":[[119194,26658]]},"properties":{"cp":[116.72978,25.191603],"name":"龙岩市","childNum":1}},{"id":"350900","type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[["@@KBWJOLYXEJAFDRFHHHXLLDRARGPKJKFUDI\\KDEBEACEAUDC@]SIA"],["@@MFEFM^@RJXDHPLHDH@PKTGjEZHTJ\\HRCLGBOIOosKuC"],["@@I@IHIHEJAJPLLFFHFNTTHJFDHBJ@LGFE@I@MI_CAKBOEAIBGSMIC"],["@@E@IH@JBBJDBDBFDH@BEFBDNDFDJBRGDLDDFBF@DCDC@CASEICMGECAEDO@AAAEEES@"],["@@DMA@K@IBIHABNHFEL@"],["@@BBH@DDD@AGKCA@AF"],["@@NLFBPBDBDAACEIE@EAAAIBIEAB@D"],["@@BFF@DBB@BCHB@GDA@AKAE@BCH@@ACCC@@ADA@CEACAID@FFBABBDABCB@BFDAB"],["@@CFHB@FBABBDCD@D@BADBFEE@EEB@BBDACC@AIA@ACC@ACAC@ABBFBB@DCD@B"],["@@ADD@DEE@@B"],["@@ADDAAA"],["@@@FBBBGDEAAA@ABAF"],["@@JDBBD@B@BEAAC@M@@B"],["@@BBDCD@DDDACGE@EAA@AFBD"],["@@BBD@FEFFJAJABCCAGBKEC@AAA@AB@FCBAD"],["@@JBABBBN@RC@CACF@DFB@BCAA@AD@BCEACDEA@AC@@CCABECAIBEAADEAADG@EAOHEFBDDBHAPF"],["@@H@@AB@HBBACCEAKFBB"],["@@D@DEJADHDALBBBD@@CGAKIEC@AD@D@JBD@@E@AE@AIA@ADCACBEAAAE@AEG@@D@HJHGDBFAHBD"],["@@ILDHRJL@@AECBC@CDACEKGG@"],["@@FBJ@NBD@EEI@CCK@EA@DDD"],["@@HBHCD@DB@FNDDAACFEAAGCEAIBCAKAGF@BDD"],["@@C@CB@DG@IDEH@DF@BDB@BCD@BAFDDABEH@BCAEEE"],["@@JBDHHDB@DCB@BCH@@CFABA@EAAM@CCG@KGCA@F@FEAEBBFABBDDDB@@C@@"],["@@@DJJJABCDABEBAHDFCEC@ECAIDAF@@ICCDEAAF"],["@@HHJ@@CF@ACAAKCCAA@AB@B@D"],["@@DDL@@AHB@@CEKAGD"],["@@HBFD@HD@B@BGDCDCCCBAAAGBGAE@GB@DB@BD"],["@@BDFADBDFCLJBFFBA@EBCHEDGIACGWBED"],["@@AB@DPBHHD@BEAC@CEEEGIAAF@DAD"],["@@CPBBF@DABAEIFBFA@C@CECAGGGI@ABBDBBHP"],["@@FDD@DIQBDD"],["@@H@@CACC@BDC@@D"],["@@BBJ@HBF@FAT@JBFDBBTCDC@AKIE@@ABCACCC@GEE@ALGFI@AAAKBEBEJA@ECG@ABBFCNQACFKDAFGB@BFDADBD"],["@@IFIHBDADN@FAHEF@DCD@BA@A@AHDD@@EF@CEEACEEAEAC@AD@@DD@DGDE@"],["@@A@AFDLDFJDNC@CBCAC[K"],["@@CH@FBBLDHDLBL@dLDADERCNIBCACIGEGC@GDOBAEGEYEEEC@AFEBG@CDCDCJ"],["@@FJHBJKEECAEBEAAD@D"],["@@BBFBFARHB@EE@ADACEBCAEEBE@@BG@AFCBAD"],["@@A@BCCCIDGEJOJ@HGH@DCBKACDEHEAIBCFAP@HCDGJCAEDCDCJABM@INFFC@EIGKMPEDMDEH@HEN@D@DGCG@CBEHEH@JAHGAEKGILCBA@AEBU@ACE@CDAB@F@JCTCDDDLD@^KHKLCDB@HDBFA@ABANDLCDBFNKBIJPRFDFADEHEDCHDJCN@BAAAMG@CDANBBAAGDCFD@HBHHABCB@BF@FB@JEHBF@BHDDHBD@D@H@LIDBADDBNAHBHAPCBDCLG@ADDDCF@BJHABI@ABDDL@DBDF@DFHRJDDFH@DABOEADBHHDVDRFP@BB@JLFVEFABG@ONBFKPO@GAEDCP@TGN@BLDFL@JVDDHBFFDLLBNNJ@FDAVDDRHVDHAFABEFAJBFHBJCJEFCHBFFFPFdDF@BBFABCJ@LEBBF@VNH@LBD@LKFCHADDFABDJBDHPDRLDJD@XMDE@G@OGECE@EDELKNWDAH@HDJJJDFANGJ@DFBCHABBAHDJ@H@BFDHCBC@CGEBANEH@RHLIHKDGEMGI@ABECCACDGRGBE@AEK@ELIBERKJADAHKJUJI\\UDYJOLIFCZUAGCEICGDEHI@QKGIBEVMHG@AGOIG@CDEKEDAJ@BA@CGEJIBGEE@ARADGNGBCCEDIRIDE@GBAHBFAbeuoQMoUAI@MACOKY@kH_D]ACDCJCBE@[KCAIBSLC@GCAEBKLKBEAIEOHOPUBG@CGC@I@CAAEDAXAJCDGBEDUAKCIFIBGCICCaCGIKG@EFMIGCKAOCKBAFBBAAK@OEEMIISC@MBDJC@O@KFeECBMJEB_@QEIBGHC@MMECEBGJCBK@CCACACBQHS@I@EGIMIMKMAQ@QAGCIIEAIA]DKAIECKBOJ]BEFEJApARAhHFECCKEEGFWJOHAD@LFNBB@FEHAPFD@BICG]QOaOQ@CPQL@LCnPDBJ@DE@EACIGAC@CTBDAFC@QGMCASMkGKCMKIICEBCDCDQHMCMBEHCNDHBB@@CIGAEBG@@JBJDJAFC@A@ECEIG…cKKGA]FIDCDING@ƒgoYSCIAQBSFMDUESKIQGG@AFCAADKFCHA@CAAEAACICAOEEYAUIEGIECCBEEIKQSGQ@KAYDQDQBGDELGDAFBBDPAFBFLP@HAPBDPLDF@JEJ@BFNLLFD`NPJJLRDTPD@D@VED@LDNALBF@FGBIBCDADBBDATDDLDJR@HEFAJFHT@DDCN@HBDHHFFAFKJAFAFBHNJNNDBFLJTNH^DJDBLAHBBRJFHBBP@ddFFBJAJGLCBGBgGo@QAUCYKI@GBAB@FDH@FEDGAGGG@IDM@UIECGIAENONY@OEGGUc[IMGQKIDOFGBIEE@EBEHADC@EGEKAIGKCGIUGG@IBEBEHAH@J@DLV@BAFUPeRMA[GECmNG@•MW@Q@SFaT}|CHI^G@BGBI@EBIFEJE@GGYEIOCMFEDCAECCCBGNM@EMQK@IgGOQIQGUOKDA@OMBIrqLGLENBLJLBHHrPHFFHFBR@JCLITA^DVDT@JEFEPQDETIP@fOHMBEEGACJOJGDMAEINAHSLCHIDSNIB[CKBCA@CHECASOICWLEBG@UFMII@EACCOo@CMEEFE@CG@CAGEAI@OFGACBMGQEE@CB@BBFABMBA@@DEB@FCDEDMFE@GEE@GHQAMLEBICCBCDFD@FAD]LM@CDOVLJ@BKRKFAJIDMR@JBDILCDWA@FKDSLEA@CEAE@CDGBS@MEUCMAEBMPKBCA@CAAG@AABAZIBGICG@CBIBIDMBOAAE@MIOEEUCCBCDG@CB@KCDG@AA@C@AFCBEEEIBIE@EEGGCCBA@EAAEED@DGCA@@DDFF@BJABEB@HUBE@EAUWGQG…CCIDADIHUJGBCEIYII]GEBQX@TGHMZCFMFCAEIGCIMCCMEG@C@IIAEC@CBGAEDE@GAAGAAGHEBQ@CA@CAAO@AD@DEHBJEDADCFIBBBBDEHBFCD@HC@CA@KAAIACBCDA@OCK@QHCDBFFHLHJBBD@FEFEFMJCFCBC@MMCAI@_DGCBMACKFEAAMACGA@EBEF@@CIIACDI@AGEKFC@ECCC@CPO@CEEACFG@AECACCAE@IHEBS@KAQGKEEICUOMCKBGFEPBFEBKG[GECAM@CDSVE@UAKBaIGCCC[G@C@ICCOGAKIMaSUGCNBBGDAJOCFEMGCJ@L@FD@BDCFWT@DPL@^CHMFOFIBABFLEJEFS@GBCDC@EAUBCG@G@AFADCAKJABGAGQGGIC@GEAE@QCIDQAEGMHE^OTGFCIOFKIA@ICEBEFCRAHEFECGJGHKDCFAF@RKFGAICICUGC[QEA[FMF@FABEB{BQ[GGGCEEMICCAYLCBA@CACCAE@CDABC@@CC@G@DICCUIGICFDPAPAFGHELBHADEJEFDFTNEPDF@DKHKDSNQDEDKNIBEAGGC@CAMOECK@DH@LIDCD@HFN@DCDEABECGEAOBCCAECCIBABBV@PCDUH@HCB@HAJBB@B@LHHHBFLJFBFBJCHEFID@DHFBFAJBFJNRJXJHHD@BID@F@JLJT@JGXZn@JENNP@FEFC@KBKGEACBGBIBKFEJCHDD@FDJAPDJ@LFP@HGRFN@FAHDHF@FNDRALLN@FCNCBOHUBIHCDBDFJLJCFDLLPD@FCFDD@HCD@@NFT@JLHDH@\\BJLVHJBPDF@FCFDFDBJ@FFHj@HAJEHEHMJCFJXBBVBH@D@BDAFFFZDHCJAJFJAPFHLDDGTNLBH@JBLFB@DGJCFI^e^EJHPLPTBLG@KFGJGPCJBLFPNHBZMNARBREV@LDHHBLANFHRNXDRFJHXL@DCHDDHDBLEFAHBLJJFDFALEFHDBTRDLDPDJJLHLRNBNJXHFRFDFHHBLBFBBJ@D@BGHETCHDJRDBBDCF@LS@@NBNECIAI@EB@LNZBJKEC@@BBH@BED@DHHFDF@HGNCJAR@TIF@LBFCDGHgCSDEPICKMQDIHABEDAF@FHHGJAJJFDZAFBJA@HBBF@JEDGB@JJB@AGBEH@BDBBBCD@FDD@@AFBBAHCXADC@GCGBILINCBC@IBCD@F@DC@EBAFC@KbFBDEZIJADATBBLBTCVHFDFADDBDEHBPFDPDHDF@FBDDNEFGDAJJHBBHFFAFEDQHI@IFADBHJbBLCJCFGBKAE@@B@DFJ@H@N@L@LDFCDDFLEJBVHH`@HDFD@F@HGJ@LEHBHC@GBCAMHGBAFFFADE@GBCDBBDF@DDJABIBAD@BJFHFJAFKHCJKFBFBD@BEBCCKJCAAFABG@MGSPKTC@E@EBAHGDADD@H@BDCLAL@XFBBH@FCFN^HFDBLEB@BBBJFDVAAH@LCHBFFDBF@HFBJD@FCN@NDDN@LFNR@BAPGHIJCDCPAPDNLBBBDJLPBF@DNdNH~ZLHNDLHFHD@AHHBAHEB@F@JCBFHJHTTVPLFfJl@LEJK@IDMHKJIPFLDJHTTRZDL@RLTDNE^N\\XRBD@BENBHCHFFAFD\\@JN@FHFAFCFAFDBDBJBDVCFBDH@FELBFH@DGHABI@A@ABAHBDAD@HFHCBBLFDFB@DAFEDALALDDJB@PFD@NAFBFCBC\\CDCF@HE@EIQBEPQ@ACIECCG@EAAGDAAGEC@ECAKDGFE@ECE@GDGBWFCLBJEH@vGDGIM@OC@C@ACEKEGCIHCDCACD@JFPBFADB@FBBDEHACCBCVQACDKHAFC@EIGAOBALC@GBGGC@EBCFB@A@CEADGEIHMMIDGCC@KIEEA"]],"encodeOffsets":[[[123250,27563]],[[122541,27268]],[[123020,27189]],[[122916,27125]],[[121678,27068]],[[123398,27612]],[[123294,27747]],[[123611,27636]],[[123592,27651]],[[123587,27574]],[[123587,27576]],[[123438,27501]],[[123358,27630]],[[123380,27622]],[[123263,27607]],[[123185,27583]],[[123137,27586]],[[123136,27581]],[[123105,27518]],[[123002,27474]],[[123025,27443]],[[123021,27325]],[[123237,27343]],[[123240,27281]],[[123209,27290]],[[122984,27247]],[[123034,27193]],[[123016,27168]],[[123017,27126]],[[122884,27182]],[[122850,27191]],[[122865,27137]],[[122785,27331]],[[122683,27314]],[[122653,27317]],[[122636,27252]],[[122672,27239]],[[122677,27206]],[[122569,28102]]]},"properties":{"cp":[119.527082,26.95924],"name":"宁德市","childNum":39}}],"UTF8Encoding":true}); +})); \ No newline at end of file diff --git a/yuhong-ui/src/components/echart/bottom/bottomLeftChart/chart.vue b/yuhong-ui/src/components/echart/bottom/bottomLeftChart/chart.vue new file mode 100644 index 0000000..3fa3795 --- /dev/null +++ b/yuhong-ui/src/components/echart/bottom/bottomLeftChart/chart.vue @@ -0,0 +1,71 @@ + + + diff --git a/yuhong-ui/src/components/echart/bottom/bottomLeftChart/index.vue b/yuhong-ui/src/components/echart/bottom/bottomLeftChart/index.vue new file mode 100644 index 0000000..82d542c --- /dev/null +++ b/yuhong-ui/src/components/echart/bottom/bottomLeftChart/index.vue @@ -0,0 +1,121 @@ + + + + + diff --git a/yuhong-ui/src/components/echart/bottom/bottomRightChart/chart.vue b/yuhong-ui/src/components/echart/bottom/bottomRightChart/chart.vue new file mode 100644 index 0000000..3e1dd29 --- /dev/null +++ b/yuhong-ui/src/components/echart/bottom/bottomRightChart/chart.vue @@ -0,0 +1,58 @@ + + + diff --git a/yuhong-ui/src/components/echart/bottom/bottomRightChart/index.vue b/yuhong-ui/src/components/echart/bottom/bottomRightChart/index.vue new file mode 100644 index 0000000..d0f20e8 --- /dev/null +++ b/yuhong-ui/src/components/echart/bottom/bottomRightChart/index.vue @@ -0,0 +1,116 @@ + + + + + diff --git a/yuhong-ui/src/components/echart/center/centerChartRate/index.vue b/yuhong-ui/src/components/echart/center/centerChartRate/index.vue new file mode 100644 index 0000000..4db74a7 --- /dev/null +++ b/yuhong-ui/src/components/echart/center/centerChartRate/index.vue @@ -0,0 +1,140 @@ + + + + + diff --git a/yuhong-ui/src/components/echart/centerLeft/centerLeft1Chart/chart.vue b/yuhong-ui/src/components/echart/centerLeft/centerLeft1Chart/chart.vue new file mode 100644 index 0000000..a20e469 --- /dev/null +++ b/yuhong-ui/src/components/echart/centerLeft/centerLeft1Chart/chart.vue @@ -0,0 +1,81 @@ + + + + + diff --git a/yuhong-ui/src/components/echart/centerLeft/centerLeft1Chart/index.vue b/yuhong-ui/src/components/echart/centerLeft/centerLeft1Chart/index.vue new file mode 100644 index 0000000..96b07ab --- /dev/null +++ b/yuhong-ui/src/components/echart/centerLeft/centerLeft1Chart/index.vue @@ -0,0 +1,36 @@ + + + + + diff --git a/yuhong-ui/src/components/echart/centerLeft/centerLeft2Chart/chart.vue b/yuhong-ui/src/components/echart/centerLeft/centerLeft2Chart/chart.vue new file mode 100644 index 0000000..5a19f77 --- /dev/null +++ b/yuhong-ui/src/components/echart/centerLeft/centerLeft2Chart/chart.vue @@ -0,0 +1,290 @@ + + + diff --git a/yuhong-ui/src/components/echart/centerLeft/centerLeft2Chart/index.vue b/yuhong-ui/src/components/echart/centerLeft/centerLeft2Chart/index.vue new file mode 100644 index 0000000..8301491 --- /dev/null +++ b/yuhong-ui/src/components/echart/centerLeft/centerLeft2Chart/index.vue @@ -0,0 +1,67 @@ + + + + + diff --git a/yuhong-ui/src/components/echart/centerRight/centerRightChart/chart.vue b/yuhong-ui/src/components/echart/centerRight/centerRightChart/chart.vue new file mode 100644 index 0000000..dcd3c9a --- /dev/null +++ b/yuhong-ui/src/components/echart/centerRight/centerRightChart/chart.vue @@ -0,0 +1,132 @@ + + + diff --git a/yuhong-ui/src/components/echart/centerRight/centerRightChart/index.vue b/yuhong-ui/src/components/echart/centerRight/centerRightChart/index.vue new file mode 100644 index 0000000..c6250dd --- /dev/null +++ b/yuhong-ui/src/components/echart/centerRight/centerRightChart/index.vue @@ -0,0 +1,55 @@ + + + diff --git a/yuhong-ui/src/main.js b/yuhong-ui/src/main.js new file mode 100644 index 0000000..9a8898d --- /dev/null +++ b/yuhong-ui/src/main.js @@ -0,0 +1,37 @@ +import Vue from 'vue' +import App from './App.vue' +import router from './router' +import store from './store' +import dataV from '@jiaminghi/data-view' +// 引入全局css +import './assets/scss/style.scss' +// 按需引入vue-awesome图标 +import Icon from 'vue-awesome/components/Icon' +import 'vue-awesome/icons/chart-bar.js' +import 'vue-awesome/icons/chart-area.js' +import 'vue-awesome/icons/chart-pie.js' +import 'vue-awesome/icons/chart-line.js' +import 'vue-awesome/icons/align-left.js' + +import ElementUI from 'element-ui' +import 'element-ui/lib/theme-chalk/index.css' + +// 引入echart +// 4.x 引用方式 +// import echarts from 'echarts' +// 5.x 引用方式为按需引用 +// 希望使用5.x版本的话,需要在package.json中更新版本号,并切换引用方式 +import * as echarts from 'echarts' +Vue.prototype.$echarts = echarts +Vue.config.productionTip = false + +// 全局注册 +Vue.component('icon', Icon) +Vue.use(dataV) +Vue.use(ElementUI) + +new Vue({ + router, + store, + render: (h) => h(App) +}).$mount('#app') diff --git a/yuhong-ui/src/router/index.js b/yuhong-ui/src/router/index.js new file mode 100644 index 0000000..752de91 --- /dev/null +++ b/yuhong-ui/src/router/index.js @@ -0,0 +1,15 @@ +import Vue from 'vue' +import VueRouter from 'vue-router' + +Vue.use(VueRouter) + +const routes = [{ + path: '/', + name: 'index', + component: () => import('../views/index.vue') +}] +const router = new VueRouter({ + routes +}) + +export default router diff --git a/yuhong-ui/src/store/index.js b/yuhong-ui/src/store/index.js new file mode 100644 index 0000000..332b916 --- /dev/null +++ b/yuhong-ui/src/store/index.js @@ -0,0 +1,15 @@ +import Vue from 'vue' +import Vuex from 'vuex' + +Vue.use(Vuex) + +export default new Vuex.Store({ + state: { + }, + mutations: { + }, + actions: { + }, + modules: { + } +}) diff --git a/yuhong-ui/src/test.md b/yuhong-ui/src/test.md new file mode 100644 index 0000000..3ab1fee --- /dev/null +++ b/yuhong-ui/src/test.md @@ -0,0 +1 @@ +测试加密 diff --git a/yuhong-ui/src/utils/drawMixin.js b/yuhong-ui/src/utils/drawMixin.js new file mode 100644 index 0000000..73d7200 --- /dev/null +++ b/yuhong-ui/src/utils/drawMixin.js @@ -0,0 +1,57 @@ +// 屏幕适配 mixin 函数 + +// * 默认缩放值 +const scale = { + width: '1', + height: '1' +} + +// * 设计稿尺寸(px) +const baseWidth = 1920 +const baseHeight = 1080 + +// * 需保持的比例(默认1.77778) +const baseProportion = parseFloat((baseWidth / baseHeight).toFixed(5)) + +export default { + data() { + return { + // * 定时函数 + drawTiming: null + } + }, + mounted() { + this.calcRate() + window.addEventListener('resize', this.resize) + }, + beforeDestroy() { + window.removeEventListener('resize', this.resize) + }, + methods: { + calcRate() { + const appRef = this.$refs['appRef'] + if (!appRef) return + // 当前宽高比 + const currentRate = parseFloat((window.innerWidth / window.innerHeight).toFixed(5)) + if (appRef) { + if (currentRate > baseProportion) { + // 表示更宽 + scale.width = ((window.innerHeight * baseProportion) / baseWidth).toFixed(5) + scale.height = (window.innerHeight / baseHeight).toFixed(5) + appRef.style.transform = `scale(${scale.width}, ${scale.height}) translate(-50%, -50%)` + } else { + // 表示更高 + scale.height = ((window.innerWidth / baseProportion) / baseHeight).toFixed(5) + scale.width = (window.innerWidth / baseWidth).toFixed(5) + appRef.style.transform = `scale(${scale.width}, ${scale.height}) translate(-50%, -50%)` + } + } + }, + resize() { + clearTimeout(this.drawTiming) + this.drawTiming = setTimeout(() => { + this.calcRate() + }, 200) + } + } +} diff --git a/yuhong-ui/src/utils/index.js b/yuhong-ui/src/utils/index.js new file mode 100644 index 0000000..cce4db5 --- /dev/null +++ b/yuhong-ui/src/utils/index.js @@ -0,0 +1,52 @@ +/** + * @param {Function} fn 防抖函数 + * @param {Number} delay 延迟时间 + */ +export function debounce(fn, delay) { + var timer + return function() { + var context = this + var args = arguments + clearTimeout(timer) + timer = setTimeout(function() { + fn.apply(context, args) + }, delay) + } +} + +/** + * @param {date} time 需要转换的时间 + * @param {String} fmt 需要转换的格式 如 yyyy-MM-dd、yyyy-MM-dd HH:mm:ss + */ +export function formatTime(time, fmt) { + if (!time) return '' + else { + const date = new Date(time) + const o = { + 'M+': date.getMonth() + 1, + 'd+': date.getDate(), + 'H+': date.getHours(), + 'm+': date.getMinutes(), + 's+': date.getSeconds(), + 'q+': Math.floor((date.getMonth() + 3) / 3), + S: date.getMilliseconds() + } + if (/(y+)/.test(fmt)) { + fmt = fmt.replace( + RegExp.$1, + (date.getFullYear() + '').substr(4 - RegExp.$1.length) + ) + } + for (const k in o) { + if (new RegExp('(' + k + ')').test(fmt)) { + fmt = fmt.replace( + RegExp.$1, + RegExp.$1.length === 1 + ? o[k] + : ('00' + o[k]).substr(('' + o[k]).length) + ) + } + } + return fmt + } +} diff --git a/yuhong-ui/src/utils/request.js b/yuhong-ui/src/utils/request.js new file mode 100644 index 0000000..c65aac4 --- /dev/null +++ b/yuhong-ui/src/utils/request.js @@ -0,0 +1,42 @@ +import axios from 'axios' + +import { BASE_URL, TIMEOUT } from './requestConfig' + +const instance = axios.create({ + baseURL: BASE_URL, + timeout: TIMEOUT +}) + +instance.interceptors.request.use(config => { + // 1.发送网络请求时, 在界面的中间位置显示Loading的组件 + + // 2.某一些请求要求用户必须携带token, 如果没有携带, 那么直接跳转到登录页面 + + // 3.params/data序列化的操作 + // console.log('请求被拦截') + + return config +}, err => { + console.log(err) +}) + +instance.interceptors.response.use(res => { + return res.data +}, err => { + if (err && err.response) { + switch (err.response.status) { + case 400: + console.log('请求错误') + break + case 401: + console.log('未授权访问') + break + default: + console.log('其他错误信息') + } + } + return err +}) + +// export default instance +export { instance as request } diff --git a/yuhong-ui/src/utils/requestConfig.js b/yuhong-ui/src/utils/requestConfig.js new file mode 100644 index 0000000..8641c73 --- /dev/null +++ b/yuhong-ui/src/utils/requestConfig.js @@ -0,0 +1,8 @@ +// const devBaseURL = 'http://localhost:5281' +// const devBaseURL = 'http://5a35a48943.wicp.vip:40709' +// const proBaseURL = 'http://5a35a48943.wicp.vip:40709' +const devBaseURL = 'http://222.71.165.187:9002' +const proBaseURL = 'http://222.71.165.187:9002' +export const BASE_URL = process.env.NODE_ENV === 'development' ? devBaseURL : proBaseURL + +export const TIMEOUT = 5000 diff --git a/yuhong-ui/src/utils/resizeMixin.js b/yuhong-ui/src/utils/resizeMixin.js new file mode 100644 index 0000000..f90bcad --- /dev/null +++ b/yuhong-ui/src/utils/resizeMixin.js @@ -0,0 +1,33 @@ +// 混入代码 resize-mixins.js +// 改成 Scale 缩放之后,没有使用这个代码,但是保留 +import { debounce } from '@/utils' +const resizeChartMethod = '$__resizeChartMethod' + +export default { + data() { + // 在组件内部将图表 init 的引用映射到 chart 属性上 + return { + chart: null + } + }, + created() { + window.addEventListener('resize', this[resizeChartMethod], false) + }, + activated() { + // 防止 keep-alive 之后图表变形 + if (this.chart) { + this.chart.resize() + } + }, + beforeDestroy() { + window.removeEventListener('reisze', this[resizeChartMethod]) + }, + methods: { + // 防抖函数来控制 resize 的频率 + [resizeChartMethod]: debounce(function() { + if (this.chart) { + this.chart.resize() + } + }, 300) + } +} diff --git a/yuhong-ui/src/views.rar b/yuhong-ui/src/views.rar new file mode 100644 index 0000000..dc6ce5b Binary files /dev/null and b/yuhong-ui/src/views.rar differ diff --git a/yuhong-ui/src/views/bottomRight.vue b/yuhong-ui/src/views/bottomRight.vue new file mode 100644 index 0000000..8e049ba --- /dev/null +++ b/yuhong-ui/src/views/bottomRight.vue @@ -0,0 +1,234 @@ + + + + + + diff --git a/yuhong-ui/src/views/center.vue b/yuhong-ui/src/views/center.vue new file mode 100644 index 0000000..d47e6b8 --- /dev/null +++ b/yuhong-ui/src/views/center.vue @@ -0,0 +1,245 @@ + + + + + diff --git a/yuhong-ui/src/views/centerLeft1.vue b/yuhong-ui/src/views/centerLeft1.vue new file mode 100644 index 0000000..ec67fa4 --- /dev/null +++ b/yuhong-ui/src/views/centerLeft1.vue @@ -0,0 +1,387 @@ + + + + + diff --git a/yuhong-ui/src/views/centerRight1.vue b/yuhong-ui/src/views/centerRight1.vue new file mode 100644 index 0000000..cdd1bbd --- /dev/null +++ b/yuhong-ui/src/views/centerRight1.vue @@ -0,0 +1,326 @@ + + + + + + diff --git a/yuhong-ui/src/views/index.vue b/yuhong-ui/src/views/index.vue new file mode 100644 index 0000000..e769574 --- /dev/null +++ b/yuhong-ui/src/views/index.vue @@ -0,0 +1,154 @@ + + + + + diff --git a/yuhong-ui/vue.config.js b/yuhong-ui/vue.config.js new file mode 100644 index 0000000..16e463a --- /dev/null +++ b/yuhong-ui/vue.config.js @@ -0,0 +1,12 @@ +const path = require('path') +const resolve = dir => { + return path.join(__dirname, dir) +} +module.exports = { + publicPath: './', + lintOnSave: false, + chainWebpack: config => { + config.resolve.alias + .set('_c', resolve('src/components')) // key,value自行定义,比如.set('@@', resolve('src/components')) + } +} diff --git a/yuhong-ui/yarn.lock b/yuhong-ui/yarn.lock new file mode 100644 index 0000000..8bd7d95 --- /dev/null +++ b/yuhong-ui/yarn.lock @@ -0,0 +1,6235 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@achrinza/node-ipc@^9.2.5": + version "9.2.6" + resolved "https://registry.npmmirror.com/@achrinza/node-ipc/-/node-ipc-9.2.6.tgz#75c89e95fe38ff9e3dd33a0d2681dc28f1c31f33" + integrity sha512-ULSIYPy4ZPM301dfCxRz0l2GJjOwIo/PqmWonIu1bLml7UmnVQmH+juJcoyXp6E8gIRRNAjGYftJnNQlfy4vPg== + dependencies: + "@node-ipc/js-queue" "2.0.3" + event-pubsub "4.3.0" + js-message "1.0.7" + +"@ampproject/remapping@^2.1.0": + version "2.2.0" + resolved "https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" + integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== + dependencies: + "@jridgewell/gen-mapping" "^0.1.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" + integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== + dependencies: + "@babel/highlight" "^7.18.6" + +"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.0", "@babel/compat-data@^7.20.1": + version "7.20.1" + resolved "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.20.1.tgz#f2e6ef7790d8c8dbf03d379502dcc246dcce0b30" + integrity sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ== + +"@babel/core@^7.12.16": + version "7.20.2" + resolved "https://registry.npmmirror.com/@babel/core/-/core-7.20.2.tgz#8dc9b1620a673f92d3624bd926dc49a52cf25b92" + integrity sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g== + dependencies: + "@ampproject/remapping" "^2.1.0" + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.20.2" + "@babel/helper-compilation-targets" "^7.20.0" + "@babel/helper-module-transforms" "^7.20.2" + "@babel/helpers" "^7.20.1" + "@babel/parser" "^7.20.2" + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.20.1" + "@babel/types" "^7.20.2" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.1" + semver "^6.3.0" + +"@babel/generator@^7.20.1", "@babel/generator@^7.20.2": + version "7.20.4" + resolved "https://registry.npmmirror.com/@babel/generator/-/generator-7.20.4.tgz#4d9f8f0c30be75fd90a0562099a26e5839602ab8" + integrity sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA== + dependencies: + "@babel/types" "^7.20.2" + "@jridgewell/gen-mapping" "^0.3.2" + jsesc "^2.5.1" + +"@babel/helper-annotate-as-pure@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" + integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6": + version "7.18.9" + resolved "https://registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb" + integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw== + dependencies: + "@babel/helper-explode-assignable-expression" "^7.18.6" + "@babel/types" "^7.18.9" + +"@babel/helper-compilation-targets@^7.12.16", "@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.0": + version "7.20.0" + resolved "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a" + integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ== + dependencies: + "@babel/compat-data" "^7.20.0" + "@babel/helper-validator-option" "^7.18.6" + browserslist "^4.21.3" + semver "^6.3.0" + +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.2": + version "7.20.2" + resolved "https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.2.tgz#3c08a5b5417c7f07b5cf3dfb6dc79cbec682e8c2" + integrity sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.19.0" + "@babel/helper-member-expression-to-functions" "^7.18.9" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/helper-replace-supers" "^7.19.1" + "@babel/helper-split-export-declaration" "^7.18.6" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.19.0": + version "7.19.0" + resolved "https://registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz#7976aca61c0984202baca73d84e2337a5424a41b" + integrity sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + regexpu-core "^5.1.0" + +"@babel/helper-define-polyfill-provider@^0.3.3": + version "0.3.3" + resolved "https://registry.npmmirror.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz#8612e55be5d51f0cd1f36b4a5a83924e89884b7a" + integrity sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww== + dependencies: + "@babel/helper-compilation-targets" "^7.17.7" + "@babel/helper-plugin-utils" "^7.16.7" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + semver "^6.1.2" + +"@babel/helper-environment-visitor@^7.18.9": + version "7.18.9" + resolved "https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" + integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== + +"@babel/helper-explode-assignable-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096" + integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0": + version "7.19.0" + resolved "https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c" + integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w== + dependencies: + "@babel/template" "^7.18.10" + "@babel/types" "^7.19.0" + +"@babel/helper-hoist-variables@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" + integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-member-expression-to-functions@^7.18.9": + version "7.18.9" + resolved "https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz#1531661e8375af843ad37ac692c132841e2fd815" + integrity sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg== + dependencies: + "@babel/types" "^7.18.9" + +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" + integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.6", "@babel/helper-module-transforms@^7.20.2": + version "7.20.2" + resolved "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz#ac53da669501edd37e658602a21ba14c08748712" + integrity sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-simple-access" "^7.20.2" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/helper-validator-identifier" "^7.19.1" + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.20.1" + "@babel/types" "^7.20.2" + +"@babel/helper-optimise-call-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe" + integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.20.2" + resolved "https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629" + integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== + +"@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9": + version "7.18.9" + resolved "https://registry.npmmirror.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519" + integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-wrap-function" "^7.18.9" + "@babel/types" "^7.18.9" + +"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.19.1": + version "7.19.1" + resolved "https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz#e1592a9b4b368aa6bdb8784a711e0bcbf0612b78" + integrity sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-member-expression-to-functions" "^7.18.9" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/traverse" "^7.19.1" + "@babel/types" "^7.19.0" + +"@babel/helper-simple-access@^7.19.4", "@babel/helper-simple-access@^7.20.2": + version "7.20.2" + resolved "https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" + integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== + dependencies: + "@babel/types" "^7.20.2" + +"@babel/helper-skip-transparent-expression-wrappers@^7.18.9": + version "7.20.0" + resolved "https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684" + integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg== + dependencies: + "@babel/types" "^7.20.0" + +"@babel/helper-split-export-declaration@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" + integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-string-parser@^7.19.4": + version "7.19.4" + resolved "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" + integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== + +"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": + version "7.19.1" + resolved "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== + +"@babel/helper-validator-option@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" + integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== + +"@babel/helper-wrap-function@^7.18.9": + version "7.19.0" + resolved "https://registry.npmmirror.com/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz#89f18335cff1152373222f76a4b37799636ae8b1" + integrity sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg== + dependencies: + "@babel/helper-function-name" "^7.19.0" + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.19.0" + "@babel/types" "^7.19.0" + +"@babel/helpers@^7.20.1": + version "7.20.1" + resolved "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.20.1.tgz#2ab7a0fcb0a03b5bf76629196ed63c2d7311f4c9" + integrity sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg== + dependencies: + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.20.1" + "@babel/types" "^7.20.0" + +"@babel/highlight@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" + integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== + dependencies: + "@babel/helper-validator-identifier" "^7.18.6" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/parser@^7.18.10", "@babel/parser@^7.18.4", "@babel/parser@^7.20.1", "@babel/parser@^7.20.2", "@babel/parser@^7.7.0": + version "7.20.3" + resolved "https://registry.npmmirror.com/@babel/parser/-/parser-7.20.3.tgz#5358cf62e380cf69efcb87a7bb922ff88bfac6e2" + integrity sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg== + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2" + integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9": + version "7.18.9" + resolved "https://registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz#a11af19aa373d68d561f08e0a57242350ed0ec50" + integrity sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" + "@babel/plugin-proposal-optional-chaining" "^7.18.9" + +"@babel/plugin-proposal-async-generator-functions@^7.20.1": + version "7.20.1" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz#352f02baa5d69f4e7529bdac39aaa02d41146af9" + integrity sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-remap-async-to-generator" "^7.18.9" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-proposal-class-properties@^7.12.13", "@babel/plugin-proposal-class-properties@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" + integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-class-static-block@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz#8aa81d403ab72d3962fc06c26e222dacfc9b9020" + integrity sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-proposal-decorators@^7.12.13": + version "7.20.2" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.20.2.tgz#1c6c32b2a44b154ebeec2bb534f9eaebdb541fb6" + integrity sha512-nkBH96IBmgKnbHQ5gXFrcmez+Z9S2EIDKDQGp005ROqBigc88Tky4rzCnlP/lnlj245dCEQl4/YyV0V1kYh5dw== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.20.2" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-replace-supers" "^7.19.1" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/plugin-syntax-decorators" "^7.19.0" + +"@babel/plugin-proposal-dynamic-import@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz#72bcf8d408799f547d759298c3c27c7e7faa4d94" + integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-proposal-export-namespace-from@^7.18.9": + version "7.18.9" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203" + integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-proposal-json-strings@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz#7e8788c1811c393aff762817e7dbf1ebd0c05f0b" + integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-proposal-logical-assignment-operators@^7.18.9": + version "7.18.9" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz#8148cbb350483bf6220af06fa6db3690e14b2e23" + integrity sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" + integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-proposal-numeric-separator@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75" + integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-proposal-object-rest-spread@^7.20.2": + version "7.20.2" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.2.tgz#a556f59d555f06961df1e572bb5eca864c84022d" + integrity sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ== + dependencies: + "@babel/compat-data" "^7.20.1" + "@babel/helper-compilation-targets" "^7.20.0" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.20.1" + +"@babel/plugin-proposal-optional-catch-binding@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb" + integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-proposal-optional-chaining@^7.18.9": + version "7.18.9" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz#e8e8fe0723f2563960e4bf5e9690933691915993" + integrity sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-proposal-private-methods@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea" + integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-private-property-in-object@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz#a64137b232f0aca3733a67eb1a144c192389c503" + integrity sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e" + integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.12.13": + version "7.12.13" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-decorators@^7.19.0": + version "7.19.0" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.19.0.tgz#5f13d1d8fce96951bea01a10424463c9a5b3a599" + integrity sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ== + dependencies: + "@babel/helper-plugin-utils" "^7.19.0" + +"@babel/plugin-syntax-dynamic-import@^7.8.3": + version "7.8.3" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-syntax-import-assertions@^7.20.0": + version "7.20.0" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4" + integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ== + dependencies: + "@babel/helper-plugin-utils" "^7.19.0" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.12.13", "@babel/plugin-syntax-jsx@^7.2.0": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0" + integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": + version "7.10.4" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4": + version "7.10.4" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5": + version "7.14.5" + resolved "https://registry.npmmirror.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-arrow-functions@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz#19063fcf8771ec7b31d742339dac62433d0611fe" + integrity sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-async-to-generator@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz#ccda3d1ab9d5ced5265fdb13f1882d5476c71615" + integrity sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag== + dependencies: + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-remap-async-to-generator" "^7.18.6" + +"@babel/plugin-transform-block-scoped-functions@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8" + integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-block-scoping@^7.20.2": + version "7.20.2" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.2.tgz#f59b1767e6385c663fd0bce655db6ca9c8b236ed" + integrity sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-classes@^7.20.2": + version "7.20.2" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz#c0033cf1916ccf78202d04be4281d161f6709bb2" + integrity sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-compilation-targets" "^7.20.0" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.19.0" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-replace-supers" "^7.19.1" + "@babel/helper-split-export-declaration" "^7.18.6" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.18.9": + version "7.18.9" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz#2357a8224d402dad623caf6259b611e56aec746e" + integrity sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-destructuring@^7.20.2": + version "7.20.2" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.2.tgz#c23741cfa44ddd35f5e53896e88c75331b8b2792" + integrity sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8" + integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-duplicate-keys@^7.18.9": + version "7.18.9" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz#687f15ee3cdad6d85191eb2a372c4528eaa0ae0e" + integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-exponentiation-operator@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd" + integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-for-of@^7.18.8": + version "7.18.8" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1" + integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-function-name@^7.18.9": + version "7.18.9" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0" + integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== + dependencies: + "@babel/helper-compilation-targets" "^7.18.9" + "@babel/helper-function-name" "^7.18.9" + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-literals@^7.18.9": + version "7.18.9" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc" + integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-member-expression-literals@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e" + integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-modules-amd@^7.19.6": + version "7.19.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz#aca391801ae55d19c4d8d2ebfeaa33df5f2a2cbd" + integrity sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg== + dependencies: + "@babel/helper-module-transforms" "^7.19.6" + "@babel/helper-plugin-utils" "^7.19.0" + +"@babel/plugin-transform-modules-commonjs@^7.19.6": + version "7.19.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz#25b32feef24df8038fc1ec56038917eacb0b730c" + integrity sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ== + dependencies: + "@babel/helper-module-transforms" "^7.19.6" + "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-simple-access" "^7.19.4" + +"@babel/plugin-transform-modules-systemjs@^7.19.6": + version "7.19.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz#59e2a84064b5736a4471b1aa7b13d4431d327e0d" + integrity sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ== + dependencies: + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-module-transforms" "^7.19.6" + "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-validator-identifier" "^7.19.1" + +"@babel/plugin-transform-modules-umd@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz#81d3832d6034b75b54e62821ba58f28ed0aab4b9" + integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== + dependencies: + "@babel/helper-module-transforms" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.19.1": + version "7.19.1" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz#ec7455bab6cd8fb05c525a94876f435a48128888" + integrity sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.19.0" + "@babel/helper-plugin-utils" "^7.19.0" + +"@babel/plugin-transform-new-target@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8" + integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-object-super@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c" + integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-replace-supers" "^7.18.6" + +"@babel/plugin-transform-parameters@^7.20.1": + version "7.20.3" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.3.tgz#7b3468d70c3c5b62e46be0a47b6045d8590fb748" + integrity sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-property-literals@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3" + integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-regenerator@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz#585c66cb84d4b4bf72519a34cfce761b8676ca73" + integrity sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + regenerator-transform "^0.15.0" + +"@babel/plugin-transform-reserved-words@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a" + integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-runtime@^7.12.15": + version "7.19.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz#9d2a9dbf4e12644d6f46e5e75bfbf02b5d6e9194" + integrity sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw== + dependencies: + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-plugin-utils" "^7.19.0" + babel-plugin-polyfill-corejs2 "^0.3.3" + babel-plugin-polyfill-corejs3 "^0.6.0" + babel-plugin-polyfill-regenerator "^0.4.1" + semver "^6.3.0" + +"@babel/plugin-transform-shorthand-properties@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9" + integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-spread@^7.19.0": + version "7.19.0" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz#dd60b4620c2fec806d60cfaae364ec2188d593b6" + integrity sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w== + dependencies: + "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" + +"@babel/plugin-transform-sticky-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc" + integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-template-literals@^7.18.9": + version "7.18.9" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e" + integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-typeof-symbol@^7.18.9": + version "7.18.9" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz#c8cea68263e45addcd6afc9091429f80925762c0" + integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-unicode-escapes@^7.18.10": + version "7.18.10" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz#1ecfb0eda83d09bbcb77c09970c2dd55832aa246" + integrity sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-unicode-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.npmmirror.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca" + integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/preset-env@^7.12.16": + version "7.20.2" + resolved "https://registry.npmmirror.com/@babel/preset-env/-/preset-env-7.20.2.tgz#9b1642aa47bb9f43a86f9630011780dab7f86506" + integrity sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg== + dependencies: + "@babel/compat-data" "^7.20.1" + "@babel/helper-compilation-targets" "^7.20.0" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-validator-option" "^7.18.6" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.9" + "@babel/plugin-proposal-async-generator-functions" "^7.20.1" + "@babel/plugin-proposal-class-properties" "^7.18.6" + "@babel/plugin-proposal-class-static-block" "^7.18.6" + "@babel/plugin-proposal-dynamic-import" "^7.18.6" + "@babel/plugin-proposal-export-namespace-from" "^7.18.9" + "@babel/plugin-proposal-json-strings" "^7.18.6" + "@babel/plugin-proposal-logical-assignment-operators" "^7.18.9" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6" + "@babel/plugin-proposal-numeric-separator" "^7.18.6" + "@babel/plugin-proposal-object-rest-spread" "^7.20.2" + "@babel/plugin-proposal-optional-catch-binding" "^7.18.6" + "@babel/plugin-proposal-optional-chaining" "^7.18.9" + "@babel/plugin-proposal-private-methods" "^7.18.6" + "@babel/plugin-proposal-private-property-in-object" "^7.18.6" + "@babel/plugin-proposal-unicode-property-regex" "^7.18.6" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.20.0" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-transform-arrow-functions" "^7.18.6" + "@babel/plugin-transform-async-to-generator" "^7.18.6" + "@babel/plugin-transform-block-scoped-functions" "^7.18.6" + "@babel/plugin-transform-block-scoping" "^7.20.2" + "@babel/plugin-transform-classes" "^7.20.2" + "@babel/plugin-transform-computed-properties" "^7.18.9" + "@babel/plugin-transform-destructuring" "^7.20.2" + "@babel/plugin-transform-dotall-regex" "^7.18.6" + "@babel/plugin-transform-duplicate-keys" "^7.18.9" + "@babel/plugin-transform-exponentiation-operator" "^7.18.6" + "@babel/plugin-transform-for-of" "^7.18.8" + "@babel/plugin-transform-function-name" "^7.18.9" + "@babel/plugin-transform-literals" "^7.18.9" + "@babel/plugin-transform-member-expression-literals" "^7.18.6" + "@babel/plugin-transform-modules-amd" "^7.19.6" + "@babel/plugin-transform-modules-commonjs" "^7.19.6" + "@babel/plugin-transform-modules-systemjs" "^7.19.6" + "@babel/plugin-transform-modules-umd" "^7.18.6" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.19.1" + "@babel/plugin-transform-new-target" "^7.18.6" + "@babel/plugin-transform-object-super" "^7.18.6" + "@babel/plugin-transform-parameters" "^7.20.1" + "@babel/plugin-transform-property-literals" "^7.18.6" + "@babel/plugin-transform-regenerator" "^7.18.6" + "@babel/plugin-transform-reserved-words" "^7.18.6" + "@babel/plugin-transform-shorthand-properties" "^7.18.6" + "@babel/plugin-transform-spread" "^7.19.0" + "@babel/plugin-transform-sticky-regex" "^7.18.6" + "@babel/plugin-transform-template-literals" "^7.18.9" + "@babel/plugin-transform-typeof-symbol" "^7.18.9" + "@babel/plugin-transform-unicode-escapes" "^7.18.10" + "@babel/plugin-transform-unicode-regex" "^7.18.6" + "@babel/preset-modules" "^0.1.5" + "@babel/types" "^7.20.2" + babel-plugin-polyfill-corejs2 "^0.3.3" + babel-plugin-polyfill-corejs3 "^0.6.0" + babel-plugin-polyfill-regenerator "^0.4.1" + core-js-compat "^3.25.1" + semver "^6.3.0" + +"@babel/preset-modules@^0.1.5": + version "0.1.5" + resolved "https://registry.npmmirror.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" + integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" + "@babel/plugin-transform-dotall-regex" "^7.4.4" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + +"@babel/runtime@^7.12.13", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.4": + version "7.20.1" + resolved "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.20.1.tgz#1148bb33ab252b165a06698fde7576092a78b4a9" + integrity sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg== + dependencies: + regenerator-runtime "^0.13.10" + +"@babel/template@^7.0.0", "@babel/template@^7.18.10": + version "7.18.10" + resolved "https://registry.npmmirror.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71" + integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/parser" "^7.18.10" + "@babel/types" "^7.18.10" + +"@babel/traverse@^7.0.0", "@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.20.1", "@babel/traverse@^7.7.0": + version "7.20.1" + resolved "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.20.1.tgz#9b15ccbf882f6d107eeeecf263fbcdd208777ec8" + integrity sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.20.1" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.19.0" + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/parser" "^7.20.1" + "@babel/types" "^7.20.0" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.4.4", "@babel/types@^7.7.0": + version "7.20.2" + resolved "https://registry.npmmirror.com/@babel/types/-/types-7.20.2.tgz#67ac09266606190f496322dbaff360fdaa5e7842" + integrity sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog== + dependencies: + "@babel/helper-string-parser" "^7.19.4" + "@babel/helper-validator-identifier" "^7.19.1" + to-fast-properties "^2.0.0" + +"@hapi/hoek@^9.0.0": + version "9.3.0" + resolved "https://registry.npmmirror.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@hapi/topo@^5.0.0": + version "5.1.0" + resolved "https://registry.npmmirror.com/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@jiaminghi/bezier-curve@*": + version "0.0.9" + resolved "https://registry.npmmirror.com/@jiaminghi/bezier-curve/-/bezier-curve-0.0.9.tgz#5196aca93c8b061a612b4c3eabcedf9490cef6ee" + integrity sha512-u9xJPOEl6Dri2E9FfmJoGxYQY7vYJkURNX04Vj64tdi535tPrpkuf9Sm0lNr3QTKdHQh0DdNRsaa62FLQNQEEw== + dependencies: + "@babel/runtime" "^7.5.5" + +"@jiaminghi/c-render@^0.4.3": + version "0.4.3" + resolved "https://registry.npmmirror.com/@jiaminghi/c-render/-/c-render-0.4.3.tgz#982ebd8f71b443bb9507834227834973ebd9b6d8" + integrity sha512-FJfzj5hGj7MLqqqI2D7vEzHKbQ1Ynnn7PJKgzsjXaZpJzTqs2Yw5OSeZnm6l7Qj7jyPAP53lFvEQNH4o4j6s+Q== + dependencies: + "@babel/runtime" "^7.5.5" + "@jiaminghi/bezier-curve" "*" + "@jiaminghi/color" "*" + "@jiaminghi/transition" "*" + +"@jiaminghi/charts@*": + version "0.2.18" + resolved "https://registry.npmmirror.com/@jiaminghi/charts/-/charts-0.2.18.tgz#63ded95200789fc1a1fd04b7fd9e56f58d22d90f" + integrity sha512-K+HXaOOeWG9OOY1VG6M4mBreeeIAPhb9X+khG651AbnwEwL6G2UtcAQ8GWCq6GzhczcLwwhIhuaHqRygwHC0sA== + dependencies: + "@babel/runtime" "^7.5.5" + "@jiaminghi/c-render" "^0.4.3" + +"@jiaminghi/color@*": + version "0.1.1" + resolved "https://registry.npmmirror.com/@jiaminghi/color/-/color-0.1.1.tgz#bddf9012dfce6982d3829a983ffeb91ee9dda7b6" + integrity sha512-M09+Sb5HGqVim0zo+nG5gU1v+6gXT8ptr0BZR6dMGt83XmCJgnZtO8s7llTW4hLFFFM5co6geZvTekqLpSPAAQ== + dependencies: + "@babel/runtime" "^7.5.5" + +"@jiaminghi/data-view@^2.7.3": + version "2.10.0" + resolved "https://registry.npmmirror.com/@jiaminghi/data-view/-/data-view-2.10.0.tgz#2146d8fc71b9f24be808238ca050ddb7a4c8949f" + integrity sha512-Cud2MTiMcqc5k2KWabR/svuVQmXHANqURo+yj40370/LdI/gyUJ6LG203hWXEnT1nMCeiv/SLVmxv3PXLScCeA== + dependencies: + "@babel/runtime" "^7.5.5" + "@jiaminghi/charts" "*" + +"@jiaminghi/transition@*": + version "1.1.11" + resolved "https://registry.npmmirror.com/@jiaminghi/transition/-/transition-1.1.11.tgz#576d8af092434b34201eba5eaecc79dd33c8ad8c" + integrity sha512-owBggipoHMikDHHDW5Gc7RZYlVuvxHADiU4bxfjBVkHDAmmck+fCkm46n2JzC3j33hWvP9nSCAeh37t6stgWeg== + dependencies: + "@babel/runtime" "^7.5.5" + +"@jridgewell/gen-mapping@^0.1.0": + version "0.1.1" + resolved "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" + integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== + dependencies: + "@jridgewell/set-array" "^1.0.0" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": + version "0.3.2" + resolved "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" + integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@3.1.0": + version "3.1.0" + resolved "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/source-map@^0.3.2": + version "0.3.2" + resolved "https://registry.npmmirror.com/@jridgewell/source-map/-/source-map-0.3.2.tgz#f45351aaed4527a298512ec72f81040c998580fb" + integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@^0.3.14", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.17" + resolved "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" + integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== + dependencies: + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" + +"@leichtgewicht/ip-codec@^2.0.1": + version "2.0.4" + resolved "https://registry.npmmirror.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b" + integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A== + +"@node-ipc/js-queue@2.0.3": + version "2.0.3" + resolved "https://registry.npmmirror.com/@node-ipc/js-queue/-/js-queue-2.0.3.tgz#ac7fe33d766fa53e233ef8fedaf3443a01c5a4cd" + integrity sha512-fL1wpr8hhD5gT2dA1qifeVaoDFlQR5es8tFuKqjHX+kdOtdNHnxkVZbtIrR2rxnMFvehkjaZRNV2H/gPXlb0hw== + dependencies: + easy-stack "1.0.1" + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@polka/url@^1.0.0-next.20": + version "1.0.0-next.21" + resolved "https://registry.npmmirror.com/@polka/url/-/url-1.0.0-next.21.tgz#5de5a2385a35309427f6011992b544514d559aa1" + integrity sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g== + +"@sideway/address@^4.1.3": + version "4.1.4" + resolved "https://registry.npmmirror.com/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" + integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@sideway/formula@^3.0.0": + version "3.0.0" + resolved "https://registry.npmmirror.com/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c" + integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== + +"@sideway/pinpoint@^2.0.0": + version "2.0.0" + resolved "https://registry.npmmirror.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== + +"@soda/friendly-errors-webpack-plugin@^1.8.0": + version "1.8.1" + resolved "https://registry.npmmirror.com/@soda/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.8.1.tgz#4d4fbb1108993aaa362116247c3d18188a2c6c85" + integrity sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg== + dependencies: + chalk "^3.0.0" + error-stack-parser "^2.0.6" + string-width "^4.2.3" + strip-ansi "^6.0.1" + +"@soda/get-current-script@^1.0.2": + version "1.0.2" + resolved "https://registry.npmmirror.com/@soda/get-current-script/-/get-current-script-1.0.2.tgz#a53515db25d8038374381b73af20bb4f2e508d87" + integrity sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w== + +"@trysound/sax@0.2.0": + version "0.2.0" + resolved "https://registry.npmmirror.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" + integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== + +"@types/body-parser@*": + version "1.19.2" + resolved "https://registry.npmmirror.com/@types/body-parser/-/body-parser-1.19.2.tgz#aea2059e28b7658639081347ac4fab3de166e6f0" + integrity sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g== + dependencies: + "@types/connect" "*" + "@types/node" "*" + +"@types/bonjour@^3.5.9": + version "3.5.10" + resolved "https://registry.npmmirror.com/@types/bonjour/-/bonjour-3.5.10.tgz#0f6aadfe00ea414edc86f5d106357cda9701e275" + integrity sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw== + dependencies: + "@types/node" "*" + +"@types/connect-history-api-fallback@^1.3.5": + version "1.3.5" + resolved "https://registry.npmmirror.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz#d1f7a8a09d0ed5a57aee5ae9c18ab9b803205dae" + integrity sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw== + dependencies: + "@types/express-serve-static-core" "*" + "@types/node" "*" + +"@types/connect@*": + version "3.4.35" + resolved "https://registry.npmmirror.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + dependencies: + "@types/node" "*" + +"@types/echarts@^4.4.3": + version "4.9.16" + resolved "https://registry.npmmirror.com/@types/echarts/-/echarts-4.9.16.tgz#7156aea4623f3543b083200f6c65e04d3693bcc8" + integrity sha512-bfiagfPw3dWauAIJ9fgoJQoL4hLWlGcltqwbE6LGye0NIY5xnbZau+mDmadCzGojic3MWuFDCUiO25kl4sRGeA== + dependencies: + "@types/zrender" "*" + +"@types/eslint-scope@^3.7.3": + version "3.7.4" + resolved "https://registry.npmmirror.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz#37fc1223f0786c39627068a12e94d6e6fc61de16" + integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA== + dependencies: + "@types/eslint" "*" + "@types/estree" "*" + +"@types/eslint@*", "@types/eslint@^7.29.0 || ^8.4.1": + version "8.4.10" + resolved "https://registry.npmmirror.com/@types/eslint/-/eslint-8.4.10.tgz#19731b9685c19ed1552da7052b6f668ed7eb64bb" + integrity sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw== + dependencies: + "@types/estree" "*" + "@types/json-schema" "*" + +"@types/estree@*": + version "1.0.0" + resolved "https://registry.npmmirror.com/@types/estree/-/estree-1.0.0.tgz#5fb2e536c1ae9bf35366eed879e827fa59ca41c2" + integrity sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ== + +"@types/estree@^0.0.51": + version "0.0.51" + resolved "https://registry.npmmirror.com/@types/estree/-/estree-0.0.51.tgz#cfd70924a25a3fd32b218e5e420e6897e1ac4f40" + integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ== + +"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.18": + version "4.17.31" + resolved "https://registry.npmmirror.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz#a1139efeab4e7323834bb0226e62ac019f474b2f" + integrity sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q== + dependencies: + "@types/node" "*" + "@types/qs" "*" + "@types/range-parser" "*" + +"@types/express@*", "@types/express@^4.17.13": + version "4.17.14" + resolved "https://registry.npmmirror.com/@types/express/-/express-4.17.14.tgz#143ea0557249bc1b3b54f15db4c81c3d4eb3569c" + integrity sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg== + dependencies: + "@types/body-parser" "*" + "@types/express-serve-static-core" "^4.17.18" + "@types/qs" "*" + "@types/serve-static" "*" + +"@types/html-minifier-terser@^6.0.0": + version "6.1.0" + resolved "https://registry.npmmirror.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35" + integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== + +"@types/http-proxy@^1.17.8": + version "1.17.9" + resolved "https://registry.npmmirror.com/@types/http-proxy/-/http-proxy-1.17.9.tgz#7f0e7931343761efde1e2bf48c40f02f3f75705a" + integrity sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw== + dependencies: + "@types/node" "*" + +"@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": + version "7.0.11" + resolved "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" + integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== + +"@types/mime@*": + version "3.0.1" + resolved "https://registry.npmmirror.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10" + integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA== + +"@types/minimist@^1.2.0": + version "1.2.2" + resolved "https://registry.npmmirror.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" + integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== + +"@types/node@*": + version "18.11.9" + resolved "https://registry.npmmirror.com/@types/node/-/node-18.11.9.tgz#02d013de7058cea16d36168ef2fc653464cfbad4" + integrity sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg== + +"@types/normalize-package-data@^2.4.0": + version "2.4.1" + resolved "https://registry.npmmirror.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" + integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== + +"@types/parse-json@^4.0.0": + version "4.0.0" + resolved "https://registry.npmmirror.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" + integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== + +"@types/qs@*": + version "6.9.7" + resolved "https://registry.npmmirror.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" + integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== + +"@types/range-parser@*": + version "1.2.4" + resolved "https://registry.npmmirror.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" + integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== + +"@types/retry@0.12.0": + version "0.12.0" + resolved "https://registry.npmmirror.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d" + integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== + +"@types/serve-index@^1.9.1": + version "1.9.1" + resolved "https://registry.npmmirror.com/@types/serve-index/-/serve-index-1.9.1.tgz#1b5e85370a192c01ec6cec4735cf2917337a6278" + integrity sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg== + dependencies: + "@types/express" "*" + +"@types/serve-static@*", "@types/serve-static@^1.13.10": + version "1.15.0" + resolved "https://registry.npmmirror.com/@types/serve-static/-/serve-static-1.15.0.tgz#c7930ff61afb334e121a9da780aac0d9b8f34155" + integrity sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg== + dependencies: + "@types/mime" "*" + "@types/node" "*" + +"@types/sockjs@^0.3.33": + version "0.3.33" + resolved "https://registry.npmmirror.com/@types/sockjs/-/sockjs-0.3.33.tgz#570d3a0b99ac995360e3136fd6045113b1bd236f" + integrity sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw== + dependencies: + "@types/node" "*" + +"@types/ws@^8.5.1": + version "8.5.3" + resolved "https://registry.npmmirror.com/@types/ws/-/ws-8.5.3.tgz#7d25a1ffbecd3c4f2d35068d0b283c037003274d" + integrity sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w== + dependencies: + "@types/node" "*" + +"@types/zrender@*": + version "4.0.3" + resolved "https://registry.npmmirror.com/@types/zrender/-/zrender-4.0.3.tgz#d18b31648b2f11b9ec672a560836e1887a965ec1" + integrity sha512-EPI269lkHNsObwILJ1k1z7znLjKyePuWRy/XKK0shSGpBb9cIX307arcwJV4+2NeZj5wEjN06r4D8yFv7sI06g== + +"@vue/babel-helper-vue-jsx-merge-props@^1.4.0": + version "1.4.0" + resolved "https://registry.npmmirror.com/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.4.0.tgz#8d53a1e21347db8edbe54d339902583176de09f2" + integrity sha512-JkqXfCkUDp4PIlFdDQ0TdXoIejMtTHP67/pvxlgeY+u5k3LEdKuWZ3LK6xkxo52uDoABIVyRwqVkfLQJhk7VBA== + +"@vue/babel-helper-vue-transform-on@^1.0.2": + version "1.0.2" + resolved "https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.2.tgz#9b9c691cd06fc855221a2475c3cc831d774bc7dc" + integrity sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA== + +"@vue/babel-plugin-jsx@^1.0.3": + version "1.1.1" + resolved "https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.1.tgz#0c5bac27880d23f89894cd036a37b55ef61ddfc1" + integrity sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w== + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@babel/plugin-syntax-jsx" "^7.0.0" + "@babel/template" "^7.0.0" + "@babel/traverse" "^7.0.0" + "@babel/types" "^7.0.0" + "@vue/babel-helper-vue-transform-on" "^1.0.2" + camelcase "^6.0.0" + html-tags "^3.1.0" + svg-tags "^1.0.0" + +"@vue/babel-plugin-transform-vue-jsx@^1.4.0": + version "1.4.0" + resolved "https://registry.npmmirror.com/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.4.0.tgz#4d4b3d46a39ea62b7467dd6e26ce47f7ceafb2fe" + integrity sha512-Fmastxw4MMx0vlgLS4XBX0XiBbUFzoMGeVXuMV08wyOfXdikAFqBTuYPR0tlk+XskL19EzHc39SgjrPGY23JnA== + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@babel/plugin-syntax-jsx" "^7.2.0" + "@vue/babel-helper-vue-jsx-merge-props" "^1.4.0" + html-tags "^2.0.0" + lodash.kebabcase "^4.1.1" + svg-tags "^1.0.0" + +"@vue/babel-preset-app@^5.0.8": + version "5.0.8" + resolved "https://registry.npmmirror.com/@vue/babel-preset-app/-/babel-preset-app-5.0.8.tgz#ce38f76314f5265d62a89756ef264c21f1d351a1" + integrity sha512-yl+5qhpjd8e1G4cMXfORkkBlvtPCIgmRf3IYCWYDKIQ7m+PPa5iTm4feiNmCMD6yGqQWMhhK/7M3oWGL9boKwg== + dependencies: + "@babel/core" "^7.12.16" + "@babel/helper-compilation-targets" "^7.12.16" + "@babel/helper-module-imports" "^7.12.13" + "@babel/plugin-proposal-class-properties" "^7.12.13" + "@babel/plugin-proposal-decorators" "^7.12.13" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-jsx" "^7.12.13" + "@babel/plugin-transform-runtime" "^7.12.15" + "@babel/preset-env" "^7.12.16" + "@babel/runtime" "^7.12.13" + "@vue/babel-plugin-jsx" "^1.0.3" + "@vue/babel-preset-jsx" "^1.1.2" + babel-plugin-dynamic-import-node "^2.3.3" + core-js "^3.8.3" + core-js-compat "^3.8.3" + semver "^7.3.4" + +"@vue/babel-preset-jsx@^1.1.2": + version "1.4.0" + resolved "https://registry.npmmirror.com/@vue/babel-preset-jsx/-/babel-preset-jsx-1.4.0.tgz#f4914ba314235ab097bc4372ed67473c0780bfcc" + integrity sha512-QmfRpssBOPZWL5xw7fOuHNifCQcNQC1PrOo/4fu6xlhlKJJKSA3HqX92Nvgyx8fqHZTUGMPHmFA+IDqwXlqkSA== + dependencies: + "@vue/babel-helper-vue-jsx-merge-props" "^1.4.0" + "@vue/babel-plugin-transform-vue-jsx" "^1.4.0" + "@vue/babel-sugar-composition-api-inject-h" "^1.4.0" + "@vue/babel-sugar-composition-api-render-instance" "^1.4.0" + "@vue/babel-sugar-functional-vue" "^1.4.0" + "@vue/babel-sugar-inject-h" "^1.4.0" + "@vue/babel-sugar-v-model" "^1.4.0" + "@vue/babel-sugar-v-on" "^1.4.0" + +"@vue/babel-sugar-composition-api-inject-h@^1.4.0": + version "1.4.0" + resolved "https://registry.npmmirror.com/@vue/babel-sugar-composition-api-inject-h/-/babel-sugar-composition-api-inject-h-1.4.0.tgz#187e1389f8871d89ece743bb50aed713be9d6c85" + integrity sha512-VQq6zEddJHctnG4w3TfmlVp5FzDavUSut/DwR0xVoe/mJKXyMcsIibL42wPntozITEoY90aBV0/1d2KjxHU52g== + dependencies: + "@babel/plugin-syntax-jsx" "^7.2.0" + +"@vue/babel-sugar-composition-api-render-instance@^1.4.0": + version "1.4.0" + resolved "https://registry.npmmirror.com/@vue/babel-sugar-composition-api-render-instance/-/babel-sugar-composition-api-render-instance-1.4.0.tgz#2c1607ae6dffdab47e785bc01fa45ba756e992c1" + integrity sha512-6ZDAzcxvy7VcnCjNdHJ59mwK02ZFuP5CnucloidqlZwVQv5CQLijc3lGpR7MD3TWFi78J7+a8J56YxbCtHgT9Q== + dependencies: + "@babel/plugin-syntax-jsx" "^7.2.0" + +"@vue/babel-sugar-functional-vue@^1.4.0": + version "1.4.0" + resolved "https://registry.npmmirror.com/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.4.0.tgz#60da31068567082287c7337c66ef4df04e0a1029" + integrity sha512-lTEB4WUFNzYt2In6JsoF9sAYVTo84wC4e+PoZWSgM6FUtqRJz7wMylaEhSRgG71YF+wfLD6cc9nqVeXN2rwBvw== + dependencies: + "@babel/plugin-syntax-jsx" "^7.2.0" + +"@vue/babel-sugar-inject-h@^1.4.0": + version "1.4.0" + resolved "https://registry.npmmirror.com/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.4.0.tgz#bf39aa6631fb1d0399b1c49b4c59e1c8899b4363" + integrity sha512-muwWrPKli77uO2fFM7eA3G1lAGnERuSz2NgAxuOLzrsTlQl8W4G+wwbM4nB6iewlKbwKRae3nL03UaF5ffAPMA== + dependencies: + "@babel/plugin-syntax-jsx" "^7.2.0" + +"@vue/babel-sugar-v-model@^1.4.0": + version "1.4.0" + resolved "https://registry.npmmirror.com/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.4.0.tgz#a51d986609f430c4f70ada3a93cc560a2970f720" + integrity sha512-0t4HGgXb7WHYLBciZzN5s0Hzqan4Ue+p/3FdQdcaHAb7s5D9WZFGoSxEZHrR1TFVZlAPu1bejTKGeAzaaG3NCQ== + dependencies: + "@babel/plugin-syntax-jsx" "^7.2.0" + "@vue/babel-helper-vue-jsx-merge-props" "^1.4.0" + "@vue/babel-plugin-transform-vue-jsx" "^1.4.0" + camelcase "^5.0.0" + html-tags "^2.0.0" + svg-tags "^1.0.0" + +"@vue/babel-sugar-v-on@^1.4.0": + version "1.4.0" + resolved "https://registry.npmmirror.com/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.4.0.tgz#43b7106a9672d8cbeefc0eb8afe1d376edc6166e" + integrity sha512-m+zud4wKLzSKgQrWwhqRObWzmTuyzl6vOP7024lrpeJM4x2UhQtRDLgYjXAw9xBXjCwS0pP9kXjg91F9ZNo9JA== + dependencies: + "@babel/plugin-syntax-jsx" "^7.2.0" + "@vue/babel-plugin-transform-vue-jsx" "^1.4.0" + camelcase "^5.0.0" + +"@vue/cli-overlay@^5.0.8": + version "5.0.8" + resolved "https://registry.npmmirror.com/@vue/cli-overlay/-/cli-overlay-5.0.8.tgz#b61477acdc43bbd42fce6326d228471201ecdcdd" + integrity sha512-KmtievE/B4kcXp6SuM2gzsnSd8WebkQpg3XaB6GmFh1BJGRqa1UiW9up7L/Q67uOdTigHxr5Ar2lZms4RcDjwQ== + +"@vue/cli-plugin-babel@^5.0.8": + version "5.0.8" + resolved "https://registry.npmmirror.com/@vue/cli-plugin-babel/-/cli-plugin-babel-5.0.8.tgz#54f9a07900f29baff54803dcfa916c602894feb7" + integrity sha512-a4qqkml3FAJ3auqB2kN2EMPocb/iu0ykeELwed+9B1c1nQ1HKgslKMHMPavYx3Cd/QAx2mBD4hwKBqZXEI/CsQ== + dependencies: + "@babel/core" "^7.12.16" + "@vue/babel-preset-app" "^5.0.8" + "@vue/cli-shared-utils" "^5.0.8" + babel-loader "^8.2.2" + thread-loader "^3.0.0" + webpack "^5.54.0" + +"@vue/cli-plugin-eslint@^5.0.8": + version "5.0.8" + resolved "https://registry.npmmirror.com/@vue/cli-plugin-eslint/-/cli-plugin-eslint-5.0.8.tgz#754939265c2c5b746fa36c7d7705a89138e193bf" + integrity sha512-d11+I5ONYaAPW1KyZj9GlrV/E6HZePq5L5eAF5GgoVdu6sxr6bDgEoxzhcS1Pk2eh8rn1MxG/FyyR+eCBj/CNg== + dependencies: + "@vue/cli-shared-utils" "^5.0.8" + eslint-webpack-plugin "^3.1.0" + globby "^11.0.2" + webpack "^5.54.0" + yorkie "^2.0.0" + +"@vue/cli-plugin-router@^5.0.8": + version "5.0.8" + resolved "https://registry.npmmirror.com/@vue/cli-plugin-router/-/cli-plugin-router-5.0.8.tgz#a113ec626f3d4216d20496c42d35533bce9e889f" + integrity sha512-Gmv4dsGdAsWPqVijz3Ux2OS2HkMrWi1ENj2cYL75nUeL+Xj5HEstSqdtfZ0b1q9NCce+BFB6QnHfTBXc/fCvMg== + dependencies: + "@vue/cli-shared-utils" "^5.0.8" + +"@vue/cli-plugin-vuex@^5.0.8": + version "5.0.8" + resolved "https://registry.npmmirror.com/@vue/cli-plugin-vuex/-/cli-plugin-vuex-5.0.8.tgz#0d4cb3020f9102bea9288d750729dde176c66ccd" + integrity sha512-HSYWPqrunRE5ZZs8kVwiY6oWcn95qf/OQabwLfprhdpFWAGtLStShjsGED2aDpSSeGAskQETrtR/5h7VqgIlBA== + +"@vue/cli-service@^5.0.8": + version "5.0.8" + resolved "https://registry.npmmirror.com/@vue/cli-service/-/cli-service-5.0.8.tgz#cf3f6f1b7bf0fba9cdab86b6bec4f9897f982dac" + integrity sha512-nV7tYQLe7YsTtzFrfOMIHc5N2hp5lHG2rpYr0aNja9rNljdgcPZLyQRb2YRivTHqTv7lI962UXFURcpStHgyFw== + dependencies: + "@babel/helper-compilation-targets" "^7.12.16" + "@soda/friendly-errors-webpack-plugin" "^1.8.0" + "@soda/get-current-script" "^1.0.2" + "@types/minimist" "^1.2.0" + "@vue/cli-overlay" "^5.0.8" + "@vue/cli-plugin-router" "^5.0.8" + "@vue/cli-plugin-vuex" "^5.0.8" + "@vue/cli-shared-utils" "^5.0.8" + "@vue/component-compiler-utils" "^3.3.0" + "@vue/vue-loader-v15" "npm:vue-loader@^15.9.7" + "@vue/web-component-wrapper" "^1.3.0" + acorn "^8.0.5" + acorn-walk "^8.0.2" + address "^1.1.2" + autoprefixer "^10.2.4" + browserslist "^4.16.3" + case-sensitive-paths-webpack-plugin "^2.3.0" + cli-highlight "^2.1.10" + clipboardy "^2.3.0" + cliui "^7.0.4" + copy-webpack-plugin "^9.0.1" + css-loader "^6.5.0" + css-minimizer-webpack-plugin "^3.0.2" + cssnano "^5.0.0" + debug "^4.1.1" + default-gateway "^6.0.3" + dotenv "^10.0.0" + dotenv-expand "^5.1.0" + fs-extra "^9.1.0" + globby "^11.0.2" + hash-sum "^2.0.0" + html-webpack-plugin "^5.1.0" + is-file-esm "^1.0.0" + launch-editor-middleware "^2.2.1" + lodash.defaultsdeep "^4.6.1" + lodash.mapvalues "^4.6.0" + mini-css-extract-plugin "^2.5.3" + minimist "^1.2.5" + module-alias "^2.2.2" + portfinder "^1.0.26" + postcss "^8.2.6" + postcss-loader "^6.1.1" + progress-webpack-plugin "^1.0.12" + ssri "^8.0.1" + terser-webpack-plugin "^5.1.1" + thread-loader "^3.0.0" + vue-loader "^17.0.0" + vue-style-loader "^4.1.3" + webpack "^5.54.0" + webpack-bundle-analyzer "^4.4.0" + webpack-chain "^6.5.1" + webpack-dev-server "^4.7.3" + webpack-merge "^5.7.3" + webpack-virtual-modules "^0.4.2" + whatwg-fetch "^3.6.2" + +"@vue/cli-shared-utils@^5.0.8": + version "5.0.8" + resolved "https://registry.npmmirror.com/@vue/cli-shared-utils/-/cli-shared-utils-5.0.8.tgz#75fc96528eba2b1c7e33cb7e989a984ddef99c8a" + integrity sha512-uK2YB7bBVuQhjOJF+O52P9yFMXeJVj7ozqJkwYE9PlMHL1LMHjtCYm4cSdOebuPzyP+/9p0BimM/OqxsevIopQ== + dependencies: + "@achrinza/node-ipc" "^9.2.5" + chalk "^4.1.2" + execa "^1.0.0" + joi "^17.4.0" + launch-editor "^2.2.1" + lru-cache "^6.0.0" + node-fetch "^2.6.7" + open "^8.0.2" + ora "^5.3.0" + read-pkg "^5.1.1" + semver "^7.3.4" + strip-ansi "^6.0.0" + +"@vue/compiler-sfc@2.7.14": + version "2.7.14" + resolved "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-2.7.14.tgz#3446fd2fbb670d709277fc3ffa88efc5e10284fd" + integrity sha512-aNmNHyLPsw+sVvlQFQ2/8sjNuLtK54TC6cuKnVzAY93ks4ZBrvwQSnkkIh7bsbNhum5hJBS00wSDipQ937f5DA== + dependencies: + "@babel/parser" "^7.18.4" + postcss "^8.4.14" + source-map "^0.6.1" + +"@vue/component-compiler-utils@^3.1.0", "@vue/component-compiler-utils@^3.3.0": + version "3.3.0" + resolved "https://registry.npmmirror.com/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz#f9f5fb53464b0c37b2c8d2f3fbfe44df60f61dc9" + integrity sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ== + dependencies: + consolidate "^0.15.1" + hash-sum "^1.0.2" + lru-cache "^4.1.2" + merge-source-map "^1.1.0" + postcss "^7.0.36" + postcss-selector-parser "^6.0.2" + source-map "~0.6.1" + vue-template-es2015-compiler "^1.9.0" + optionalDependencies: + prettier "^1.18.2 || ^2.0.0" + +"@vue/vue-loader-v15@npm:vue-loader@^15.9.7": + version "15.10.1" + resolved "https://registry.npmmirror.com/vue-loader/-/vue-loader-15.10.1.tgz#c451c4cd05a911aae7b5dbbbc09fb913fb3cca18" + integrity sha512-SaPHK1A01VrNthlix6h1hq4uJu7S/z0kdLUb6klubo738NeQoLbS6V9/d8Pv19tU0XdQKju3D1HSKuI8wJ5wMA== + dependencies: + "@vue/component-compiler-utils" "^3.1.0" + hash-sum "^1.0.2" + loader-utils "^1.1.0" + vue-hot-reload-api "^2.3.0" + vue-style-loader "^4.1.0" + +"@vue/web-component-wrapper@^1.3.0": + version "1.3.0" + resolved "https://registry.npmmirror.com/@vue/web-component-wrapper/-/web-component-wrapper-1.3.0.tgz#b6b40a7625429d2bd7c2281ddba601ed05dc7f1a" + integrity sha512-Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA== + +"@webassemblyjs/ast@1.11.1": + version "1.11.1" + resolved "https://registry.npmmirror.com/@webassemblyjs/ast/-/ast-1.11.1.tgz#2bfd767eae1a6996f432ff7e8d7fc75679c0b6a7" + integrity sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw== + dependencies: + "@webassemblyjs/helper-numbers" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + +"@webassemblyjs/floating-point-hex-parser@1.11.1": + version "1.11.1" + resolved "https://registry.npmmirror.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz#f6c61a705f0fd7a6aecaa4e8198f23d9dc179e4f" + integrity sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ== + +"@webassemblyjs/helper-api-error@1.11.1": + version "1.11.1" + resolved "https://registry.npmmirror.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz#1a63192d8788e5c012800ba6a7a46c705288fd16" + integrity sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg== + +"@webassemblyjs/helper-buffer@1.11.1": + version "1.11.1" + resolved "https://registry.npmmirror.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz#832a900eb444884cde9a7cad467f81500f5e5ab5" + integrity sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA== + +"@webassemblyjs/helper-numbers@1.11.1": + version "1.11.1" + resolved "https://registry.npmmirror.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz#64d81da219fbbba1e3bd1bfc74f6e8c4e10a62ae" + integrity sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ== + dependencies: + "@webassemblyjs/floating-point-hex-parser" "1.11.1" + "@webassemblyjs/helper-api-error" "1.11.1" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/helper-wasm-bytecode@1.11.1": + version "1.11.1" + resolved "https://registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz#f328241e41e7b199d0b20c18e88429c4433295e1" + integrity sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q== + +"@webassemblyjs/helper-wasm-section@1.11.1": + version "1.11.1" + resolved "https://registry.npmmirror.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz#21ee065a7b635f319e738f0dd73bfbda281c097a" + integrity sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg== + dependencies: + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/helper-buffer" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + "@webassemblyjs/wasm-gen" "1.11.1" + +"@webassemblyjs/ieee754@1.11.1": + version "1.11.1" + resolved "https://registry.npmmirror.com/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz#963929e9bbd05709e7e12243a099180812992614" + integrity sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ== + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.11.1": + version "1.11.1" + resolved "https://registry.npmmirror.com/@webassemblyjs/leb128/-/leb128-1.11.1.tgz#ce814b45574e93d76bae1fb2644ab9cdd9527aa5" + integrity sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw== + dependencies: + "@xtuc/long" "4.2.2" + +"@webassemblyjs/utf8@1.11.1": + version "1.11.1" + resolved "https://registry.npmmirror.com/@webassemblyjs/utf8/-/utf8-1.11.1.tgz#d1f8b764369e7c6e6bae350e854dec9a59f0a3ff" + integrity sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ== + +"@webassemblyjs/wasm-edit@1.11.1": + version "1.11.1" + resolved "https://registry.npmmirror.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz#ad206ebf4bf95a058ce9880a8c092c5dec8193d6" + integrity sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA== + dependencies: + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/helper-buffer" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + "@webassemblyjs/helper-wasm-section" "1.11.1" + "@webassemblyjs/wasm-gen" "1.11.1" + "@webassemblyjs/wasm-opt" "1.11.1" + "@webassemblyjs/wasm-parser" "1.11.1" + "@webassemblyjs/wast-printer" "1.11.1" + +"@webassemblyjs/wasm-gen@1.11.1": + version "1.11.1" + resolved "https://registry.npmmirror.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz#86c5ea304849759b7d88c47a32f4f039ae3c8f76" + integrity sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA== + dependencies: + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + "@webassemblyjs/ieee754" "1.11.1" + "@webassemblyjs/leb128" "1.11.1" + "@webassemblyjs/utf8" "1.11.1" + +"@webassemblyjs/wasm-opt@1.11.1": + version "1.11.1" + resolved "https://registry.npmmirror.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz#657b4c2202f4cf3b345f8a4c6461c8c2418985f2" + integrity sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw== + dependencies: + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/helper-buffer" "1.11.1" + "@webassemblyjs/wasm-gen" "1.11.1" + "@webassemblyjs/wasm-parser" "1.11.1" + +"@webassemblyjs/wasm-parser@1.11.1": + version "1.11.1" + resolved "https://registry.npmmirror.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz#86ca734534f417e9bd3c67c7a1c75d8be41fb199" + integrity sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA== + dependencies: + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/helper-api-error" "1.11.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.1" + "@webassemblyjs/ieee754" "1.11.1" + "@webassemblyjs/leb128" "1.11.1" + "@webassemblyjs/utf8" "1.11.1" + +"@webassemblyjs/wast-printer@1.11.1": + version "1.11.1" + resolved "https://registry.npmmirror.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz#d0c73beda8eec5426f10ae8ef55cee5e7084c2f0" + integrity sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg== + dependencies: + "@webassemblyjs/ast" "1.11.1" + "@xtuc/long" "4.2.2" + +"@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.npmmirror.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + +"@xtuc/long@4.2.2": + version "4.2.2" + resolved "https://registry.npmmirror.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + +accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: + version "1.3.8" + resolved "https://registry.npmmirror.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + dependencies: + mime-types "~2.1.34" + negotiator "0.6.3" + +acorn-import-assertions@^1.7.6: + version "1.8.0" + resolved "https://registry.npmmirror.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz#ba2b5939ce62c238db6d93d81c9b111b29b855e9" + integrity sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw== + +acorn-jsx@^5.2.0: + version "5.3.2" + resolved "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn-walk@^8.0.0, acorn-walk@^8.0.2: + version "8.2.0" + resolved "https://registry.npmmirror.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + +acorn@^7.1.1: + version "7.4.1" + resolved "https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + +acorn@^8.0.4, acorn@^8.0.5, acorn@^8.5.0, acorn@^8.7.1: + version "8.8.1" + resolved "https://registry.npmmirror.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73" + integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA== + +address@^1.1.2: + version "1.2.1" + resolved "https://registry.npmmirror.com/address/-/address-1.2.1.tgz#25bb61095b7522d65b357baa11bc05492d4c8acd" + integrity sha512-B+6bi5D34+fDYENiH5qOlA0cV2rAGKuWZ9LeyUUehbXy8e0VS9e498yO0Jeeh+iM+6KbfudHTFjXw2MmJD4QRA== + +ajv-formats@^2.1.1: + version "2.1.1" + resolved "https://registry.npmmirror.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" + integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== + dependencies: + ajv "^8.0.0" + +ajv-keywords@^3.5.2: + version "3.5.2" + resolved "https://registry.npmmirror.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" + integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== + +ajv-keywords@^5.0.0: + version "5.1.0" + resolved "https://registry.npmmirror.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" + integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== + dependencies: + fast-deep-equal "^3.1.3" + +ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.4, ajv@^6.12.5: + version "6.12.6" + resolved "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ajv@^8.0.0, ajv@^8.8.0: + version "8.11.2" + resolved "https://registry.npmmirror.com/ajv/-/ajv-8.11.2.tgz#aecb20b50607acf2569b6382167b65a96008bb78" + integrity sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +ansi-escapes@^3.0.0: + version "3.2.0" + resolved "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" + integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== + +ansi-escapes@^4.2.1: + version "4.3.2" + resolved "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + +ansi-html-community@^0.0.8: + version "0.0.8" + resolved "https://registry.npmmirror.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" + integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== + +ansi-regex@^3.0.0: + version "3.0.1" + resolved "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" + integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== + +ansi-regex@^4.1.0: + version "4.1.1" + resolved "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" + integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^3.2.0, ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.npmmirror.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +arch@^2.1.1: + version "2.2.0" + resolved "https://registry.npmmirror.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" + integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.npmmirror.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.npmmirror.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== + +array-flatten@^2.1.2: + version "2.1.2" + resolved "https://registry.npmmirror.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" + integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +astral-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== + +async-validator@~1.8.1: + version "1.8.5" + resolved "https://registry.npmmirror.com/async-validator/-/async-validator-1.8.5.tgz#dc3e08ec1fd0dddb67e60842f02c0cd1cec6d7f0" + integrity sha512-tXBM+1m056MAX0E8TL2iCjg8WvSyXu0Zc8LNtYqrVeyoL3+esHRZ4SieE9fKQyyU09uONjnMEjrNBMqT0mbvmA== + dependencies: + babel-runtime "6.x" + +async@^2.6.4: + version "2.6.4" + resolved "https://registry.npmmirror.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221" + integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA== + dependencies: + lodash "^4.17.14" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +at-least-node@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" + integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== + +autoprefixer@^10.2.4: + version "10.4.13" + resolved "https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.13.tgz#b5136b59930209a321e9fa3dca2e7c4d223e83a8" + integrity sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg== + dependencies: + browserslist "^4.21.4" + caniuse-lite "^1.0.30001426" + fraction.js "^4.2.0" + normalize-range "^0.1.2" + picocolors "^1.0.0" + postcss-value-parser "^4.2.0" + +axios@^0.27.2: + version "0.27.2" + resolved "https://registry.npmmirror.com/axios/-/axios-0.27.2.tgz#207658cc8621606e586c85db4b41a750e756d972" + integrity sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ== + dependencies: + follow-redirects "^1.14.9" + form-data "^4.0.0" + +babel-eslint@^10.0.3: + version "10.1.0" + resolved "https://registry.npmmirror.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" + integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg== + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/parser" "^7.7.0" + "@babel/traverse" "^7.7.0" + "@babel/types" "^7.7.0" + eslint-visitor-keys "^1.0.0" + resolve "^1.12.0" + +babel-helper-vue-jsx-merge-props@^2.0.0: + version "2.0.3" + resolved "https://registry.npmmirror.com/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-2.0.3.tgz#22aebd3b33902328e513293a8e4992b384f9f1b6" + integrity sha512-gsLiKK7Qrb7zYJNgiXKpXblxbV5ffSwR0f5whkPAaBAR4fhi6bwRZxX9wBlIc5M/v8CCkXUbXZL4N/nSE97cqg== + +babel-loader@^8.2.2: + version "8.3.0" + resolved "https://registry.npmmirror.com/babel-loader/-/babel-loader-8.3.0.tgz#124936e841ba4fe8176786d6ff28add1f134d6a8" + integrity sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q== + dependencies: + find-cache-dir "^3.3.1" + loader-utils "^2.0.0" + make-dir "^3.1.0" + schema-utils "^2.6.5" + +babel-plugin-dynamic-import-node@^2.3.3: + version "2.3.3" + resolved "https://registry.npmmirror.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" + integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== + dependencies: + object.assign "^4.1.0" + +babel-plugin-polyfill-corejs2@^0.3.3: + version "0.3.3" + resolved "https://registry.npmmirror.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz#5d1bd3836d0a19e1b84bbf2d9640ccb6f951c122" + integrity sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q== + dependencies: + "@babel/compat-data" "^7.17.7" + "@babel/helper-define-polyfill-provider" "^0.3.3" + semver "^6.1.1" + +babel-plugin-polyfill-corejs3@^0.6.0: + version "0.6.0" + resolved "https://registry.npmmirror.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz#56ad88237137eade485a71b52f72dbed57c6230a" + integrity sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.3.3" + core-js-compat "^3.25.1" + +babel-plugin-polyfill-regenerator@^0.4.1: + version "0.4.1" + resolved "https://registry.npmmirror.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz#390f91c38d90473592ed43351e801a9d3e0fd747" + integrity sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.3.3" + +babel-runtime@6.x: + version "6.26.0" + resolved "https://registry.npmmirror.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" + integrity sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g== + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.11.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +batch@0.6.1: + version "0.6.1" + resolved "https://registry.npmmirror.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" + integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== + +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.npmmirror.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bl@^4.1.0: + version "4.1.0" + resolved "https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +bluebird@^3.1.1: + version "3.7.2" + resolved "https://registry.npmmirror.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +body-parser@1.20.1: + version "1.20.1" + resolved "https://registry.npmmirror.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" + integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== + dependencies: + bytes "3.1.2" + content-type "~1.0.4" + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + http-errors "2.0.0" + iconv-lite "0.4.24" + on-finished "2.4.1" + qs "6.11.0" + raw-body "2.5.1" + type-is "~1.6.18" + unpipe "1.0.0" + +bonjour-service@^1.0.11: + version "1.0.14" + resolved "https://registry.npmmirror.com/bonjour-service/-/bonjour-service-1.0.14.tgz#c346f5bc84e87802d08f8d5a60b93f758e514ee7" + integrity sha512-HIMbgLnk1Vqvs6B4Wq5ep7mxvj9sGz5d1JJyDNSGNIdA/w2MCz6GTjWTdjqOJV1bEPj+6IkxDvWNFKEBxNt4kQ== + dependencies: + array-flatten "^2.1.2" + dns-equal "^1.0.0" + fast-deep-equal "^3.1.3" + multicast-dns "^7.2.5" + +boolbase@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.3, browserslist@^4.16.6, browserslist@^4.21.3, browserslist@^4.21.4: + version "4.21.4" + resolved "https://registry.npmmirror.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987" + integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw== + dependencies: + caniuse-lite "^1.0.30001400" + electron-to-chromium "^1.4.251" + node-releases "^2.0.6" + update-browserslist-db "^1.0.9" + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== + +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.npmmirror.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camel-case@^4.1.2: + version "4.1.2" + resolved "https://registry.npmmirror.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" + integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== + dependencies: + pascal-case "^3.1.2" + tslib "^2.0.3" + +camelcase@^5.0.0: + version "5.3.1" + resolved "https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.0.0: + version "6.3.0" + resolved "https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +caniuse-api@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" + integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== + dependencies: + browserslist "^4.0.0" + caniuse-lite "^1.0.0" + lodash.memoize "^4.1.2" + lodash.uniq "^4.5.0" + +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001400, caniuse-lite@^1.0.30001426: + version "1.0.30001434" + resolved "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001434.tgz#ec1ec1cfb0a93a34a0600d37903853030520a4e5" + integrity sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA== + +case-sensitive-paths-webpack-plugin@^2.3.0: + version "2.4.0" + resolved "https://registry.npmmirror.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz#db64066c6422eed2e08cc14b986ca43796dbc6d4" + integrity sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw== + +chalk@^2.0.0, chalk@^2.1.0: + version "2.4.2" + resolved "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: + version "4.1.2" + resolved "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.npmmirror.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + +"chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.3: + version "3.5.3" + resolved "https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +chrome-trace-event@^1.0.2: + version "1.0.3" + resolved "https://registry.npmmirror.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" + integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== + +ci-info@^1.5.0: + version "1.6.0" + resolved "https://registry.npmmirror.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" + integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A== + +clean-css@^5.2.2: + version "5.3.1" + resolved "https://registry.npmmirror.com/clean-css/-/clean-css-5.3.1.tgz#d0610b0b90d125196a2894d35366f734e5d7aa32" + integrity sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg== + dependencies: + source-map "~0.6.0" + +cli-cursor@^2.0.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + integrity sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw== + dependencies: + restore-cursor "^2.0.0" + +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + +cli-highlight@^2.1.10: + version "2.1.11" + resolved "https://registry.npmmirror.com/cli-highlight/-/cli-highlight-2.1.11.tgz#49736fa452f0aaf4fae580e30acb26828d2dc1bf" + integrity sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg== + dependencies: + chalk "^4.0.0" + highlight.js "^10.7.1" + mz "^2.4.0" + parse5 "^5.1.1" + parse5-htmlparser2-tree-adapter "^6.0.0" + yargs "^16.0.0" + +cli-spinners@^2.5.0: + version "2.7.0" + resolved "https://registry.npmmirror.com/cli-spinners/-/cli-spinners-2.7.0.tgz#f815fd30b5f9eaac02db604c7a231ed7cb2f797a" + integrity sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw== + +cli-width@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" + integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + +clipboardy@^2.3.0: + version "2.3.0" + resolved "https://registry.npmmirror.com/clipboardy/-/clipboardy-2.3.0.tgz#3c2903650c68e46a91b388985bc2774287dba290" + integrity sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ== + dependencies: + arch "^2.1.1" + execa "^1.0.0" + is-wsl "^2.1.1" + +cliui@^7.0.2, cliui@^7.0.4: + version "7.0.4" + resolved "https://registry.npmmirror.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.npmmirror.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.npmmirror.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +colord@^2.9.1: + version "2.9.3" + resolved "https://registry.npmmirror.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" + integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== + +colorette@^2.0.10: + version "2.0.19" + resolved "https://registry.npmmirror.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798" + integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ== + +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@^2.20.0: + version "2.20.3" + resolved "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +commander@^7.2.0: + version "7.2.0" + resolved "https://registry.npmmirror.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" + integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== + +commander@^8.3.0: + version "8.3.0" + resolved "https://registry.npmmirror.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" + integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== + +compressible@~2.0.16: + version "2.0.18" + resolved "https://registry.npmmirror.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== + dependencies: + mime-db ">= 1.43.0 < 2" + +compression@^1.7.4: + version "1.7.4" + resolved "https://registry.npmmirror.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + dependencies: + accepts "~1.3.5" + bytes "3.0.0" + compressible "~2.0.16" + debug "2.6.9" + on-headers "~1.0.2" + safe-buffer "5.1.2" + vary "~1.1.2" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +connect-history-api-fallback@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8" + integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== + +consolidate@^0.15.1: + version "0.15.1" + resolved "https://registry.npmmirror.com/consolidate/-/consolidate-0.15.1.tgz#21ab043235c71a07d45d9aad98593b0dba56bab7" + integrity sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw== + dependencies: + bluebird "^3.1.1" + +content-disposition@0.5.4: + version "0.5.4" + resolved "https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== + dependencies: + safe-buffer "5.2.1" + +content-type@~1.0.4: + version "1.0.4" + resolved "https://registry.npmmirror.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== + +convert-source-map@^1.7.0: + version "1.9.0" + resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== + +cookie@0.5.0: + version "0.5.0" + resolved "https://registry.npmmirror.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" + integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== + +copy-webpack-plugin@^9.0.1: + version "9.1.0" + resolved "https://registry.npmmirror.com/copy-webpack-plugin/-/copy-webpack-plugin-9.1.0.tgz#2d2c460c4c4695ec0a58afb2801a1205256c4e6b" + integrity sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA== + dependencies: + fast-glob "^3.2.7" + glob-parent "^6.0.1" + globby "^11.0.3" + normalize-path "^3.0.0" + schema-utils "^3.1.1" + serialize-javascript "^6.0.0" + +core-js-compat@^3.25.1, core-js-compat@^3.8.3: + version "3.26.1" + resolved "https://registry.npmmirror.com/core-js-compat/-/core-js-compat-3.26.1.tgz#0e710b09ebf689d719545ac36e49041850f943df" + integrity sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A== + dependencies: + browserslist "^4.21.4" + +core-js@^2.4.0: + version "2.6.12" + resolved "https://registry.npmmirror.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" + integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== + +core-js@^3.6.4, core-js@^3.8.3: + version "3.26.1" + resolved "https://registry.npmmirror.com/core-js/-/core-js-3.26.1.tgz#7a9816dabd9ee846c1c0fe0e8fcad68f3709134e" + integrity sha512-21491RRQVzUn0GGM9Z1Jrpr6PNPxPi+Za8OM9q4tksTSnlbXXGKK1nXNg/QvwFYettXvSX6zWKCtHHfjN4puyA== + +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +cosmiconfig@^7.0.0: + version "7.1.0" + resolved "https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" + integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + +cross-spawn@^5.0.1: + version "5.1.0" + resolved "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + integrity sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A== + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^6.0.0, cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +css-declaration-sorter@^6.3.1: + version "6.3.1" + resolved "https://registry.npmmirror.com/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz#be5e1d71b7a992433fb1c542c7a1b835e45682ec" + integrity sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w== + +css-loader@^6.5.0: + version "6.7.2" + resolved "https://registry.npmmirror.com/css-loader/-/css-loader-6.7.2.tgz#26bc22401b5921686a10fbeba75d124228302304" + integrity sha512-oqGbbVcBJkm8QwmnNzrFrWTnudnRZC+1eXikLJl0n4ljcfotgRifpg2a1lKy8jTrc4/d9A/ap1GFq1jDKG7J+Q== + dependencies: + icss-utils "^5.1.0" + postcss "^8.4.18" + postcss-modules-extract-imports "^3.0.0" + postcss-modules-local-by-default "^4.0.0" + postcss-modules-scope "^3.0.0" + postcss-modules-values "^4.0.0" + postcss-value-parser "^4.2.0" + semver "^7.3.8" + +css-minimizer-webpack-plugin@^3.0.2: + version "3.4.1" + resolved "https://registry.npmmirror.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz#ab78f781ced9181992fe7b6e4f3422e76429878f" + integrity sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q== + dependencies: + cssnano "^5.0.6" + jest-worker "^27.0.2" + postcss "^8.3.5" + schema-utils "^4.0.0" + serialize-javascript "^6.0.0" + source-map "^0.6.1" + +css-select@^4.1.3: + version "4.3.0" + resolved "https://registry.npmmirror.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" + integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== + dependencies: + boolbase "^1.0.0" + css-what "^6.0.1" + domhandler "^4.3.1" + domutils "^2.8.0" + nth-check "^2.0.1" + +css-tree@^1.1.2, css-tree@^1.1.3: + version "1.1.3" + resolved "https://registry.npmmirror.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" + integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== + dependencies: + mdn-data "2.0.14" + source-map "^0.6.1" + +css-what@^6.0.1: + version "6.1.0" + resolved "https://registry.npmmirror.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" + integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +cssnano-preset-default@^5.2.13: + version "5.2.13" + resolved "https://registry.npmmirror.com/cssnano-preset-default/-/cssnano-preset-default-5.2.13.tgz#e7353b0c57975d1bdd97ac96e68e5c1b8c68e990" + integrity sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ== + dependencies: + css-declaration-sorter "^6.3.1" + cssnano-utils "^3.1.0" + postcss-calc "^8.2.3" + postcss-colormin "^5.3.0" + postcss-convert-values "^5.1.3" + postcss-discard-comments "^5.1.2" + postcss-discard-duplicates "^5.1.0" + postcss-discard-empty "^5.1.1" + postcss-discard-overridden "^5.1.0" + postcss-merge-longhand "^5.1.7" + postcss-merge-rules "^5.1.3" + postcss-minify-font-values "^5.1.0" + postcss-minify-gradients "^5.1.1" + postcss-minify-params "^5.1.4" + postcss-minify-selectors "^5.2.1" + postcss-normalize-charset "^5.1.0" + postcss-normalize-display-values "^5.1.0" + postcss-normalize-positions "^5.1.1" + postcss-normalize-repeat-style "^5.1.1" + postcss-normalize-string "^5.1.0" + postcss-normalize-timing-functions "^5.1.0" + postcss-normalize-unicode "^5.1.1" + postcss-normalize-url "^5.1.0" + postcss-normalize-whitespace "^5.1.1" + postcss-ordered-values "^5.1.3" + postcss-reduce-initial "^5.1.1" + postcss-reduce-transforms "^5.1.0" + postcss-svgo "^5.1.0" + postcss-unique-selectors "^5.1.1" + +cssnano-utils@^3.1.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz#95684d08c91511edfc70d2636338ca37ef3a6861" + integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA== + +cssnano@^5.0.0, cssnano@^5.0.6: + version "5.1.14" + resolved "https://registry.npmmirror.com/cssnano/-/cssnano-5.1.14.tgz#07b0af6da73641276fe5a6d45757702ebae2eb05" + integrity sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw== + dependencies: + cssnano-preset-default "^5.2.13" + lilconfig "^2.0.3" + yaml "^1.10.2" + +csso@^4.2.0: + version "4.2.0" + resolved "https://registry.npmmirror.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" + integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== + dependencies: + css-tree "^1.1.2" + +csstype@^3.1.0: + version "3.1.1" + resolved "https://registry.npmmirror.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9" + integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== + +de-indent@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" + integrity sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg== + +debug@2.6.9: + version "2.6.9" + resolved "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^3.2.7: + version "3.2.7" + resolved "https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: + version "4.3.4" + resolved "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +deep-is@~0.1.3: + version "0.1.4" + resolved "https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +deepmerge@^1.2.0, deepmerge@^1.5.2: + version "1.5.2" + resolved "https://registry.npmmirror.com/deepmerge/-/deepmerge-1.5.2.tgz#10499d868844cdad4fee0842df8c7f6f0c95a753" + integrity sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ== + +default-gateway@^6.0.3: + version "6.0.3" + resolved "https://registry.npmmirror.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71" + integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== + dependencies: + execa "^5.0.0" + +defaults@^1.0.3: + version "1.0.4" + resolved "https://registry.npmmirror.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== + dependencies: + clone "^1.0.2" + +define-lazy-prop@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" + integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== + +define-properties@^1.1.4: + version "1.1.4" + resolved "https://registry.npmmirror.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" + integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +depd@2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +depd@~1.1.2: + version "1.1.2" + resolved "https://registry.npmmirror.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== + +destroy@1.2.0: + version "1.2.0" + resolved "https://registry.npmmirror.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== + +detect-node@^2.0.4: + version "2.1.0" + resolved "https://registry.npmmirror.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" + integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +dns-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" + integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg== + +dns-packet@^5.2.2: + version "5.4.0" + resolved "https://registry.npmmirror.com/dns-packet/-/dns-packet-5.4.0.tgz#1f88477cf9f27e78a213fb6d118ae38e759a879b" + integrity sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g== + dependencies: + "@leichtgewicht/ip-codec" "^2.0.1" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dom-converter@^0.2.0: + version "0.2.0" + resolved "https://registry.npmmirror.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" + integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== + dependencies: + utila "~0.4" + +dom-serializer@^1.0.1: + version "1.4.1" + resolved "https://registry.npmmirror.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" + integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.2.0" + entities "^2.0.0" + +domelementtype@^2.0.1, domelementtype@^2.2.0: + version "2.3.0" + resolved "https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: + version "4.3.1" + resolved "https://registry.npmmirror.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" + integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== + dependencies: + domelementtype "^2.2.0" + +domutils@^2.5.2, domutils@^2.8.0: + version "2.8.0" + resolved "https://registry.npmmirror.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" + integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== + dependencies: + dom-serializer "^1.0.1" + domelementtype "^2.2.0" + domhandler "^4.2.0" + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmmirror.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +dotenv-expand@^5.1.0: + version "5.1.0" + resolved "https://registry.npmmirror.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0" + integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== + +dotenv@^10.0.0: + version "10.0.0" + resolved "https://registry.npmmirror.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" + integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== + +duplexer@^0.1.2: + version "0.1.2" + resolved "https://registry.npmmirror.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +easy-stack@1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/easy-stack/-/easy-stack-1.0.1.tgz#8afe4264626988cabb11f3c704ccd0c835411066" + integrity sha512-wK2sCs4feiiJeFXn3zvY0p41mdU5VUgbgs1rNsc/y5ngFUijdWd+iIN8eoyuZHKB8xN6BL4PdWmzqFmxNg6V2w== + +echarts@^5.3.3: + version "5.4.0" + resolved "https://registry.npmmirror.com/echarts/-/echarts-5.4.0.tgz#a9a8e5367293a397408d3bf3e2638b869249ce04" + integrity sha512-uPsO9VRUIKAdFOoH3B0aNg7NRVdN7aM39/OjovjO9MwmWsAkfGyeXJhK+dbRi51iDrQWliXV60/XwLA7kg3z0w== + dependencies: + tslib "2.3.0" + zrender "5.4.0" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + +electron-to-chromium@^1.4.251: + version "1.4.284" + resolved "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592" + integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA== + +element-ui@^2.15.9: + version "2.15.12" + resolved "https://registry.npmmirror.com/element-ui/-/element-ui-2.15.12.tgz#fdde927a54078b17a85541ff7c0f0dad32488b8e" + integrity sha512-Y5FMT2BPOindU2GkDEQ5ZKUVxDawKONRNMh2eL3uBx1FOtvUJ+L6IxXLVsNxq4WnaX/UnVNgWXebl7DobygZMg== + dependencies: + async-validator "~1.8.1" + babel-helper-vue-jsx-merge-props "^2.0.0" + deepmerge "^1.2.0" + normalize-wheel "^1.0.1" + resize-observer-polyfill "^1.5.0" + throttle-debounce "^1.0.1" + +emoji-regex@^7.0.1: + version "7.0.3" + resolved "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" + integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +emojis-list@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" + integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== + +end-of-stream@^1.1.0: + version "1.4.4" + resolved "https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + +enhanced-resolve@^5.10.0: + version "5.10.0" + resolved "https://registry.npmmirror.com/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz#0dc579c3bb2a1032e357ac45b8f3a6f3ad4fb1e6" + integrity sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ== + dependencies: + graceful-fs "^4.2.4" + tapable "^2.2.0" + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.npmmirror.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +error-stack-parser@^2.0.6: + version "2.1.4" + resolved "https://registry.npmmirror.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286" + integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== + dependencies: + stackframe "^1.3.4" + +es-module-lexer@^0.9.0: + version "0.9.3" + resolved "https://registry.npmmirror.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19" + integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +eslint-plugin-vue@^6.1.2: + version "6.2.2" + resolved "https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-6.2.2.tgz#27fecd9a3a24789b0f111ecdd540a9e56198e0fe" + integrity sha512-Nhc+oVAHm0uz/PkJAWscwIT4ijTrK5fqNqz9QB1D35SbbuMG1uB6Yr5AJpvPSWg+WOw7nYNswerYh0kOk64gqQ== + dependencies: + natural-compare "^1.4.0" + semver "^5.6.0" + vue-eslint-parser "^7.0.0" + +eslint-scope@5.1.1, eslint-scope@^5.0.0, eslint-scope@^5.1.1: + version "5.1.1" + resolved "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-utils@^1.4.3: + version "1.4.3" + resolved "https://registry.npmmirror.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" + integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0: + version "1.3.0" + resolved "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + +eslint-webpack-plugin@^3.1.0: + version "3.2.0" + resolved "https://registry.npmmirror.com/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz#1978cdb9edc461e4b0195a20da950cf57988347c" + integrity sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w== + dependencies: + "@types/eslint" "^7.29.0 || ^8.4.1" + jest-worker "^28.0.2" + micromatch "^4.0.5" + normalize-path "^3.0.0" + schema-utils "^4.0.0" + +eslint@^6.7.2: + version "6.8.0" + resolved "https://registry.npmmirror.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb" + integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig== + dependencies: + "@babel/code-frame" "^7.0.0" + ajv "^6.10.0" + chalk "^2.1.0" + cross-spawn "^6.0.5" + debug "^4.0.1" + doctrine "^3.0.0" + eslint-scope "^5.0.0" + eslint-utils "^1.4.3" + eslint-visitor-keys "^1.1.0" + espree "^6.1.2" + esquery "^1.0.1" + esutils "^2.0.2" + file-entry-cache "^5.0.1" + functional-red-black-tree "^1.0.1" + glob-parent "^5.0.0" + globals "^12.1.0" + ignore "^4.0.6" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + inquirer "^7.0.0" + is-glob "^4.0.0" + js-yaml "^3.13.1" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.3.0" + lodash "^4.17.14" + minimatch "^3.0.4" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + optionator "^0.8.3" + progress "^2.0.0" + regexpp "^2.0.1" + semver "^6.1.2" + strip-ansi "^5.2.0" + strip-json-comments "^3.0.1" + table "^5.2.3" + text-table "^0.2.0" + v8-compile-cache "^2.0.3" + +espree@^6.1.2, espree@^6.2.1: + version "6.2.1" + resolved "https://registry.npmmirror.com/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a" + integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw== + dependencies: + acorn "^7.1.1" + acorn-jsx "^5.2.0" + eslint-visitor-keys "^1.1.0" + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.0.1, esquery@^1.4.0: + version "1.4.0" + resolved "https://registry.npmmirror.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + +event-pubsub@4.3.0: + version "4.3.0" + resolved "https://registry.npmmirror.com/event-pubsub/-/event-pubsub-4.3.0.tgz#f68d816bc29f1ec02c539dc58c8dd40ce72cb36e" + integrity sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ== + +eventemitter3@^4.0.0: + version "4.0.7" + resolved "https://registry.npmmirror.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +events@^3.2.0: + version "3.3.0" + resolved "https://registry.npmmirror.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + +execa@^0.8.0: + version "0.8.0" + resolved "https://registry.npmmirror.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" + integrity sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA== + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +execa@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + dependencies: + cross-spawn "^6.0.0" + get-stream "^4.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + +express@^4.17.3: + version "4.18.2" + resolved "https://registry.npmmirror.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" + integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== + dependencies: + accepts "~1.3.8" + array-flatten "1.1.1" + body-parser "1.20.1" + content-disposition "0.5.4" + content-type "~1.0.4" + cookie "0.5.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "2.0.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.2.0" + fresh "0.5.2" + http-errors "2.0.0" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "2.4.1" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.7" + qs "6.11.0" + range-parser "~1.2.1" + safe-buffer "5.2.1" + send "0.18.0" + serve-static "1.15.0" + setprototypeof "1.2.0" + statuses "2.0.1" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +external-editor@^3.0.3: + version "3.1.0" + resolved "https://registry.npmmirror.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@^3.2.7, fast-glob@^3.2.9: + version "3.2.12" + resolved "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" + integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== + 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.4" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@~2.0.6: + version "2.0.6" + resolved "https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fastq@^1.6.0: + version "1.13.0" + resolved "https://registry.npmmirror.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" + integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== + dependencies: + reusify "^1.0.4" + +faye-websocket@^0.11.3: + version "0.11.4" + resolved "https://registry.npmmirror.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" + integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== + dependencies: + websocket-driver ">=0.5.1" + +figures@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" + integrity sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA== + dependencies: + escape-string-regexp "^1.0.5" + +figures@^3.0.0: + version "3.2.0" + resolved "https://registry.npmmirror.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== + dependencies: + escape-string-regexp "^1.0.5" + +file-entry-cache@^5.0.1: + version "5.0.1" + resolved "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" + integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== + dependencies: + flat-cache "^2.0.1" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +finalhandler@1.2.0: + version "1.2.0" + resolved "https://registry.npmmirror.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" + integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "2.4.1" + parseurl "~1.3.3" + statuses "2.0.1" + unpipe "~1.0.0" + +find-cache-dir@^3.3.1: + version "3.3.2" + resolved "https://registry.npmmirror.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" + integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== + dependencies: + commondir "^1.0.1" + make-dir "^3.0.2" + pkg-dir "^4.1.0" + +find-up@^4.0.0, find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +flat-cache@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" + integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== + dependencies: + flatted "^2.0.0" + rimraf "2.6.3" + write "1.0.3" + +flatted@^2.0.0: + version "2.0.2" + resolved "https://registry.npmmirror.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" + integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== + +follow-redirects@^1.0.0, follow-redirects@^1.14.9: + version "1.15.2" + resolved "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +form-data@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" + integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.npmmirror.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + +fraction.js@^4.2.0: + version "4.2.0" + resolved "https://registry.npmmirror.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" + integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.npmmirror.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== + +fs-extra@^9.1.0: + version "9.1.0" + resolved "https://registry.npmmirror.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== + dependencies: + at-least-node "^1.0.0" + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-monkey@^1.0.3: + version "1.0.3" + resolved "https://registry.npmmirror.com/fs-monkey/-/fs-monkey-1.0.3.tgz#ae3ac92d53bb328efe0e9a1d9541f6ad8d48e2d3" + integrity sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1: + version "1.1.3" + resolved "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" + integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + integrity sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ== + +get-stream@^4.0.0: + version "4.1.0" + resolved "https://registry.npmmirror.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + dependencies: + pump "^3.0.0" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +glob-parent@^5.0.0, glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.1: + version "6.0.2" + resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.npmmirror.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globals@^12.1.0: + version "12.4.0" + resolved "https://registry.npmmirror.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" + integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== + dependencies: + type-fest "^0.8.1" + +globby@^11.0.2, globby@^11.0.3: + version "11.1.0" + resolved "https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: + version "4.2.10" + resolved "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + +gzip-size@^6.0.0: + version "6.0.0" + resolved "https://registry.npmmirror.com/gzip-size/-/gzip-size-6.0.0.tgz#065367fd50c239c0671cbcbad5be3e2eeb10e462" + integrity sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q== + dependencies: + duplexer "^0.1.2" + +handle-thing@^2.0.0: + version "2.0.1" + resolved "https://registry.npmmirror.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" + integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.npmmirror.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hash-sum@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/hash-sum/-/hash-sum-1.0.2.tgz#33b40777754c6432573c120cc3808bbd10d47f04" + integrity sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA== + +hash-sum@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/hash-sum/-/hash-sum-2.0.0.tgz#81d01bb5de8ea4a214ad5d6ead1b523460b0b45a" + integrity sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg== + +he@^1.2.0: + version "1.2.0" + resolved "https://registry.npmmirror.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +highlight.js@^10.7.1: + version "10.7.3" + resolved "https://registry.npmmirror.com/highlight.js/-/highlight.js-10.7.3.tgz#697272e3991356e40c3cac566a74eef681756531" + integrity sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A== + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +hpack.js@^2.1.6: + version "2.1.6" + resolved "https://registry.npmmirror.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" + integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== + dependencies: + inherits "^2.0.1" + obuf "^1.0.0" + readable-stream "^2.0.1" + wbuf "^1.1.0" + +html-entities@^2.3.2: + version "2.3.3" + resolved "https://registry.npmmirror.com/html-entities/-/html-entities-2.3.3.tgz#117d7626bece327fc8baace8868fa6f5ef856e46" + integrity sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA== + +html-minifier-terser@^6.0.2: + version "6.1.0" + resolved "https://registry.npmmirror.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab" + integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== + dependencies: + camel-case "^4.1.2" + clean-css "^5.2.2" + commander "^8.3.0" + he "^1.2.0" + param-case "^3.0.4" + relateurl "^0.2.7" + terser "^5.10.0" + +html-tags@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/html-tags/-/html-tags-2.0.0.tgz#10b30a386085f43cede353cc8fa7cb0deeea668b" + integrity sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g== + +html-tags@^3.1.0: + version "3.2.0" + resolved "https://registry.npmmirror.com/html-tags/-/html-tags-3.2.0.tgz#dbb3518d20b726524e4dd43de397eb0a95726961" + integrity sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg== + +html-webpack-plugin@^5.1.0: + version "5.5.0" + resolved "https://registry.npmmirror.com/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz#c3911936f57681c1f9f4d8b68c158cd9dfe52f50" + integrity sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw== + dependencies: + "@types/html-minifier-terser" "^6.0.0" + html-minifier-terser "^6.0.2" + lodash "^4.17.21" + pretty-error "^4.0.0" + tapable "^2.0.0" + +htmlparser2@^6.1.0: + version "6.1.0" + resolved "https://registry.npmmirror.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" + integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.0.0" + domutils "^2.5.2" + entities "^2.0.0" + +http-deceiver@^1.2.7: + version "1.2.7" + resolved "https://registry.npmmirror.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" + integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== + +http-errors@2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== + dependencies: + depd "2.0.0" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses "2.0.1" + toidentifier "1.0.1" + +http-errors@~1.6.2: + version "1.6.3" + resolved "https://registry.npmmirror.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" + integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.0" + statuses ">= 1.4.0 < 2" + +http-parser-js@>=0.5.1: + version "0.5.8" + resolved "https://registry.npmmirror.com/http-parser-js/-/http-parser-js-0.5.8.tgz#af23090d9ac4e24573de6f6aecc9d84a48bf20e3" + integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== + +http-proxy-middleware@^2.0.3: + version "2.0.6" + resolved "https://registry.npmmirror.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz#e1a4dd6979572c7ab5a4e4b55095d1f32a74963f" + integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw== + dependencies: + "@types/http-proxy" "^1.17.8" + http-proxy "^1.18.1" + is-glob "^4.0.1" + is-plain-obj "^3.0.0" + micromatch "^4.0.2" + +http-proxy@^1.18.1: + version "1.18.1" + resolved "https://registry.npmmirror.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" + integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== + dependencies: + eventemitter3 "^4.0.0" + follow-redirects "^1.0.0" + requires-port "^1.0.0" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +iconv-lite@0.4.24, iconv-lite@^0.4.24: + version "0.4.24" + resolved "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +icss-utils@^5.0.0, icss-utils@^5.1.0: + version "5.1.0" + resolved "https://registry.npmmirror.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" + integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== + +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.npmmirror.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +ignore@^5.2.0: + version "5.2.0" + resolved "https://registry.npmmirror.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" + integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== + +immutable@^4.0.0: + version "4.1.0" + resolved "https://registry.npmmirror.com/immutable/-/immutable-4.1.0.tgz#f795787f0db780183307b9eb2091fcac1f6fafef" + integrity sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ== + +import-fresh@^3.0.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.npmmirror.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== + +inquirer@^7.0.0: + version "7.3.3" + resolved "https://registry.npmmirror.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003" + integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== + dependencies: + ansi-escapes "^4.2.1" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-width "^3.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.19" + mute-stream "0.0.8" + run-async "^2.4.0" + rxjs "^6.6.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + through "^2.3.6" + +ipaddr.js@1.9.1: + version "1.9.1" + resolved "https://registry.npmmirror.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + +ipaddr.js@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/ipaddr.js/-/ipaddr.js-2.0.1.tgz#eca256a7a877e917aeb368b0a7497ddf42ef81c0" + integrity sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng== + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-ci@^1.0.10: + version "1.2.1" + resolved "https://registry.npmmirror.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" + integrity sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg== + dependencies: + ci-info "^1.5.0" + +is-core-module@^2.9.0: + version "2.11.0" + resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" + integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== + dependencies: + has "^1.0.3" + +is-docker@^2.0.0, is-docker@^2.1.1: + version "2.2.1" + resolved "https://registry.npmmirror.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-file-esm@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/is-file-esm/-/is-file-esm-1.0.0.tgz#987086b0f5a5318179e9d30f4f2f8d37321e1b5f" + integrity sha512-rZlaNKb4Mr8WlRu2A9XdeoKgnO5aA53XdPHgCKVyCrQ/rWi89RET1+bq37Ru46obaQXeiX4vmFIm1vks41hoSA== + dependencies: + read-pkg-up "^7.0.1" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-interactive@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" + integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-plain-obj@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" + integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== + +is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.npmmirror.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ== + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-wsl@^2.1.1, is-wsl@^2.2.0: + version "2.2.0" + resolved "https://registry.npmmirror.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" + +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + +javascript-stringify@^2.0.1: + version "2.1.0" + resolved "https://registry.npmmirror.com/javascript-stringify/-/javascript-stringify-2.1.0.tgz#27c76539be14d8bd128219a2d731b09337904e79" + integrity sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg== + +jest-worker@^27.0.2, jest-worker@^27.4.5: + version "27.5.1" + resolved "https://registry.npmmirror.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" + integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jest-worker@^28.0.2: + version "28.1.3" + resolved "https://registry.npmmirror.com/jest-worker/-/jest-worker-28.1.3.tgz#7e3c4ce3fa23d1bb6accb169e7f396f98ed4bb98" + integrity sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g== + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +joi@^17.4.0: + version "17.7.0" + resolved "https://registry.npmmirror.com/joi/-/joi-17.7.0.tgz#591a33b1fe1aca2bc27f290bcad9b9c1c570a6b3" + integrity sha512-1/ugc8djfn93rTE3WRKdCzGGt/EtiYKxITMO4Wiv6q5JL1gl9ePt4kBsl1S499nbosspfctIQTpYIhSmHA3WAg== + dependencies: + "@hapi/hoek" "^9.0.0" + "@hapi/topo" "^5.0.0" + "@sideway/address" "^4.1.3" + "@sideway/formula" "^3.0.0" + "@sideway/pinpoint" "^2.0.0" + +js-message@1.0.7: + version "1.0.7" + resolved "https://registry.npmmirror.com/js-message/-/js-message-1.0.7.tgz#fbddd053c7a47021871bb8b2c95397cc17c20e47" + integrity sha512-efJLHhLjIyKRewNS9EGZ4UpI8NguuL6fKkhRxVuMmrGV2xN/0APGdQYwLFky5w9naebSZ0OwAGp0G6/2Cg90rA== + +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.npmmirror.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.npmmirror.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== + +json-parse-better-errors@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: + version "2.3.1" + resolved "https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + +json5@^2.1.2, json5@^2.2.1: + version "2.2.1" + resolved "https://registry.npmmirror.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" + integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== + +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +klona@^2.0.5: + version "2.0.5" + resolved "https://registry.npmmirror.com/klona/-/klona-2.0.5.tgz#d166574d90076395d9963aa7a928fabb8d76afbc" + integrity sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ== + +launch-editor-middleware@^2.2.1: + version "2.6.0" + resolved "https://registry.npmmirror.com/launch-editor-middleware/-/launch-editor-middleware-2.6.0.tgz#2ba4fe4b695d7fe3d44dee86b6d46d57b8332dfd" + integrity sha512-K2yxgljj5TdCeRN1lBtO3/J26+AIDDDw+04y6VAiZbWcTdBwsYN6RrZBnW5DN/QiSIdKNjKdATLUUluWWFYTIA== + dependencies: + launch-editor "^2.6.0" + +launch-editor@^2.2.1, launch-editor@^2.6.0: + version "2.6.0" + resolved "https://registry.npmmirror.com/launch-editor/-/launch-editor-2.6.0.tgz#4c0c1a6ac126c572bd9ff9a30da1d2cae66defd7" + integrity sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ== + dependencies: + picocolors "^1.0.0" + shell-quote "^1.7.3" + +levn@^0.3.0, levn@~0.3.0: + version "0.3.0" + resolved "https://registry.npmmirror.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +lilconfig@^2.0.3: + version "2.0.6" + resolved "https://registry.npmmirror.com/lilconfig/-/lilconfig-2.0.6.tgz#32a384558bd58af3d4c6e077dd1ad1d397bc69d4" + integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg== + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +loader-runner@^4.1.0, loader-runner@^4.2.0: + version "4.3.0" + resolved "https://registry.npmmirror.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" + integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== + +loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3: + version "1.4.2" + resolved "https://registry.npmmirror.com/loader-utils/-/loader-utils-1.4.2.tgz#29a957f3a63973883eb684f10ffd3d151fec01a3" + integrity sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^1.0.1" + +loader-utils@^2.0.0: + version "2.0.4" + resolved "https://registry.npmmirror.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" + integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.npmmirror.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + +lodash.defaultsdeep@^4.6.1: + version "4.6.1" + resolved "https://registry.npmmirror.com/lodash.defaultsdeep/-/lodash.defaultsdeep-4.6.1.tgz#512e9bd721d272d94e3d3a63653fa17516741ca6" + integrity sha512-3j8wdDzYuWO3lM3Reg03MuQR957t287Rpcxp1njpEa8oDrikb+FwGdW3n+FELh/A6qib6yPit0j/pv9G/yeAqA== + +lodash.kebabcase@^4.1.1: + version "4.1.1" + resolved "https://registry.npmmirror.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" + integrity sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g== + +lodash.mapvalues@^4.6.0: + version "4.6.0" + resolved "https://registry.npmmirror.com/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz#1bafa5005de9dd6f4f26668c30ca37230cc9689c" + integrity sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ== + +lodash.memoize@^4.1.2: + version "4.1.2" + resolved "https://registry.npmmirror.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== + +lodash.uniq@^4.5.0: + version "4.5.0" + resolved "https://registry.npmmirror.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== + +lodash@^4.17.14, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@^4.1.0: + version "4.1.0" + resolved "https://registry.npmmirror.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +log-update@^2.3.0: + version "2.3.0" + resolved "https://registry.npmmirror.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708" + integrity sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg== + dependencies: + ansi-escapes "^3.0.0" + cli-cursor "^2.0.0" + wrap-ansi "^3.0.1" + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.npmmirror.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lru-cache@^4.0.1, lru-cache@^4.1.2: + version "4.1.5" + resolved "https://registry.npmmirror.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +make-dir@^3.0.2, make-dir@^3.1.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +mdn-data@2.0.14: + version "2.0.14" + resolved "https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" + integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.npmmirror.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== + +memfs@^3.4.3: + version "3.4.12" + resolved "https://registry.npmmirror.com/memfs/-/memfs-3.4.12.tgz#d00f8ad8dab132dc277c659dc85bfd14b07d03bd" + integrity sha512-BcjuQn6vfqP+k100e0E9m61Hyqa//Brp+I3f0OBmN0ATHlFA8vx3Lt8z57R3u2bPqe3WGDBC+nF72fTH7isyEw== + dependencies: + fs-monkey "^1.0.3" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== + +merge-source-map@^1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/merge-source-map/-/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646" + integrity sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw== + dependencies: + source-map "^0.6.1" + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.npmmirror.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== + +micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: + version "4.0.5" + resolved "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": + version "1.52.0" + resolved "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34: + version "2.1.35" + resolved "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mime@1.6.0: + version "1.6.0" + resolved "https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mimic-fn@^1.0.0: + version "1.2.0" + resolved "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mini-css-extract-plugin@^2.5.3: + version "2.7.0" + resolved "https://registry.npmmirror.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.0.tgz#d7d9ba0c5b596d155e36e2b174082fc7f010dd64" + integrity sha512-auqtVo8KhTScMsba7MbijqZTfibbXiBNlPAQbsVt7enQfcDYLdgG57eGxMqwVU3mfeWANY4F1wUg+rMF+ycZgw== + dependencies: + schema-utils "^4.0.0" + +minimalistic-assert@^1.0.0: + version "1.0.1" + resolved "https://registry.npmmirror.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimatch@^3.0.4, minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6: + version "1.2.7" + resolved "https://registry.npmmirror.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" + integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== + +minipass@^3.1.1: + version "3.3.4" + resolved "https://registry.npmmirror.com/minipass/-/minipass-3.3.4.tgz#ca99f95dd77c43c7a76bf51e6d200025eee0ffae" + integrity sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw== + dependencies: + yallist "^4.0.0" + +mkdirp@^0.5.1, mkdirp@^0.5.6: + version "0.5.6" + resolved "https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + +module-alias@^2.2.2: + version "2.2.2" + resolved "https://registry.npmmirror.com/module-alias/-/module-alias-2.2.2.tgz#151cdcecc24e25739ff0aa6e51e1c5716974c0e0" + integrity sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q== + +mrmime@^1.0.0: + version "1.0.1" + resolved "https://registry.npmmirror.com/mrmime/-/mrmime-1.0.1.tgz#5f90c825fad4bdd41dc914eff5d1a8cfdaf24f27" + integrity sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw== + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3, ms@^2.1.1: + version "2.1.3" + resolved "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +multicast-dns@^7.2.5: + version "7.2.5" + resolved "https://registry.npmmirror.com/multicast-dns/-/multicast-dns-7.2.5.tgz#77eb46057f4d7adbd16d9290fa7299f6fa64cced" + integrity sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg== + dependencies: + dns-packet "^5.2.2" + thunky "^1.0.2" + +mute-stream@0.0.8: + version "0.0.8" + resolved "https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + +mz@^2.4.0: + version "2.7.0" + resolved "https://registry.npmmirror.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + +nanoid@^3.3.4: + version "3.3.4" + resolved "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" + integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +negotiator@0.6.3: + version "0.6.3" + resolved "https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + +neo-async@^2.6.1, neo-async@^2.6.2: + version "2.6.2" + resolved "https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.npmmirror.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmmirror.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-fetch@^2.6.7: + version "2.6.7" + resolved "https://registry.npmmirror.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +node-forge@^1: + version "1.3.1" + resolved "https://registry.npmmirror.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" + integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== + +node-releases@^2.0.6: + version "2.0.6" + resolved "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" + integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== + +normalize-package-data@^2.5.0: + version "2.5.0" + resolved "https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" + integrity sha512-7WyT0w8jhpDStXRq5836AMmihQwq2nrUVQrgjvUo/p/NZf9uy/MeJ246lBJVmWuYXMlJuG9BNZHF0hWjfTbQUA== + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.npmmirror.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + +normalize-url@^6.0.1: + version "6.1.0" + resolved "https://registry.npmmirror.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" + integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== + +normalize-wheel@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/normalize-wheel/-/normalize-wheel-1.0.1.tgz#aec886affdb045070d856447df62ecf86146ec45" + integrity sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA== + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + integrity sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw== + dependencies: + path-key "^2.0.0" + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +nth-check@^2.0.1: + version "2.1.1" + resolved "https://registry.npmmirror.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== + dependencies: + boolbase "^1.0.0" + +object-assign@^4.0.1: + version "4.1.1" + resolved "https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-inspect@^1.9.0: + version "1.12.2" + resolved "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" + integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.0: + version "4.1.4" + resolved "https://registry.npmmirror.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +obuf@^1.0.0, obuf@^1.1.2: + version "1.1.2" + resolved "https://registry.npmmirror.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" + integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== + +on-finished@2.4.1: + version "2.4.1" + resolved "https://registry.npmmirror.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.npmmirror.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^2.0.0: + version "2.0.1" + resolved "https://registry.npmmirror.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + integrity sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ== + dependencies: + mimic-fn "^1.0.0" + +onetime@^5.1.0, onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +open@^8.0.2, open@^8.0.9: + version "8.4.0" + resolved "https://registry.npmmirror.com/open/-/open-8.4.0.tgz#345321ae18f8138f82565a910fdc6b39e8c244f8" + integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q== + dependencies: + define-lazy-prop "^2.0.0" + is-docker "^2.1.1" + is-wsl "^2.2.0" + +opener@^1.5.2: + version "1.5.2" + resolved "https://registry.npmmirror.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" + integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== + +optionator@^0.8.3: + version "0.8.3" + resolved "https://registry.npmmirror.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.6" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + word-wrap "~1.2.3" + +ora@^5.3.0: + version "5.4.1" + resolved "https://registry.npmmirror.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" + integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== + dependencies: + bl "^4.1.0" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-spinners "^2.5.0" + is-interactive "^1.0.0" + is-unicode-supported "^0.1.0" + log-symbols "^4.1.0" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + +os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== + +p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-retry@^4.5.0: + version "4.6.2" + resolved "https://registry.npmmirror.com/p-retry/-/p-retry-4.6.2.tgz#9baae7184057edd4e17231cee04264106e092a16" + integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ== + dependencies: + "@types/retry" "0.12.0" + retry "^0.13.1" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +param-case@^3.0.4: + version "3.0.4" + resolved "https://registry.npmmirror.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" + integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-json@^5.0.0: + version "5.2.0" + resolved "https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +parse5-htmlparser2-tree-adapter@^6.0.0: + version "6.0.1" + resolved "https://registry.npmmirror.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz#2cdf9ad823321140370d4dbf5d3e92c7c8ddc6e6" + integrity sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA== + dependencies: + parse5 "^6.0.1" + +parse5@^5.1.1: + version "5.1.1" + resolved "https://registry.npmmirror.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178" + integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug== + +parse5@^6.0.1: + version "6.0.1" + resolved "https://registry.npmmirror.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" + integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== + +parseurl@~1.3.2, parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +pascal-case@^3.1.2: + version "3.1.2" + resolved "https://registry.npmmirror.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" + integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^2.0.0, path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +picocolors@^0.2.1: + version "0.2.1" + resolved "https://registry.npmmirror.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" + integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pkg-dir@^4.1.0: + version "4.2.0" + resolved "https://registry.npmmirror.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +portfinder@^1.0.26: + version "1.0.32" + resolved "https://registry.npmmirror.com/portfinder/-/portfinder-1.0.32.tgz#2fe1b9e58389712429dc2bea5beb2146146c7f81" + integrity sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg== + dependencies: + async "^2.6.4" + debug "^3.2.7" + mkdirp "^0.5.6" + +postcss-calc@^8.2.3: + version "8.2.4" + resolved "https://registry.npmmirror.com/postcss-calc/-/postcss-calc-8.2.4.tgz#77b9c29bfcbe8a07ff6693dc87050828889739a5" + integrity sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q== + dependencies: + postcss-selector-parser "^6.0.9" + postcss-value-parser "^4.2.0" + +postcss-colormin@^5.3.0: + version "5.3.0" + resolved "https://registry.npmmirror.com/postcss-colormin/-/postcss-colormin-5.3.0.tgz#3cee9e5ca62b2c27e84fce63affc0cfb5901956a" + integrity sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg== + dependencies: + browserslist "^4.16.6" + caniuse-api "^3.0.0" + colord "^2.9.1" + postcss-value-parser "^4.2.0" + +postcss-convert-values@^5.1.3: + version "5.1.3" + resolved "https://registry.npmmirror.com/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz#04998bb9ba6b65aa31035d669a6af342c5f9d393" + integrity sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA== + dependencies: + browserslist "^4.21.4" + postcss-value-parser "^4.2.0" + +postcss-discard-comments@^5.1.2: + version "5.1.2" + resolved "https://registry.npmmirror.com/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz#8df5e81d2925af2780075840c1526f0660e53696" + integrity sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ== + +postcss-discard-duplicates@^5.1.0: + version "5.1.0" + resolved "https://registry.npmmirror.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848" + integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw== + +postcss-discard-empty@^5.1.1: + version "5.1.1" + resolved "https://registry.npmmirror.com/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz#e57762343ff7f503fe53fca553d18d7f0c369c6c" + integrity sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A== + +postcss-discard-overridden@^5.1.0: + version "5.1.0" + resolved "https://registry.npmmirror.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e" + integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw== + +postcss-loader@^6.1.1: + version "6.2.1" + resolved "https://registry.npmmirror.com/postcss-loader/-/postcss-loader-6.2.1.tgz#0895f7346b1702103d30fdc66e4d494a93c008ef" + integrity sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q== + dependencies: + cosmiconfig "^7.0.0" + klona "^2.0.5" + semver "^7.3.5" + +postcss-merge-longhand@^5.1.7: + version "5.1.7" + resolved "https://registry.npmmirror.com/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz#24a1bdf402d9ef0e70f568f39bdc0344d568fb16" + integrity sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ== + dependencies: + postcss-value-parser "^4.2.0" + stylehacks "^5.1.1" + +postcss-merge-rules@^5.1.3: + version "5.1.3" + resolved "https://registry.npmmirror.com/postcss-merge-rules/-/postcss-merge-rules-5.1.3.tgz#8f97679e67cc8d08677a6519afca41edf2220894" + integrity sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA== + dependencies: + browserslist "^4.21.4" + caniuse-api "^3.0.0" + cssnano-utils "^3.1.0" + postcss-selector-parser "^6.0.5" + +postcss-minify-font-values@^5.1.0: + version "5.1.0" + resolved "https://registry.npmmirror.com/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz#f1df0014a726083d260d3bd85d7385fb89d1f01b" + integrity sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-minify-gradients@^5.1.1: + version "5.1.1" + resolved "https://registry.npmmirror.com/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz#f1fe1b4f498134a5068240c2f25d46fcd236ba2c" + integrity sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw== + dependencies: + colord "^2.9.1" + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" + +postcss-minify-params@^5.1.4: + version "5.1.4" + resolved "https://registry.npmmirror.com/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz#c06a6c787128b3208b38c9364cfc40c8aa5d7352" + integrity sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw== + dependencies: + browserslist "^4.21.4" + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" + +postcss-minify-selectors@^5.2.1: + version "5.2.1" + resolved "https://registry.npmmirror.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz#d4e7e6b46147b8117ea9325a915a801d5fe656c6" + integrity sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg== + dependencies: + postcss-selector-parser "^6.0.5" + +postcss-modules-extract-imports@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" + integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== + +postcss-modules-local-by-default@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz#ebbb54fae1598eecfdf691a02b3ff3b390a5a51c" + integrity sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ== + dependencies: + icss-utils "^5.0.0" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.1.0" + +postcss-modules-scope@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06" + integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== + dependencies: + postcss-selector-parser "^6.0.4" + +postcss-modules-values@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" + integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== + dependencies: + icss-utils "^5.0.0" + +postcss-normalize-charset@^5.1.0: + version "5.1.0" + resolved "https://registry.npmmirror.com/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz#9302de0b29094b52c259e9b2cf8dc0879879f0ed" + integrity sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg== + +postcss-normalize-display-values@^5.1.0: + version "5.1.0" + resolved "https://registry.npmmirror.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz#72abbae58081960e9edd7200fcf21ab8325c3da8" + integrity sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-positions@^5.1.1: + version "5.1.1" + resolved "https://registry.npmmirror.com/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz#ef97279d894087b59325b45c47f1e863daefbb92" + integrity sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-repeat-style@^5.1.1: + version "5.1.1" + resolved "https://registry.npmmirror.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz#e9eb96805204f4766df66fd09ed2e13545420fb2" + integrity sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-string@^5.1.0: + version "5.1.0" + resolved "https://registry.npmmirror.com/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz#411961169e07308c82c1f8c55f3e8a337757e228" + integrity sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-timing-functions@^5.1.0: + version "5.1.0" + resolved "https://registry.npmmirror.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz#d5614410f8f0b2388e9f240aa6011ba6f52dafbb" + integrity sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-unicode@^5.1.1: + version "5.1.1" + resolved "https://registry.npmmirror.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz#f67297fca3fea7f17e0d2caa40769afc487aa030" + integrity sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA== + dependencies: + browserslist "^4.21.4" + postcss-value-parser "^4.2.0" + +postcss-normalize-url@^5.1.0: + version "5.1.0" + resolved "https://registry.npmmirror.com/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz#ed9d88ca82e21abef99f743457d3729a042adcdc" + integrity sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew== + dependencies: + normalize-url "^6.0.1" + postcss-value-parser "^4.2.0" + +postcss-normalize-whitespace@^5.1.1: + version "5.1.1" + resolved "https://registry.npmmirror.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz#08a1a0d1ffa17a7cc6efe1e6c9da969cc4493cfa" + integrity sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-ordered-values@^5.1.3: + version "5.1.3" + resolved "https://registry.npmmirror.com/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz#b6fd2bd10f937b23d86bc829c69e7732ce76ea38" + integrity sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ== + dependencies: + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" + +postcss-reduce-initial@^5.1.1: + version "5.1.1" + resolved "https://registry.npmmirror.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.1.tgz#c18b7dfb88aee24b1f8e4936541c29adbd35224e" + integrity sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w== + dependencies: + browserslist "^4.21.4" + caniuse-api "^3.0.0" + +postcss-reduce-transforms@^5.1.0: + version "5.1.0" + resolved "https://registry.npmmirror.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz#333b70e7758b802f3dd0ddfe98bb1ccfef96b6e9" + integrity sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9: + version "6.0.11" + resolved "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz#2e41dc39b7ad74046e1615185185cd0b17d0c8dc" + integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-svgo@^5.1.0: + version "5.1.0" + resolved "https://registry.npmmirror.com/postcss-svgo/-/postcss-svgo-5.1.0.tgz#0a317400ced789f233a28826e77523f15857d80d" + integrity sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA== + dependencies: + postcss-value-parser "^4.2.0" + svgo "^2.7.0" + +postcss-unique-selectors@^5.1.1: + version "5.1.1" + resolved "https://registry.npmmirror.com/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz#a9f273d1eacd09e9aa6088f4b0507b18b1b541b6" + integrity sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA== + dependencies: + postcss-selector-parser "^6.0.5" + +postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: + version "4.2.0" + resolved "https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +postcss@^7.0.36: + version "7.0.39" + resolved "https://registry.npmmirror.com/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309" + integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA== + dependencies: + picocolors "^0.2.1" + source-map "^0.6.1" + +postcss@^8.2.6, postcss@^8.3.5, postcss@^8.4.14, postcss@^8.4.18: + version "8.4.19" + resolved "https://registry.npmmirror.com/postcss/-/postcss-8.4.19.tgz#61178e2add236b17351897c8bcc0b4c8ecab56fc" + integrity sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA== + dependencies: + nanoid "^3.3.4" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== + +"prettier@^1.18.2 || ^2.0.0": + version "2.7.1" + resolved "https://registry.npmmirror.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" + integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== + +pretty-error@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6" + integrity sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw== + dependencies: + lodash "^4.17.20" + renderkid "^3.0.0" + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +progress-webpack-plugin@^1.0.12: + version "1.0.16" + resolved "https://registry.npmmirror.com/progress-webpack-plugin/-/progress-webpack-plugin-1.0.16.tgz#278f5c1afd21af783aad72c5ec95241520230fe5" + integrity sha512-sdiHuuKOzELcBANHfrupYo+r99iPRyOnw15qX+rNlVUqXGfjXdH4IgxriKwG1kNJwVswKQHMdj1hYZMcb9jFaA== + dependencies: + chalk "^2.1.0" + figures "^2.0.0" + log-update "^2.3.0" + +progress@^2.0.0: + version "2.0.3" + resolved "https://registry.npmmirror.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +proxy-addr@~2.0.7: + version "2.0.7" + resolved "https://registry.npmmirror.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== + dependencies: + forwarded "0.2.0" + ipaddr.js "1.9.1" + +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ== + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.npmmirror.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +qs@6.11.0: + version "6.11.0" + resolved "https://registry.npmmirror.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== + dependencies: + side-channel "^1.0.4" + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +range-parser@^1.2.1, range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.npmmirror.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@2.5.1: + version "2.5.1" + resolved "https://registry.npmmirror.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" + integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.4.24" + unpipe "1.0.0" + +read-pkg-up@^7.0.1: + version "7.0.1" + resolved "https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" + integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== + dependencies: + find-up "^4.1.0" + read-pkg "^5.2.0" + type-fest "^0.8.1" + +read-pkg@^5.1.1, read-pkg@^5.2.0: + version "5.2.0" + resolved "https://registry.npmmirror.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" + integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== + dependencies: + "@types/normalize-package-data" "^2.4.0" + normalize-package-data "^2.5.0" + parse-json "^5.0.0" + type-fest "^0.6.0" + +readable-stream@^2.0.1: + version "2.3.7" + resolved "https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" + integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@^3.0.6, readable-stream@^3.4.0: + version "3.6.0" + resolved "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +regenerate-unicode-properties@^10.1.0: + version "10.1.0" + resolved "https://registry.npmmirror.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" + integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ== + dependencies: + regenerate "^1.4.2" + +regenerate@^1.4.2: + version "1.4.2" + resolved "https://registry.npmmirror.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + +regenerator-runtime@^0.11.0: + version "0.11.1" + resolved "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" + integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== + +regenerator-runtime@^0.13.10: + version "0.13.11" + resolved "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== + +regenerator-transform@^0.15.0: + version "0.15.1" + resolved "https://registry.npmmirror.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56" + integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg== + dependencies: + "@babel/runtime" "^7.8.4" + +regexpp@^2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" + integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== + +regexpu-core@^5.1.0: + version "5.2.2" + resolved "https://registry.npmmirror.com/regexpu-core/-/regexpu-core-5.2.2.tgz#3e4e5d12103b64748711c3aad69934d7718e75fc" + integrity sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw== + dependencies: + regenerate "^1.4.2" + regenerate-unicode-properties "^10.1.0" + regjsgen "^0.7.1" + regjsparser "^0.9.1" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" + +regjsgen@^0.7.1: + version "0.7.1" + resolved "https://registry.npmmirror.com/regjsgen/-/regjsgen-0.7.1.tgz#ee5ef30e18d3f09b7c369b76e7c2373ed25546f6" + integrity sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA== + +regjsparser@^0.9.1: + version "0.9.1" + resolved "https://registry.npmmirror.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" + integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== + dependencies: + jsesc "~0.5.0" + +relateurl@^0.2.7: + version "0.2.7" + resolved "https://registry.npmmirror.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" + integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== + +renderkid@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a" + integrity sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg== + dependencies: + css-select "^4.1.3" + dom-converter "^0.2.0" + htmlparser2 "^6.1.0" + lodash "^4.17.21" + strip-ansi "^6.0.1" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +requires-port@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== + +resize-observer-polyfill@^1.5.0: + version "1.5.1" + resolved "https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464" + integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve@^1.10.0, resolve@^1.12.0, resolve@^1.14.2: + version "1.22.1" + resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +restore-cursor@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + integrity sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q== + dependencies: + onetime "^2.0.0" + signal-exit "^3.0.2" + +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + +retry@^0.13.1: + version "0.13.1" + resolved "https://registry.npmmirror.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" + integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@2.6.3: + version "2.6.3" + resolved "https://registry.npmmirror.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +run-async@^2.4.0: + version "2.4.1" + resolved "https://registry.npmmirror.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" + integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +rxjs@^6.6.0: + version "6.6.7" + resolved "https://registry.npmmirror.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" + integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== + dependencies: + tslib "^1.9.0" + +safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.1.0, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +"safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +sass-loader@^8.0.2: + version "8.0.2" + resolved "https://registry.npmmirror.com/sass-loader/-/sass-loader-8.0.2.tgz#debecd8c3ce243c76454f2e8290482150380090d" + integrity sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ== + dependencies: + clone-deep "^4.0.1" + loader-utils "^1.2.3" + neo-async "^2.6.1" + schema-utils "^2.6.1" + semver "^6.3.0" + +sass@^1.25.0: + version "1.56.1" + resolved "https://registry.npmmirror.com/sass/-/sass-1.56.1.tgz#94d3910cd468fd075fa87f5bb17437a0b617d8a7" + integrity sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ== + dependencies: + chokidar ">=3.0.0 <4.0.0" + immutable "^4.0.0" + source-map-js ">=0.6.2 <2.0.0" + +schema-utils@^2.6.1, schema-utils@^2.6.5: + version "2.7.1" + resolved "https://registry.npmmirror.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" + integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== + dependencies: + "@types/json-schema" "^7.0.5" + ajv "^6.12.4" + ajv-keywords "^3.5.2" + +schema-utils@^3.0.0, schema-utils@^3.1.0, schema-utils@^3.1.1: + version "3.1.1" + resolved "https://registry.npmmirror.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281" + integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw== + dependencies: + "@types/json-schema" "^7.0.8" + ajv "^6.12.5" + ajv-keywords "^3.5.2" + +schema-utils@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/schema-utils/-/schema-utils-4.0.0.tgz#60331e9e3ae78ec5d16353c467c34b3a0a1d3df7" + integrity sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg== + dependencies: + "@types/json-schema" "^7.0.9" + ajv "^8.8.0" + ajv-formats "^2.1.1" + ajv-keywords "^5.0.0" + +select-hose@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" + integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== + +selfsigned@^2.1.1: + version "2.1.1" + resolved "https://registry.npmmirror.com/selfsigned/-/selfsigned-2.1.1.tgz#18a7613d714c0cd3385c48af0075abf3f266af61" + integrity sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ== + dependencies: + node-forge "^1" + +"semver@2 || 3 || 4 || 5", semver@^5.5.0, semver@^5.6.0: + version "5.7.1" + resolved "https://registry.npmmirror.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: + version "6.3.0" + resolved "https://registry.npmmirror.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +semver@^7.3.4, semver@^7.3.5, semver@^7.3.8: + version "7.3.8" + resolved "https://registry.npmmirror.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" + integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== + dependencies: + lru-cache "^6.0.0" + +send@0.18.0: + version "0.18.0" + resolved "https://registry.npmmirror.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== + dependencies: + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "2.0.0" + mime "1.6.0" + ms "2.1.3" + on-finished "2.4.1" + range-parser "~1.2.1" + statuses "2.0.1" + +serialize-javascript@^6.0.0: + version "6.0.0" + resolved "https://registry.npmmirror.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" + integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== + dependencies: + randombytes "^2.1.0" + +serve-index@^1.9.1: + version "1.9.1" + resolved "https://registry.npmmirror.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" + integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== + dependencies: + accepts "~1.3.4" + batch "0.6.1" + debug "2.6.9" + escape-html "~1.0.3" + http-errors "~1.6.2" + mime-types "~2.1.17" + parseurl "~1.3.2" + +serve-static@1.15.0: + version "1.15.0" + resolved "https://registry.npmmirror.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.18.0" + +setprototypeof@1.1.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== + +setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.npmmirror.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.npmmirror.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== + dependencies: + shebang-regex "^1.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shell-quote@^1.7.3: + version "1.7.4" + resolved "https://registry.npmmirror.com/shell-quote/-/shell-quote-1.7.4.tgz#33fe15dee71ab2a81fcbd3a52106c5cfb9fb75d8" + integrity sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: + version "3.0.7" + resolved "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +sirv@^1.0.7: + version "1.0.19" + resolved "https://registry.npmmirror.com/sirv/-/sirv-1.0.19.tgz#1d73979b38c7fe91fcba49c85280daa9c2363b49" + integrity sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ== + dependencies: + "@polka/url" "^1.0.0-next.20" + mrmime "^1.0.0" + totalist "^1.0.0" + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slice-ansi@^2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" + integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== + dependencies: + ansi-styles "^3.2.0" + astral-regex "^1.0.0" + is-fullwidth-code-point "^2.0.0" + +sockjs@^0.3.24: + version "0.3.24" + resolved "https://registry.npmmirror.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce" + integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== + dependencies: + faye-websocket "^0.11.3" + uuid "^8.3.2" + websocket-driver "^0.7.4" + +"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.2: + version "1.0.2" + resolved "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== + +source-map-support@~0.5.20: + version "0.5.21" + resolved "https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://registry.npmmirror.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://registry.npmmirror.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.npmmirror.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.12" + resolved "https://registry.npmmirror.com/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" + integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== + +spdy-transport@^3.0.0: + version "3.0.0" + resolved "https://registry.npmmirror.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" + integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== + dependencies: + debug "^4.1.0" + detect-node "^2.0.4" + hpack.js "^2.1.6" + obuf "^1.1.2" + readable-stream "^3.0.6" + wbuf "^1.7.3" + +spdy@^4.0.2: + version "4.0.2" + resolved "https://registry.npmmirror.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" + integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== + dependencies: + debug "^4.1.0" + handle-thing "^2.0.0" + http-deceiver "^1.2.7" + select-hose "^2.0.0" + spdy-transport "^3.0.0" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.npmmirror.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +ssri@^8.0.1: + version "8.0.1" + resolved "https://registry.npmmirror.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af" + integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ== + dependencies: + minipass "^3.1.1" + +stable@^0.1.8: + version "0.1.8" + resolved "https://registry.npmmirror.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" + integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== + +stackframe@^1.3.4: + version "1.3.4" + resolved "https://registry.npmmirror.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" + integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== + +statuses@2.0.1: + version "2.0.1" + resolved "https://registry.npmmirror.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + +"statuses@>= 1.4.0 < 2": + version "1.5.0" + resolved "https://registry.npmmirror.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== + +string-width@^2.1.1: + version "2.1.1" + resolved "https://registry.npmmirror.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string-width@^3.0.0: + version "3.1.0" + resolved "https://registry.npmmirror.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" + integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== + dependencies: + emoji-regex "^7.0.1" + is-fullwidth-code-point "^2.0.0" + strip-ansi "^5.1.0" + +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow== + dependencies: + ansi-regex "^3.0.0" + +strip-ansi@^5.1.0, strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + integrity sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-indent@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" + integrity sha512-RsSNPLpq6YUL7QYy44RnPVTn/lcVZtb48Uof3X5JLbF4zD/Gs7ZFDv2HWol+leoQN2mT86LAzSshGfkTlSOpsA== + +strip-json-comments@^3.0.1: + version "3.1.1" + resolved "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +stylehacks@^5.1.1: + version "5.1.1" + resolved "https://registry.npmmirror.com/stylehacks/-/stylehacks-5.1.1.tgz#7934a34eb59d7152149fa69d6e9e56f2fc34bcc9" + integrity sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw== + dependencies: + browserslist "^4.21.4" + postcss-selector-parser "^6.0.4" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^8.0.0: + version "8.1.1" + resolved "https://registry.npmmirror.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +svg-tags@^1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" + integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA== + +svgo@^2.7.0: + version "2.8.0" + resolved "https://registry.npmmirror.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24" + integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== + dependencies: + "@trysound/sax" "0.2.0" + commander "^7.2.0" + css-select "^4.1.3" + css-tree "^1.1.3" + csso "^4.2.0" + picocolors "^1.0.0" + stable "^0.1.8" + +table@^5.2.3: + version "5.4.6" + resolved "https://registry.npmmirror.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" + integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== + dependencies: + ajv "^6.10.2" + lodash "^4.17.14" + slice-ansi "^2.1.0" + string-width "^3.0.0" + +tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0: + version "2.2.1" + resolved "https://registry.npmmirror.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" + integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== + +terser-webpack-plugin@^5.1.1, terser-webpack-plugin@^5.1.3: + version "5.3.6" + resolved "https://registry.npmmirror.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz#5590aec31aa3c6f771ce1b1acca60639eab3195c" + integrity sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ== + dependencies: + "@jridgewell/trace-mapping" "^0.3.14" + jest-worker "^27.4.5" + schema-utils "^3.1.1" + serialize-javascript "^6.0.0" + terser "^5.14.1" + +terser@^5.10.0, terser@^5.14.1: + version "5.15.1" + resolved "https://registry.npmmirror.com/terser/-/terser-5.15.1.tgz#8561af6e0fd6d839669c73b92bdd5777d870ed6c" + integrity sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw== + dependencies: + "@jridgewell/source-map" "^0.3.2" + acorn "^8.5.0" + commander "^2.20.0" + source-map-support "~0.5.20" + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.npmmirror.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.npmmirror.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + +thread-loader@^3.0.0: + version "3.0.4" + resolved "https://registry.npmmirror.com/thread-loader/-/thread-loader-3.0.4.tgz#c392e4c0241fbc80430eb680e4886819b504a31b" + integrity sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA== + dependencies: + json-parse-better-errors "^1.0.2" + loader-runner "^4.1.0" + loader-utils "^2.0.0" + neo-async "^2.6.2" + schema-utils "^3.0.0" + +throttle-debounce@^1.0.1: + version "1.1.0" + resolved "https://registry.npmmirror.com/throttle-debounce/-/throttle-debounce-1.1.0.tgz#51853da37be68a155cb6e827b3514a3c422e89cd" + integrity sha512-XH8UiPCQcWNuk2LYePibW/4qL97+ZQ1AN3FNXwZRBNPPowo/NRU5fAlDCSNBJIYCKbioZfuYtMhG4quqoJhVzg== + +through@^2.3.6: + version "2.3.8" + resolved "https://registry.npmmirror.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +thunky@^1.0.2: + version "1.1.0" + resolved "https://registry.npmmirror.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" + integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.npmmirror.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toidentifier@1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + +totalist@^1.0.0: + version "1.1.0" + resolved "https://registry.npmmirror.com/totalist/-/totalist-1.1.0.tgz#a4d65a3e546517701e3e5c37a47a70ac97fe56df" + integrity sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.npmmirror.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +tslib@2.3.0: + version "2.3.0" + resolved "https://registry.npmmirror.com/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e" + integrity sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg== + +tslib@^1.9.0: + version "1.14.1" + resolved "https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2.0.3: + version "2.4.1" + resolved "https://registry.npmmirror.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" + integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.npmmirror.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== + dependencies: + prelude-ls "~1.1.2" + +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + +type-fest@^0.6.0: + version "0.6.0" + resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" + integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== + +type-fest@^0.8.1: + version "0.8.1" + resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== + +type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.npmmirror.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +unicode-canonical-property-names-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" + integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== + +unicode-match-property-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== + dependencies: + unicode-canonical-property-names-ecmascript "^2.0.0" + unicode-property-aliases-ecmascript "^2.0.0" + +unicode-match-property-value-ecmascript@^2.1.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== + +unicode-property-aliases-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.npmmirror.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + +universalify@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" + integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + +update-browserslist-db@^1.0.9: + version "1.0.10" + resolved "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" + integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +utila@~0.4: + version "0.4.0" + resolved "https://registry.npmmirror.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" + integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.npmmirror.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +v8-compile-cache@^2.0.3: + version "2.3.0" + resolved "https://registry.npmmirror.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.npmmirror.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + +vue-awesome@^4.0.2: + version "4.5.0" + resolved "https://registry.npmmirror.com/vue-awesome/-/vue-awesome-4.5.0.tgz#d42179335de20b53fee9bdb090498aeee1074f78" + integrity sha512-pbtZkRecXLm3fg0eVkwObDRM9YNU1BW5wDsL4mMoSvUXZbTnS+N2E4CahAwKJL5OPbqmhJQgZPekQoJrID7dcQ== + +vue-eslint-parser@^7.0.0: + version "7.11.0" + resolved "https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-7.11.0.tgz#214b5dea961007fcffb2ee65b8912307628d0daf" + integrity sha512-qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg== + dependencies: + debug "^4.1.1" + eslint-scope "^5.1.1" + eslint-visitor-keys "^1.1.0" + espree "^6.2.1" + esquery "^1.4.0" + lodash "^4.17.21" + semver "^6.3.0" + +vue-hot-reload-api@^2.3.0: + version "2.3.4" + resolved "https://registry.npmmirror.com/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz#532955cc1eb208a3d990b3a9f9a70574657e08f2" + integrity sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog== + +vue-loader@^17.0.0: + version "17.0.1" + resolved "https://registry.npmmirror.com/vue-loader/-/vue-loader-17.0.1.tgz#c0ee8875e0610a0c2d13ba9b4d50a9c8442e7a3a" + integrity sha512-/OOyugJnImKCkAKrAvdsWMuwoCqGxWT5USLsjohzWbMgOwpA5wQmzQiLMzZd7DjhIfunzAGIApTOgIylz/kwcg== + dependencies: + chalk "^4.1.0" + hash-sum "^2.0.0" + loader-utils "^2.0.0" + +vue-router@^3.1.5: + version "3.6.5" + resolved "https://registry.npmmirror.com/vue-router/-/vue-router-3.6.5.tgz#95847d52b9a7e3f1361cb605c8e6441f202afad8" + integrity sha512-VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ== + +vue-style-loader@^4.1.0, vue-style-loader@^4.1.3: + version "4.1.3" + resolved "https://registry.npmmirror.com/vue-style-loader/-/vue-style-loader-4.1.3.tgz#6d55863a51fa757ab24e89d9371465072aa7bc35" + integrity sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg== + dependencies: + hash-sum "^1.0.2" + loader-utils "^1.0.2" + +vue-template-compiler@^2.6.11: + version "2.7.14" + resolved "https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz#4545b7dfb88090744c1577ae5ac3f964e61634b1" + integrity sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ== + dependencies: + de-indent "^1.0.2" + he "^1.2.0" + +vue-template-es2015-compiler@^1.9.0: + version "1.9.1" + resolved "https://registry.npmmirror.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz#1ee3bc9a16ecbf5118be334bb15f9c46f82f5825" + integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw== + +vue@^2.6.11: + version "2.7.14" + resolved "https://registry.npmmirror.com/vue/-/vue-2.7.14.tgz#3743dcd248fd3a34d421ae456b864a0246bafb17" + integrity sha512-b2qkFyOM0kwqWFuQmgd4o+uHGU7T+2z3T+WQp8UBjADfEv2n4FEMffzBmCKNP0IGzOEEfYjvtcC62xaSKeQDrQ== + dependencies: + "@vue/compiler-sfc" "2.7.14" + csstype "^3.1.0" + +vuex@^3.1.2: + version "3.6.2" + resolved "https://registry.npmmirror.com/vuex/-/vuex-3.6.2.tgz#236bc086a870c3ae79946f107f16de59d5895e71" + integrity sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw== + +watchpack@^2.4.0: + version "2.4.0" + resolved "https://registry.npmmirror.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" + integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + +wbuf@^1.1.0, wbuf@^1.7.3: + version "1.7.3" + resolved "https://registry.npmmirror.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" + integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== + dependencies: + minimalistic-assert "^1.0.0" + +wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.npmmirror.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + dependencies: + defaults "^1.0.3" + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +webpack-bundle-analyzer@^4.4.0: + version "4.7.0" + resolved "https://registry.npmmirror.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.7.0.tgz#33c1c485a7fcae8627c547b5c3328b46de733c66" + integrity sha512-j9b8ynpJS4K+zfO5GGwsAcQX4ZHpWV+yRiHDiL+bE0XHJ8NiPYLTNVQdlFYWxtpg9lfAQNlwJg16J9AJtFSXRg== + dependencies: + acorn "^8.0.4" + acorn-walk "^8.0.0" + chalk "^4.1.0" + commander "^7.2.0" + gzip-size "^6.0.0" + lodash "^4.17.20" + opener "^1.5.2" + sirv "^1.0.7" + ws "^7.3.1" + +webpack-chain@^6.5.1: + version "6.5.1" + resolved "https://registry.npmmirror.com/webpack-chain/-/webpack-chain-6.5.1.tgz#4f27284cbbb637e3c8fbdef43eef588d4d861206" + integrity sha512-7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA== + dependencies: + deepmerge "^1.5.2" + javascript-stringify "^2.0.1" + +webpack-dev-middleware@^5.3.1: + version "5.3.3" + resolved "https://registry.npmmirror.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f" + integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA== + dependencies: + colorette "^2.0.10" + memfs "^3.4.3" + mime-types "^2.1.31" + range-parser "^1.2.1" + schema-utils "^4.0.0" + +webpack-dev-server@^4.7.3: + version "4.11.1" + resolved "https://registry.npmmirror.com/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz#ae07f0d71ca0438cf88446f09029b92ce81380b5" + integrity sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw== + dependencies: + "@types/bonjour" "^3.5.9" + "@types/connect-history-api-fallback" "^1.3.5" + "@types/express" "^4.17.13" + "@types/serve-index" "^1.9.1" + "@types/serve-static" "^1.13.10" + "@types/sockjs" "^0.3.33" + "@types/ws" "^8.5.1" + ansi-html-community "^0.0.8" + bonjour-service "^1.0.11" + chokidar "^3.5.3" + colorette "^2.0.10" + compression "^1.7.4" + connect-history-api-fallback "^2.0.0" + default-gateway "^6.0.3" + express "^4.17.3" + graceful-fs "^4.2.6" + html-entities "^2.3.2" + http-proxy-middleware "^2.0.3" + ipaddr.js "^2.0.1" + open "^8.0.9" + p-retry "^4.5.0" + rimraf "^3.0.2" + schema-utils "^4.0.0" + selfsigned "^2.1.1" + serve-index "^1.9.1" + sockjs "^0.3.24" + spdy "^4.0.2" + webpack-dev-middleware "^5.3.1" + ws "^8.4.2" + +webpack-merge@^5.7.3: + version "5.8.0" + resolved "https://registry.npmmirror.com/webpack-merge/-/webpack-merge-5.8.0.tgz#2b39dbf22af87776ad744c390223731d30a68f61" + integrity sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q== + dependencies: + clone-deep "^4.0.1" + wildcard "^2.0.0" + +webpack-sources@^3.2.3: + version "3.2.3" + resolved "https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" + integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== + +webpack-virtual-modules@^0.4.2: + version "0.4.6" + resolved "https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz#3e4008230731f1db078d9cb6f68baf8571182b45" + integrity sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA== + +webpack@^5.54.0: + version "5.75.0" + resolved "https://registry.npmmirror.com/webpack/-/webpack-5.75.0.tgz#1e440468647b2505860e94c9ff3e44d5b582c152" + integrity sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ== + dependencies: + "@types/eslint-scope" "^3.7.3" + "@types/estree" "^0.0.51" + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/wasm-edit" "1.11.1" + "@webassemblyjs/wasm-parser" "1.11.1" + acorn "^8.7.1" + acorn-import-assertions "^1.7.6" + browserslist "^4.14.5" + chrome-trace-event "^1.0.2" + enhanced-resolve "^5.10.0" + es-module-lexer "^0.9.0" + eslint-scope "5.1.1" + events "^3.2.0" + glob-to-regexp "^0.4.1" + graceful-fs "^4.2.9" + json-parse-even-better-errors "^2.3.1" + loader-runner "^4.2.0" + mime-types "^2.1.27" + neo-async "^2.6.2" + schema-utils "^3.1.0" + tapable "^2.1.1" + terser-webpack-plugin "^5.1.3" + watchpack "^2.4.0" + webpack-sources "^3.2.3" + +websocket-driver@>=0.5.1, websocket-driver@^0.7.4: + version "0.7.4" + resolved "https://registry.npmmirror.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" + integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== + dependencies: + http-parser-js ">=0.5.1" + safe-buffer ">=5.1.0" + websocket-extensions ">=0.1.1" + +websocket-extensions@>=0.1.1: + version "0.1.4" + resolved "https://registry.npmmirror.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" + integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== + +whatwg-fetch@^3.6.2: + version "3.6.2" + resolved "https://registry.npmmirror.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz#dced24f37f2624ed0281725d51d0e2e3fe677f8c" + integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.npmmirror.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which@^1.2.9: + version "1.3.1" + resolved "https://registry.npmmirror.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.npmmirror.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +wildcard@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec" + integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== + +word-wrap@~1.2.3: + version "1.2.3" + resolved "https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +wrap-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba" + integrity sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ== + dependencies: + string-width "^2.1.1" + strip-ansi "^4.0.0" + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +write@1.0.3: + version "1.0.3" + resolved "https://registry.npmmirror.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" + integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== + dependencies: + mkdirp "^0.5.1" + +ws@^7.3.1: + version "7.5.9" + resolved "https://registry.npmmirror.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +ws@^8.4.2: + version "8.11.0" + resolved "https://registry.npmmirror.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143" + integrity sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.npmmirror.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^1.10.0, yaml@^1.10.2: + version "1.10.2" + resolved "https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs@^16.0.0: + version "16.2.0" + resolved "https://registry.npmmirror.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yorkie@^2.0.0: + version "2.0.0" + resolved "https://registry.npmmirror.com/yorkie/-/yorkie-2.0.0.tgz#92411912d435214e12c51c2ae1093e54b6bb83d9" + integrity sha512-jcKpkthap6x63MB4TxwCyuIGkV0oYP/YRyuQU5UO0Yz/E/ZAu+653/uov+phdmO54n6BcvFRyyt0RRrWdN2mpw== + dependencies: + execa "^0.8.0" + is-ci "^1.0.10" + normalize-path "^1.0.0" + strip-indent "^2.0.0" + +zrender@5.4.0: + version "5.4.0" + resolved "https://registry.npmmirror.com/zrender/-/zrender-5.4.0.tgz#d4f76e527b2e3bbd7add2bdaf27a16af85785576" + integrity sha512-rOS09Z2HSVGFs2dn/TuYk5BlCaZcVe8UDLLjj1ySYF828LATKKdxuakSZMvrDz54yiKPDYVfjdKqcX8Jky3BIA== + dependencies: + tslib "2.3.0" diff --git a/yuhong_plc/.vs/ProjectEvaluation/yhplcreaddata.metadata.v2 b/yuhong_plc/.vs/ProjectEvaluation/yhplcreaddata.metadata.v2 new file mode 100644 index 0000000..54abda9 Binary files /dev/null and b/yuhong_plc/.vs/ProjectEvaluation/yhplcreaddata.metadata.v2 differ diff --git a/yuhong_plc/.vs/ProjectEvaluation/yhplcreaddata.projects.v2 b/yuhong_plc/.vs/ProjectEvaluation/yhplcreaddata.projects.v2 new file mode 100644 index 0000000..9ef6227 Binary files /dev/null and b/yuhong_plc/.vs/ProjectEvaluation/yhplcreaddata.projects.v2 differ diff --git a/yuhong_plc/.vs/cjyx/DesignTimeBuild/.dtbcache.v2 b/yuhong_plc/.vs/cjyx/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..6944b3f Binary files /dev/null and b/yuhong_plc/.vs/cjyx/DesignTimeBuild/.dtbcache.v2 differ diff --git a/yuhong_plc/.vs/cjyx/project-colors.json b/yuhong_plc/.vs/cjyx/project-colors.json new file mode 100644 index 0000000..b6eb8f2 --- /dev/null +++ b/yuhong_plc/.vs/cjyx/project-colors.json @@ -0,0 +1,61 @@ +{ + "Version": 1, + "ProjectMap": { + "139f3979-038e-4186-b065-1b835cd9aaa7": { + "ProjectGuid": "139f3979-038e-4186-b065-1b835cd9aaa7", + "DisplayName": "zzz.Api", + "ColorIndex": 0 + }, + "f61abdd4-6f35-4006-b447-ae5578591912": { + "ProjectGuid": "f61abdd4-6f35-4006-b447-ae5578591912", + "DisplayName": "zzz.Extensions", + "ColorIndex": 1 + }, + "76991cad-c9ee-4611-a664-77d9f6a49614": { + "ProjectGuid": "76991cad-c9ee-4611-a664-77d9f6a49614", + "DisplayName": "zzz.Common", + "ColorIndex": 2 + }, + "533c129e-73e2-4e82-8fbb-dc518be13cce": { + "ProjectGuid": "533c129e-73e2-4e82-8fbb-dc518be13cce", + "DisplayName": "zzz.Model", + "ColorIndex": 3 + }, + "35f04e95-cdb3-48d6-adb2-a9a6ddc75bf1": { + "ProjectGuid": "35f04e95-cdb3-48d6-adb2-a9a6ddc75bf1", + "DisplayName": "zzz.Repository", + "ColorIndex": 4 + }, + "686f4605-1a63-46bd-b443-7ee20ad8d1ed": { + "ProjectGuid": "686f4605-1a63-46bd-b443-7ee20ad8d1ed", + "DisplayName": "zzz.Services", + "ColorIndex": 5 + }, + "575f3c0e-56b7-4804-b7a5-0579eba3bec2": { + "ProjectGuid": "575f3c0e-56b7-4804-b7a5-0579eba3bec2", + "DisplayName": "cjyx.Tasks", + "ColorIndex": 6 + }, + "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": { + "ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3", + "DisplayName": "杂项文件", + "ColorIndex": -1 + }, + "29f91dd0-ec9e-4acb-8a0c-639ced4448bf": { + "ProjectGuid": "29f91dd0-ec9e-4acb-8a0c-639ced4448bf", + "DisplayName": "cjyx.Tasks", + "ColorIndex": 7 + }, + "750244e6-4364-4228-8bee-eeef101053de": { + "ProjectGuid": "750244e6-4364-4228-8bee-eeef101053de", + "DisplayName": "cjyx.Tasks", + "ColorIndex": 8 + }, + "82da86c5-fcbf-4f5c-b1c8-364748149157": { + "ProjectGuid": "82da86c5-fcbf-4f5c-b1c8-364748149157", + "DisplayName": "zzz.Tasks", + "ColorIndex": 9 + } + }, + "NextColorIndex": 10 +} \ No newline at end of file diff --git a/yuhong_plc/.vs/cjyx/v17/.futdcache.v1 b/yuhong_plc/.vs/cjyx/v17/.futdcache.v1 new file mode 100644 index 0000000..735a020 Binary files /dev/null and b/yuhong_plc/.vs/cjyx/v17/.futdcache.v1 differ diff --git a/yuhong_plc/.vs/cjyx/v17/.suo b/yuhong_plc/.vs/cjyx/v17/.suo new file mode 100644 index 0000000..b0ef25f Binary files /dev/null and b/yuhong_plc/.vs/cjyx/v17/.suo differ diff --git a/yuhong_plc/.vs/yhPlcReadData/DesignTimeBuild/.dtbcache.v2 b/yuhong_plc/.vs/yhPlcReadData/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..b0db794 Binary files /dev/null and b/yuhong_plc/.vs/yhPlcReadData/DesignTimeBuild/.dtbcache.v2 differ diff --git a/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/00d151aa-e50b-40b6-a047-e2e2776c0729.vsidx b/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/00d151aa-e50b-40b6-a047-e2e2776c0729.vsidx new file mode 100644 index 0000000..781427f Binary files /dev/null and b/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/00d151aa-e50b-40b6-a047-e2e2776c0729.vsidx differ diff --git a/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/0ba807f6-c946-43e7-85f0-3743bd395552.vsidx b/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/0ba807f6-c946-43e7-85f0-3743bd395552.vsidx new file mode 100644 index 0000000..76ac390 Binary files /dev/null and b/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/0ba807f6-c946-43e7-85f0-3743bd395552.vsidx differ diff --git a/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/587e667b-d8f2-494d-85ff-290bde9ffbaa.vsidx b/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/587e667b-d8f2-494d-85ff-290bde9ffbaa.vsidx new file mode 100644 index 0000000..7a21caf Binary files /dev/null and b/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/587e667b-d8f2-494d-85ff-290bde9ffbaa.vsidx differ diff --git a/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/66a8c83e-f9fb-4b54-9298-82bc2014dbbd.vsidx b/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/66a8c83e-f9fb-4b54-9298-82bc2014dbbd.vsidx new file mode 100644 index 0000000..d6fa5ed Binary files /dev/null and b/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/66a8c83e-f9fb-4b54-9298-82bc2014dbbd.vsidx differ diff --git a/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/b687e6ee-ef8a-42f8-be54-470f00b2f0ba.vsidx b/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/b687e6ee-ef8a-42f8-be54-470f00b2f0ba.vsidx new file mode 100644 index 0000000..8080c27 Binary files /dev/null and b/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/b687e6ee-ef8a-42f8-be54-470f00b2f0ba.vsidx differ diff --git a/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/read.lock b/yuhong_plc/.vs/yhPlcReadData/FileContentIndex/read.lock new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/.vs/yhPlcReadData/config/applicationhost.config b/yuhong_plc/.vs/yhPlcReadData/config/applicationhost.config new file mode 100644 index 0000000..b3a791a --- /dev/null +++ b/yuhong_plc/.vs/yhPlcReadData/config/applicationhost.config @@ -0,0 +1,988 @@ + + + + + + +
+
+
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+ +
+
+ +
+
+
+ + +
+
+
+
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/yuhong_plc/.vs/yhPlcReadData/project-colors.json b/yuhong_plc/.vs/yhPlcReadData/project-colors.json new file mode 100644 index 0000000..57f4926 --- /dev/null +++ b/yuhong_plc/.vs/yhPlcReadData/project-colors.json @@ -0,0 +1,46 @@ +{ + "Version": 1, + "ProjectMap": { + "686f4605-1a63-46bd-b443-7ee20ad8d1ed": { + "ProjectGuid": "686f4605-1a63-46bd-b443-7ee20ad8d1ed", + "DisplayName": "zzz.Services", + "ColorIndex": 0 + }, + "82da86c5-fcbf-4f5c-b1c8-364748149157": { + "ProjectGuid": "82da86c5-fcbf-4f5c-b1c8-364748149157", + "DisplayName": "zzz.Tasks", + "ColorIndex": 1 + }, + "533c129e-73e2-4e82-8fbb-dc518be13cce": { + "ProjectGuid": "533c129e-73e2-4e82-8fbb-dc518be13cce", + "DisplayName": "zzz.Model", + "ColorIndex": 2 + }, + "139f3979-038e-4186-b065-1b835cd9aaa7": { + "ProjectGuid": "139f3979-038e-4186-b065-1b835cd9aaa7", + "DisplayName": "zzz.Api", + "ColorIndex": 3 + }, + "f61abdd4-6f35-4006-b447-ae5578591912": { + "ProjectGuid": "f61abdd4-6f35-4006-b447-ae5578591912", + "DisplayName": "zzz.Extensions", + "ColorIndex": 4 + }, + "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": { + "ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3", + "DisplayName": "杂项文件", + "ColorIndex": -1 + }, + "76991cad-c9ee-4611-a664-77d9f6a49614": { + "ProjectGuid": "76991cad-c9ee-4611-a664-77d9f6a49614", + "DisplayName": "zzz.Common", + "ColorIndex": 5 + }, + "35f04e95-cdb3-48d6-adb2-a9a6ddc75bf1": { + "ProjectGuid": "35f04e95-cdb3-48d6-adb2-a9a6ddc75bf1", + "DisplayName": "zzz.Repository", + "ColorIndex": 6 + } + }, + "NextColorIndex": 7 +} \ No newline at end of file diff --git a/yuhong_plc/.vs/yhPlcReadData/v16/.suo b/yuhong_plc/.vs/yhPlcReadData/v16/.suo new file mode 100644 index 0000000..9789641 Binary files /dev/null and b/yuhong_plc/.vs/yhPlcReadData/v16/.suo differ diff --git a/yuhong_plc/.vs/yhPlcReadData/v17/.futdcache.v1 b/yuhong_plc/.vs/yhPlcReadData/v17/.futdcache.v1 new file mode 100644 index 0000000..0adee6a Binary files /dev/null and b/yuhong_plc/.vs/yhPlcReadData/v17/.futdcache.v1 differ diff --git a/yuhong_plc/.vs/yhPlcReadData/v17/.suo b/yuhong_plc/.vs/yhPlcReadData/v17/.suo new file mode 100644 index 0000000..9f2ea97 Binary files /dev/null and b/yuhong_plc/.vs/yhPlcReadData/v17/.suo differ diff --git a/yuhong_plc/YuHongPpublish/AutoMapper.Extensions.Microsoft.DependencyInjection.dll b/yuhong_plc/YuHongPpublish/AutoMapper.Extensions.Microsoft.DependencyInjection.dll new file mode 100644 index 0000000..d8c1c58 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/AutoMapper.Extensions.Microsoft.DependencyInjection.dll differ diff --git a/yuhong_plc/YuHongPpublish/AutoMapper.dll b/yuhong_plc/YuHongPpublish/AutoMapper.dll new file mode 100644 index 0000000..7699210 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/AutoMapper.dll differ diff --git a/yuhong_plc/YuHongPpublish/Autofac.Extensions.DependencyInjection.dll b/yuhong_plc/YuHongPpublish/Autofac.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..ecbb4c9 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Autofac.Extensions.DependencyInjection.dll differ diff --git a/yuhong_plc/YuHongPpublish/Autofac.Extras.DynamicProxy.dll b/yuhong_plc/YuHongPpublish/Autofac.Extras.DynamicProxy.dll new file mode 100644 index 0000000..30922cf Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Autofac.Extras.DynamicProxy.dll differ diff --git a/yuhong_plc/YuHongPpublish/Autofac.dll b/yuhong_plc/YuHongPpublish/Autofac.dll new file mode 100644 index 0000000..fa2fdf5 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Autofac.dll differ diff --git a/yuhong_plc/YuHongPpublish/BouncyCastle.Crypto.dll b/yuhong_plc/YuHongPpublish/BouncyCastle.Crypto.dll new file mode 100644 index 0000000..395228b Binary files /dev/null and b/yuhong_plc/YuHongPpublish/BouncyCastle.Crypto.dll differ diff --git a/yuhong_plc/YuHongPpublish/Castle.Core.dll b/yuhong_plc/YuHongPpublish/Castle.Core.dll new file mode 100644 index 0000000..527172e Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Castle.Core.dll differ diff --git a/yuhong_plc/YuHongPpublish/DmProvider.dll b/yuhong_plc/YuHongPpublish/DmProvider.dll new file mode 100644 index 0000000..7f92f58 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/DmProvider.dll differ diff --git a/yuhong_plc/YuHongPpublish/Google.Protobuf.dll b/yuhong_plc/YuHongPpublish/Google.Protobuf.dll new file mode 100644 index 0000000..cf2e030 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Google.Protobuf.dll differ diff --git a/yuhong_plc/YuHongPpublish/HslCommunication.dll b/yuhong_plc/YuHongPpublish/HslCommunication.dll new file mode 100644 index 0000000..649961a Binary files /dev/null and b/yuhong_plc/YuHongPpublish/HslCommunication.dll differ diff --git a/yuhong_plc/YuHongPpublish/K4os.Compression.LZ4.Streams.dll b/yuhong_plc/YuHongPpublish/K4os.Compression.LZ4.Streams.dll new file mode 100644 index 0000000..42f55d6 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/K4os.Compression.LZ4.Streams.dll differ diff --git a/yuhong_plc/YuHongPpublish/K4os.Compression.LZ4.dll b/yuhong_plc/YuHongPpublish/K4os.Compression.LZ4.dll new file mode 100644 index 0000000..718ebb3 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/K4os.Compression.LZ4.dll differ diff --git a/yuhong_plc/YuHongPpublish/K4os.Hash.xxHash.dll b/yuhong_plc/YuHongPpublish/K4os.Hash.xxHash.dll new file mode 100644 index 0000000..4179a29 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/K4os.Hash.xxHash.dll differ diff --git a/yuhong_plc/YuHongPpublish/Kdbndp.dll b/yuhong_plc/YuHongPpublish/Kdbndp.dll new file mode 100644 index 0000000..af774bb Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Kdbndp.dll differ diff --git a/yuhong_plc/YuHongPpublish/Log/RequestResponseLog.log b/yuhong_plc/YuHongPpublish/Log/RequestResponseLog.log new file mode 100644 index 0000000..b33b543 --- /dev/null +++ b/yuhong_plc/YuHongPpublish/Log/RequestResponseLog.log @@ -0,0 +1,11 @@ +-------------------------------- +2022/6/3 15:48:45| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/6/3 15:48:45| +Response Data: +成功调用Api接口 + diff --git a/yuhong_plc/YuHongPpublish/Log4net.config b/yuhong_plc/YuHongPpublish/Log4net.config new file mode 100644 index 0000000..ab6106d --- /dev/null +++ b/yuhong_plc/YuHongPpublish/Log4net.config @@ -0,0 +1,511 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/yuhong_plc/YuHongPpublish/MicroKnights.Log4NetAdoNetAppender.dll b/yuhong_plc/YuHongPpublish/MicroKnights.Log4NetAdoNetAppender.dll new file mode 100644 index 0000000..4fd54e0 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/MicroKnights.Log4NetAdoNetAppender.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.AspNetCore.Connections.Abstractions.dll b/yuhong_plc/YuHongPpublish/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 0000000..85586ae Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.AspNetCore.JsonPatch.dll b/yuhong_plc/YuHongPpublish/Microsoft.AspNetCore.JsonPatch.dll new file mode 100644 index 0000000..cab786e Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.AspNetCore.JsonPatch.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll b/yuhong_plc/YuHongPpublish/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll new file mode 100644 index 0000000..3393ce2 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.AspNetCore.SignalR.Common.dll b/yuhong_plc/YuHongPpublish/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100644 index 0000000..cc430da Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll b/yuhong_plc/YuHongPpublish/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll new file mode 100644 index 0000000..b7f8005 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.Data.SqlClient.dll b/yuhong_plc/YuHongPpublish/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..7131196 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.Data.Sqlite.dll b/yuhong_plc/YuHongPpublish/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..5929124 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.Data.Sqlite.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.Extensions.Configuration.dll b/yuhong_plc/YuHongPpublish/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..b84fb11 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.Extensions.Configuration.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.Extensions.DependencyModel.dll b/yuhong_plc/YuHongPpublish/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..02b9f97 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.Extensions.DependencyModel.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.Extensions.Features.dll b/yuhong_plc/YuHongPpublish/Microsoft.Extensions.Features.dll new file mode 100644 index 0000000..71bca4a Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.Extensions.Features.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll b/yuhong_plc/YuHongPpublish/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll new file mode 100644 index 0000000..66eb022 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.Identity.Client.dll b/yuhong_plc/YuHongPpublish/Microsoft.Identity.Client.dll new file mode 100644 index 0000000..c01fcbf Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.Identity.Client.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.IdentityModel.JsonWebTokens.dll b/yuhong_plc/YuHongPpublish/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..70b84f2 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.IdentityModel.Logging.dll b/yuhong_plc/YuHongPpublish/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..7ecc3be Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.IdentityModel.Logging.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/yuhong_plc/YuHongPpublish/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..d925b5b Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.IdentityModel.Protocols.dll b/yuhong_plc/YuHongPpublish/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..17423cc Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.IdentityModel.Protocols.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.IdentityModel.Tokens.dll b/yuhong_plc/YuHongPpublish/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..dd66624 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.IdentityModel.Tokens.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.OpenApi.dll b/yuhong_plc/YuHongPpublish/Microsoft.OpenApi.dll new file mode 100644 index 0000000..14f3ded Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.OpenApi.dll differ diff --git a/yuhong_plc/YuHongPpublish/Microsoft.Win32.SystemEvents.dll b/yuhong_plc/YuHongPpublish/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..e27fe8d Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Microsoft.Win32.SystemEvents.dll differ diff --git a/yuhong_plc/YuHongPpublish/MiniProfiler.AspNetCore.Mvc.dll b/yuhong_plc/YuHongPpublish/MiniProfiler.AspNetCore.Mvc.dll new file mode 100644 index 0000000..61610c8 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/MiniProfiler.AspNetCore.Mvc.dll differ diff --git a/yuhong_plc/YuHongPpublish/MiniProfiler.AspNetCore.dll b/yuhong_plc/YuHongPpublish/MiniProfiler.AspNetCore.dll new file mode 100644 index 0000000..bd60830 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/MiniProfiler.AspNetCore.dll differ diff --git a/yuhong_plc/YuHongPpublish/MiniProfiler.Shared.dll b/yuhong_plc/YuHongPpublish/MiniProfiler.Shared.dll new file mode 100644 index 0000000..5f3f7e0 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/MiniProfiler.Shared.dll differ diff --git a/yuhong_plc/YuHongPpublish/MySql.Data.dll b/yuhong_plc/YuHongPpublish/MySql.Data.dll new file mode 100644 index 0000000..c4eb61b Binary files /dev/null and b/yuhong_plc/YuHongPpublish/MySql.Data.dll differ diff --git a/yuhong_plc/YuHongPpublish/Newtonsoft.Json.Bson.dll b/yuhong_plc/YuHongPpublish/Newtonsoft.Json.Bson.dll new file mode 100644 index 0000000..e9b1dd2 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Newtonsoft.Json.Bson.dll differ diff --git a/yuhong_plc/YuHongPpublish/Newtonsoft.Json.dll b/yuhong_plc/YuHongPpublish/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Newtonsoft.Json.dll differ diff --git a/yuhong_plc/YuHongPpublish/Npgsql.dll b/yuhong_plc/YuHongPpublish/Npgsql.dll new file mode 100644 index 0000000..7b2d4a0 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Npgsql.dll differ diff --git a/yuhong_plc/YuHongPpublish/Oracle.ManagedDataAccess.dll b/yuhong_plc/YuHongPpublish/Oracle.ManagedDataAccess.dll new file mode 100644 index 0000000..50822b9 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Oracle.ManagedDataAccess.dll differ diff --git a/yuhong_plc/YuHongPpublish/Quartz.dll b/yuhong_plc/YuHongPpublish/Quartz.dll new file mode 100644 index 0000000..9b4b363 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Quartz.dll differ diff --git a/yuhong_plc/YuHongPpublish/SQLitePCLRaw.batteries_v2.dll b/yuhong_plc/YuHongPpublish/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..c51a77d Binary files /dev/null and b/yuhong_plc/YuHongPpublish/SQLitePCLRaw.batteries_v2.dll differ diff --git a/yuhong_plc/YuHongPpublish/SQLitePCLRaw.core.dll b/yuhong_plc/YuHongPpublish/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..d995f27 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/SQLitePCLRaw.core.dll differ diff --git a/yuhong_plc/YuHongPpublish/SQLitePCLRaw.nativelibrary.dll b/yuhong_plc/YuHongPpublish/SQLitePCLRaw.nativelibrary.dll new file mode 100644 index 0000000..7bb1b03 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/SQLitePCLRaw.nativelibrary.dll differ diff --git a/yuhong_plc/YuHongPpublish/SQLitePCLRaw.provider.dynamic_cdecl.dll b/yuhong_plc/YuHongPpublish/SQLitePCLRaw.provider.dynamic_cdecl.dll new file mode 100644 index 0000000..2be5647 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/SQLitePCLRaw.provider.dynamic_cdecl.dll differ diff --git a/yuhong_plc/YuHongPpublish/Scrutor.dll b/yuhong_plc/YuHongPpublish/Scrutor.dll new file mode 100644 index 0000000..06eb31e Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Scrutor.dll differ diff --git a/yuhong_plc/YuHongPpublish/Serilog.Sinks.File.dll b/yuhong_plc/YuHongPpublish/Serilog.Sinks.File.dll new file mode 100644 index 0000000..29dc2fd Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Serilog.Sinks.File.dll differ diff --git a/yuhong_plc/YuHongPpublish/Serilog.dll b/yuhong_plc/YuHongPpublish/Serilog.dll new file mode 100644 index 0000000..e040a8a Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Serilog.dll differ diff --git a/yuhong_plc/YuHongPpublish/SqlSugar.dll b/yuhong_plc/YuHongPpublish/SqlSugar.dll new file mode 100644 index 0000000..2313b7b Binary files /dev/null and b/yuhong_plc/YuHongPpublish/SqlSugar.dll differ diff --git a/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.Filters.Abstractions.dll b/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.Filters.Abstractions.dll new file mode 100644 index 0000000..2c44bb5 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.Filters.Abstractions.dll differ diff --git a/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.Filters.dll b/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.Filters.dll new file mode 100644 index 0000000..7be1d8a Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.Filters.dll differ diff --git a/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.Newtonsoft.dll b/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.Newtonsoft.dll new file mode 100644 index 0000000..61534e9 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.Newtonsoft.dll differ diff --git a/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.Swagger.dll b/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..88995c9 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.SwaggerGen.dll b/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..6afe2f0 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.SwaggerUI.dll b/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..a26f458 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/yuhong_plc/YuHongPpublish/System.Configuration.ConfigurationManager.dll b/yuhong_plc/YuHongPpublish/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..6f34b8d Binary files /dev/null and b/yuhong_plc/YuHongPpublish/System.Configuration.ConfigurationManager.dll differ diff --git a/yuhong_plc/YuHongPpublish/System.Diagnostics.PerformanceCounter.dll b/yuhong_plc/YuHongPpublish/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..3300cff Binary files /dev/null and b/yuhong_plc/YuHongPpublish/System.Diagnostics.PerformanceCounter.dll differ diff --git a/yuhong_plc/YuHongPpublish/System.DirectoryServices.Protocols.dll b/yuhong_plc/YuHongPpublish/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..ffc64e4 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/System.DirectoryServices.Protocols.dll differ diff --git a/yuhong_plc/YuHongPpublish/System.DirectoryServices.dll b/yuhong_plc/YuHongPpublish/System.DirectoryServices.dll new file mode 100644 index 0000000..b361d18 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/System.DirectoryServices.dll differ diff --git a/yuhong_plc/YuHongPpublish/System.Drawing.Common.dll b/yuhong_plc/YuHongPpublish/System.Drawing.Common.dll new file mode 100644 index 0000000..69e5f5c Binary files /dev/null and b/yuhong_plc/YuHongPpublish/System.Drawing.Common.dll differ diff --git a/yuhong_plc/YuHongPpublish/System.IO.Pipelines.dll b/yuhong_plc/YuHongPpublish/System.IO.Pipelines.dll new file mode 100644 index 0000000..8ee4dfd Binary files /dev/null and b/yuhong_plc/YuHongPpublish/System.IO.Pipelines.dll differ diff --git a/yuhong_plc/YuHongPpublish/System.IdentityModel.Tokens.Jwt.dll b/yuhong_plc/YuHongPpublish/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..efd3c61 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/yuhong_plc/YuHongPpublish/System.Net.WebSockets.WebSocketProtocol.dll b/yuhong_plc/YuHongPpublish/System.Net.WebSockets.WebSocketProtocol.dll new file mode 100644 index 0000000..b6a723a Binary files /dev/null and b/yuhong_plc/YuHongPpublish/System.Net.WebSockets.WebSocketProtocol.dll differ diff --git a/yuhong_plc/YuHongPpublish/System.Runtime.Caching.dll b/yuhong_plc/YuHongPpublish/System.Runtime.Caching.dll new file mode 100644 index 0000000..6fedfab Binary files /dev/null and b/yuhong_plc/YuHongPpublish/System.Runtime.Caching.dll differ diff --git a/yuhong_plc/YuHongPpublish/System.Security.Cryptography.ProtectedData.dll b/yuhong_plc/YuHongPpublish/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..a60b95b Binary files /dev/null and b/yuhong_plc/YuHongPpublish/System.Security.Cryptography.ProtectedData.dll differ diff --git a/yuhong_plc/YuHongPpublish/System.Security.Permissions.dll b/yuhong_plc/YuHongPpublish/System.Security.Permissions.dll new file mode 100644 index 0000000..76faf41 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/System.Security.Permissions.dll differ diff --git a/yuhong_plc/YuHongPpublish/System.Windows.Extensions.dll b/yuhong_plc/YuHongPpublish/System.Windows.Extensions.dll new file mode 100644 index 0000000..7f075b2 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/System.Windows.Extensions.dll differ diff --git a/yuhong_plc/YuHongPpublish/Ubiety.Dns.Core.dll b/yuhong_plc/YuHongPpublish/Ubiety.Dns.Core.dll new file mode 100644 index 0000000..b10ecf2 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Ubiety.Dns.Core.dll differ diff --git a/yuhong_plc/YuHongPpublish/WebApiClient.Extensions.DependencyInjection.dll b/yuhong_plc/YuHongPpublish/WebApiClient.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..f6580f4 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/WebApiClient.Extensions.DependencyInjection.dll differ diff --git a/yuhong_plc/YuHongPpublish/WebApiClient.JIT.dll b/yuhong_plc/YuHongPpublish/WebApiClient.JIT.dll new file mode 100644 index 0000000..c68d9b5 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/WebApiClient.JIT.dll differ diff --git a/yuhong_plc/YuHongPpublish/Yitter.IdGenerator.dll b/yuhong_plc/YuHongPpublish/Yitter.IdGenerator.dll new file mode 100644 index 0000000..7eb8700 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/Yitter.IdGenerator.dll differ diff --git a/yuhong_plc/YuHongPpublish/ZstdNet.dll b/yuhong_plc/YuHongPpublish/ZstdNet.dll new file mode 100644 index 0000000..bc60788 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/ZstdNet.dll differ diff --git a/yuhong_plc/YuHongPpublish/appsettings.Development.json b/yuhong_plc/YuHongPpublish/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/yuhong_plc/YuHongPpublish/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/yuhong_plc/YuHongPpublish/appsettings.json b/yuhong_plc/YuHongPpublish/appsettings.json new file mode 100644 index 0000000..898c9c5 --- /dev/null +++ b/yuhong_plc/YuHongPpublish/appsettings.json @@ -0,0 +1,70 @@ +{ + //���ݿ����� /* MySql=0;SqlServer=1;Sqlite=2;Oracle=3;PostgreSQL=4;Dm=5;;;;;;;;*/ + "DBType": 0, + //���ݿ������ַ��� + "ConnectionStrings": { + "Sqlite": "Data Source=./Magic.db", + "SqlServer": "Server=BLACK; Database=zzzTest01; User=sa; Password=123456zls!;MultipleActiveResultSets=True;", + //"MySql": "Data Source=150.158.169.212;Database=cjyx;User ID=base;Password=123456;pooling=true;port=3306;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;", + "MySql": "Data Source=222.71.165.187;Database=cjyx;User ID=root;Password=123456;pooling=true;port=3306;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;" + //"MySql": "Data Source=101.34.35.69;Database=cjyx_wm;User ID=base;Password=123456;pooling=true;port=3306;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;" + }, + //�Զ��������ݿ� + "SeedDBEnabled": false, + //�Զ���ʼ������ + "SeedDBDataEnabled": false, + //Logд��DB + "LogToDb": false, + + //Logging���� + "Logging": { + "LogLevel": { + "Default": "Information", //����Default����log4net����д�벻����־ + "zzz.AuthHelper.ApiResponseHandler": "Error" + }, + "Debug": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning" + } + }, + "Console": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning", + "Microsoft.Hosting.Lifetime": "Debug" + } + }, + "Log4Net": { + "Name": "zzz" + } + }, + "AllowedHosts": "*", + //�м������ + "Middleware": { + //��ʱ���� + "QuartzNetJob": false, + //����д��Log + "RequestResponseLog": true, + //���ܷ��� + "MiniProfiler": true, + "SignalR": true + }, + //Aop���� + "Aop": { + "LogAOP": true, + "TranAOP": true, + "SqlAOP": { + "OutToLogFile": true, + "OutToConsole": true + } + }, + //�ܼ���Api���� + "Gjp": { + "BasicUrl": "http://api.cmgrasp.com/CMGraspApi/GateWay", + "AppKey": "80DDA4A9D5804DA4B0887104529523C2", + "SercretKey": "EE379CED41C748B49024FC8CD81B5909", + "userid": "10488149", + "dbname": "M7215API����" + } +} diff --git a/yuhong_plc/YuHongPpublish/log4net.dll b/yuhong_plc/YuHongPpublish/log4net.dll new file mode 100644 index 0000000..3d6a0a6 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/log4net.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/alpine-x64/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublish/runtimes/alpine-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/alpine-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/linux-arm/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublish/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..6b0158a Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/linux-arm64/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublish/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..7c590b7 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/linux-armel/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublish/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..bc22810 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/linux-mips64/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublish/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..c82d186 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/linux-musl-x64/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublish/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/linux-x64/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublish/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..484bfc2 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/linux-x86/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublish/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..d4c96f7 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/osx-x64/native/libe_sqlite3.dylib b/yuhong_plc/YuHongPpublish/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3b9e7a4 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll b/yuhong_plc/YuHongPpublish/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..3a19d3d Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/yuhong_plc/YuHongPpublish/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..3fc08e4 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/YuHongPpublish/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..3068646 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win-arm/native/e_sqlite3.dll b/yuhong_plc/YuHongPpublish/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..d019891 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/YuHongPpublish/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..965f535 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win-arm64/native/e_sqlite3.dll b/yuhong_plc/YuHongPpublish/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..d8b3149 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/YuHongPpublish/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..227b87b Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win-x64/native/e_sqlite3.dll b/yuhong_plc/YuHongPpublish/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..8d3ca0c Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/YuHongPpublish/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..0add8c2 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win-x86/native/e_sqlite3.dll b/yuhong_plc/YuHongPpublish/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..3ad1bc9 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..9d5fe02 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..c9f3075 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll new file mode 100644 index 0000000..04879ec Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..c49c358 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..9a04b68 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..3fb4939 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..c4b9b5d Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..175d085 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll differ diff --git a/yuhong_plc/YuHongPpublish/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..d8f2f45 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/yuhong_plc/YuHongPpublish/web.config b/yuhong_plc/YuHongPpublish/web.config new file mode 100644 index 0000000..f9ad3ee --- /dev/null +++ b/yuhong_plc/YuHongPpublish/web.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/yuhong_plc/YuHongPpublish/wwwroot/index.html b/yuhong_plc/YuHongPpublish/wwwroot/index.html new file mode 100644 index 0000000..73e74b5 --- /dev/null +++ b/yuhong_plc/YuHongPpublish/wwwroot/index.html @@ -0,0 +1,10 @@ + + + + + Swagger入坑 + + + + + \ No newline at end of file diff --git a/yuhong_plc/YuHongPpublish/zzz.Api.deps.json b/yuhong_plc/YuHongPpublish/zzz.Api.deps.json new file mode 100644 index 0000000..5c4fb8d --- /dev/null +++ b/yuhong_plc/YuHongPpublish/zzz.Api.deps.json @@ -0,0 +1,3725 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Api/1.0.0": { + "dependencies": { + "Autofac.Extensions.DependencyInjection": "7.2.0", + "MicroKnights.Log4NetAdoNetAppender": "2.2.0", + "zzz.Extensions": "1.0.0" + }, + "runtime": { + "zzz.Api.dll": {} + } + }, + "Autofac/6.3.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net5.0/Autofac.dll": { + "assemblyVersion": "6.3.0.0", + "fileVersion": "6.3.0.0" + } + } + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "dependencies": { + "Autofac": "6.3.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + }, + "runtime": { + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.2.0.0" + } + } + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "dependencies": { + "Autofac": "6.3.0", + "Castle.Core": "4.4.0" + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.1.0" + } + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Castle.Core/4.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.4.0.0" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "HslCommunication/7.0.1": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": { + "assemblyVersion": "7.0.1.0", + "fileVersion": "7.0.1.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "MicroKnights.Log4NetAdoNetAppender/2.2.0": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "lib/netstandard2.1/MicroKnights.Log4NetAdoNetAppender.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "dependencies": { + "Microsoft.Extensions.Features": "6.0.5", + "System.IO.Pipelines": "6.0.3" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0" + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.0", + "Newtonsoft.Json": "13.0.1", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Newtonsoft.Json": "13.0.1", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "6.0.0-rc.1.21452.15", + "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + } + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections": "1.1.0", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0" + } + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.5.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Net.WebSockets.WebSocketProtocol": "4.5.1" + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.Extensions.Features/6.0.5": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Features.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {}, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll": { + "assemblyVersion": "6.1.0.0", + "fileVersion": "6.1.0.0" + } + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": {}, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MiniProfiler.AspNetCore/4.2.22": { + "dependencies": { + "MiniProfiler.Shared": "4.2.22", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "dependencies": { + "MiniProfiler.AspNetCore": "4.2.22" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.Shared/4.2.22": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.ComponentModel.Primitives": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Quartz/3.4.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.0.0" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "Scrutor/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "13.0.1", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + } + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.OpenApi": "1.2.3", + "Scrutor": "3.3.0", + "Swashbuckle.AspNetCore.Filters.Abstractions": "7.0.2", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.0-rc.1.21452.15", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/1.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Pipelines/6.0.3": { + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21309" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "runtime": { + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26606.5" + } + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.4.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "dependencies": { + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "zzz.Extensions/1.0.0": { + "dependencies": { + "Autofac": "6.3.0", + "Autofac.Extras.DynamicProxy": "6.0.1", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.SignalR": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson": "6.0.5", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.Log4Net.AspNetCore": "6.1.0", + "MiniProfiler.AspNetCore.Mvc": "4.2.22", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Filters": "7.0.2", + "Swashbuckle.AspNetCore.Newtonsoft": "6.3.1", + "log4net": "2.0.14", + "zzz.Services": "1.0.0", + "zzz.Tasks": "1.0.0" + }, + "runtime": { + "zzz.Extensions.dll": {} + } + }, + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "runtime": { + "zzz.Repository.dll": {} + } + }, + "zzz.Services/1.0.0": { + "dependencies": { + "HslCommunication": "7.0.1", + "zzz.Repository": "1.0.0" + }, + "runtime": { + "zzz.Services.dll": {} + } + }, + "zzz.Tasks/1.0.0": { + "dependencies": { + "Quartz": "3.4.0", + "zzz.Services": "1.0.0" + }, + "runtime": { + "zzz.Tasks.dll": {} + } + } + } + }, + "libraries": { + "zzz.Api/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Autofac/6.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gO4bli0N8tDnBHzbYktcnbXlmN6T+IT5W+FUGgCUaM6pwwHXIxOPoUGvfGum7sZpJJgfQNgjFFv80ZPuARgRdA==", + "path": "autofac/6.3.0", + "hashPath": "autofac.6.3.0.nupkg.sha512" + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S2Jor8pTV+8QSs96ENq/FhGdnrWsntGs93z0OXYlIivUWGPNXQHNCjFPfSBeBlHClvJFEXMvlkY32bAKy2YkPg==", + "path": "autofac.extensions.dependencyinjection/7.2.0", + "hashPath": "autofac.extensions.dependencyinjection.7.2.0.nupkg.sha512" + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ulCOXUjbJ5dljBPZf3gRxQNPRGqg/h1cNTZ4SpXK3qiamTfRsW3gXs2w/IJ+CIDmHrFGYXLqzNd5etvzwB8kA==", + "path": "autofac.extras.dynamicproxy/6.0.1", + "hashPath": "autofac.extras.dynamicproxy.6.0.1.nupkg.sha512" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Castle.Core/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "path": "castle.core/4.4.0", + "hashPath": "castle.core.4.4.0.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "HslCommunication/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "path": "hslcommunication/7.0.1", + "hashPath": "hslcommunication.7.0.1.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "MicroKnights.Log4NetAdoNetAppender/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FryL/5pLWynP8znM5LTXd4M+DmD+Ftls5D8IlyMwCbH7MFWviLyNvGneJZFjmdXschal5lTUOB3Cs1FkEPs7tQ==", + "path": "microknights.log4netadonetappender/2.2.0", + "hashPath": "microknights.log4netadonetappender.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OBbGvih5/CLHTbJVDiJ203TmKXCx8z539O2YGnfHmExbNtMwyQ9rgpqoxyYEVvQrVsqxRhXfh57DOCQYhxcOBQ==", + "path": "microsoft.aspnetcore.connections.abstractions/6.0.5", + "hashPath": "microsoft.aspnetcore.connections.abstractions.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BAibpoItxI5puk7YJbIGj95arZueM8B8M5xT1fXBn3hb3L2G3ucrZcYXv1gXdaroLbntUs8qeV8iuBrpjQsrKw==", + "path": "microsoft.aspnetcore.http/2.2.2", + "hashPath": "microsoft.aspnetcore.http.2.2.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==", + "path": "microsoft.aspnetcore.http.connections/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mYk5QUUjyXQmlyDHWDjkLYDArt97plwe6KsDsNVhDEQ+HgZMKGjISyM6YSA7BERQNR25kXBTbIYfSy1vePGQgg==", + "path": "microsoft.aspnetcore.http.connections.common/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+27ce/d0w7jyEmCCMrzwFRg6PHZxQ37Fmnf+es1qQudbip2rryxPdM8TRoXT6wNtdlzqHnIyXTtLjSs0uIDhxA==", + "path": "microsoft.aspnetcore.jsonpatch/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.jsonpatch.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/dspuIknGgOdBygH3bmjsIH5neuuJ7DHILXrKVPAoCykPARAIUBckZlIW6RrYqmbGTZYT/YFCzr/xDR5f0YiAA==", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "path": "microsoft.aspnetcore.routing/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==", + "path": "microsoft.aspnetcore.signalr/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N+MF6rs64kDDJ4zroD/NqRgXVSEkj/ppTX36AB2S43qm1y64YqWMCFCzLshkmi7SwWwQQPIByTNZDJfz4x7GjQ==", + "path": "microsoft.aspnetcore.signalr.common/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.common.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/7VUbkomGE7ph6R1JTtMji5QPGqesyCSeELFmfylaqFM+SdWf9EmbU3SCQPcIWhfv+RgbUWmTNfWWPzmVDTggw==", + "path": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==", + "path": "microsoft.aspnetcore.websockets/2.2.0", + "hashPath": "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" + }, + "Microsoft.Extensions.Features/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7KLF1jRFQjSttfoilwHU86cU9ZgxN4ABfQR8tQ9qEC5AzTGYIX+K5RDwGFVK320eTiBwWuutV24ecmxBxo7Eg==", + "path": "microsoft.extensions.features/6.0.5", + "hashPath": "microsoft.extensions.features.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qHb3GudscgrgEVByh86kAq3FMmjOdPIVoqvff3eokEP+QkZHzr42l4PlgxBsqhhlIX02SazC7ZdbfiFGDPRv9A==", + "path": "microsoft.extensions.logging.log4net.aspnetcore/6.1.0", + "hashPath": "microsoft.extensions.logging.log4net.aspnetcore.6.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "path": "microsoft.extensions.objectpool/2.2.0", + "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "path": "microsoft.net.http.headers/2.2.0", + "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MiniProfiler.AspNetCore/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bBirB5d4Q0Bgx05Zg4yzXSmOHZQV4ZJhmxU3DGya4FZxNBwjaVHchqEKY0MJW5XLZo8axMAQm4yywgCvUlTymA==", + "path": "miniprofiler.aspnetcore/4.2.22", + "hashPath": "miniprofiler.aspnetcore.4.2.22.nupkg.sha512" + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nzCEaZnh77U9jw+c/qu4CtwYUpHEf+FH1ZMbYKMzIXr8CNNPlypSR6AJEAwjo3bq9TIJIpBMZIaK3inRLUCg4g==", + "path": "miniprofiler.aspnetcore.mvc/4.2.22", + "hashPath": "miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512" + }, + "MiniProfiler.Shared/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==", + "path": "miniprofiler.shared/4.2.22", + "hashPath": "miniprofiler.shared.4.2.22.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Quartz/3.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N8350OAlQhd8zKg0ARFikGjh3bfAW/CF/KVxu2fTIlAALB/oC1eg54n/QAPYR5ryHuYyDr5G8/Qa4k+D/7OFRQ==", + "path": "quartz/3.4.0", + "hashPath": "quartz.3.4.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "Scrutor/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "path": "scrutor/3.3.0", + "hashPath": "scrutor.3.3.0.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "path": "swashbuckle.aspnetcore/6.2.3", + "hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pjj/BdKFcXX1tdUrVjfW6SiRSiHC4dOnqszhU2PuS0RBXZUnGM18tXUrNU2pgPkSjWUnCiyvbjd3GBkEuNTBYA==", + "path": "swashbuckle.aspnetcore.filters/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RqZ+P+m2cw1TVsU9LUHNdLf4Ww7YSqDRt7UHRzauZJnRztDlNR4doOGzXLmWZzq+3CfZyS7NEsQyJmf4Y+7GMQ==", + "path": "swashbuckle.aspnetcore.filters.abstractions/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oy6BwAX+tcKO13n9bw3nPtITBvD03bAHDN2+lTaOY/cUNcQE/liu3xWjbkdhLeNTUiC+7h+lJvR7KUdI7CXz0w==", + "path": "swashbuckle.aspnetcore.newtonsoft/6.3.1", + "hashPath": "swashbuckle.aspnetcore.newtonsoft.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-idAFh4xhyJHYHfdLVOOn+BmscBul1OQbWsnL6YPJE8tO/0y6S79hDCvs6OY5VI093/9+1pYY3j31Zet9yaDZjA==", + "path": "swashbuckle.aspnetcore.swagger/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+uoBV4h/6NhCPLoTofSmuOnZ+usu4PW1jP6l4OHwPyu2frbYXGNpJsHs5uUXXn929OiVQkT8wo3Lj/o+P99Ejg==", + "path": "swashbuckle.aspnetcore.swaggergen/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zukBRPUuNxwy9m4TGWLxKAnoiMc9+B+8VXeXVyPiBPvOd7yLgAlZ1DlsRWJjMx4VsvhhF2+6q6kO2GRbPja6hA==", + "path": "system.collections.immutable/1.3.0", + "hashPath": "system.collections.immutable.1.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "path": "system.diagnostics.tracesource/4.3.0", + "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "path": "system.io.pipelines/6.0.3", + "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==", + "path": "system.net.websockets.websocketprotocol/4.5.1", + "hashPath": "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tc2ZyJgweHCLci5oQGuhQn9TD0Ii9DReXkHtZm3aAGp8xe40rpRjiTbMXOtZU+fr0BOQ46goE9+qIqRGjR9wGg==", + "path": "system.reflection.metadata/1.4.1", + "hashPath": "system.reflection.metadata.1.4.1.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Extensions/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Tasks/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/YuHongPpublish/zzz.Api.dll b/yuhong_plc/YuHongPpublish/zzz.Api.dll new file mode 100644 index 0000000..bce33ca Binary files /dev/null and b/yuhong_plc/YuHongPpublish/zzz.Api.dll differ diff --git a/yuhong_plc/YuHongPpublish/zzz.Api.exe b/yuhong_plc/YuHongPpublish/zzz.Api.exe new file mode 100644 index 0000000..0e2703c Binary files /dev/null and b/yuhong_plc/YuHongPpublish/zzz.Api.exe differ diff --git a/yuhong_plc/YuHongPpublish/zzz.Api.pdb b/yuhong_plc/YuHongPpublish/zzz.Api.pdb new file mode 100644 index 0000000..be4d7e0 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/zzz.Api.pdb differ diff --git a/yuhong_plc/YuHongPpublish/zzz.Api.runtimeconfig.json b/yuhong_plc/YuHongPpublish/zzz.Api.runtimeconfig.json new file mode 100644 index 0000000..80d0347 --- /dev/null +++ b/yuhong_plc/YuHongPpublish/zzz.Api.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "6.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/yuhong_plc/YuHongPpublish/zzz.Api.xml b/yuhong_plc/YuHongPpublish/zzz.Api.xml new file mode 100644 index 0000000..17c3e88 --- /dev/null +++ b/yuhong_plc/YuHongPpublish/zzz.Api.xml @@ -0,0 +1,378 @@ + + + + zzz.Api + + + + + 持续运行 + + + + + 持续运行 + + + + + + + + 激活 + + + + + 立即执行任务 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 余宏大屏数据 + + + + + 余宏大屏数据 + + + + + + + + 工单列表数据 + + + + + + 工单详情 + + + + + + 动态月订单信息数据 + + + + + + 设备信息 + + + + + + 构造 + + + + + + + + 分页获取 + + + + + + + + 添加计划任务 + + + + + + + 修改计划任务 + + + + + + + 删除一个任务 + + + + + + + 启动计划任务 + + + + + + + 停止一个计划任务 + + + + + + + 暂停一个计划任务 + + + + + + + 恢复一个计划任务 + + + + + + + 重启一个计划任务 + + + + + + + 获取任务命名空间 + + + + + + 立即执行任务 + + + + + + + + + + + + + + + + 测试 增加数据 BaseService + + + + + + 测试 增加数据 接口 + + + + + + 测试 修改数据 BaseService + + + + + + 测试 修改部分数据 BaseService + + + + + + 测试 修改数据 接口 + + + + + + 测试 修改部分数据 接口 + + + + + + 测试 软删除数据 BaseService + + + + + + 测试 软删除数据 接口 + + + + + + 测试取单条数据 BaseService + + + + + + + 测试取单条数据 IF + + + + + + + 测试分页数据 Baseservice + + + + + + + 测试分页数据 IF + + + + + + + + + + + + + 读取13线数据 + + + + + + 构造 + + + + + + 同步表结果 Entity-->数据库 + + + + + + + 全局异常错误日志 + + + + + 异常拦截构造函数 + + + + + + + + 异常发生 + + + + + + 自定义返回格式 + + + + + + + + + + + + + + + + + + + 返回错误信息 + + + + + 生产环境的消息 + + + + + 开发环境的消息 + + + + diff --git a/yuhong_plc/YuHongPpublish/zzz.Common.dll b/yuhong_plc/YuHongPpublish/zzz.Common.dll new file mode 100644 index 0000000..ad05fac Binary files /dev/null and b/yuhong_plc/YuHongPpublish/zzz.Common.dll differ diff --git a/yuhong_plc/YuHongPpublish/zzz.Common.pdb b/yuhong_plc/YuHongPpublish/zzz.Common.pdb new file mode 100644 index 0000000..0d0749f Binary files /dev/null and b/yuhong_plc/YuHongPpublish/zzz.Common.pdb differ diff --git a/yuhong_plc/YuHongPpublish/zzz.Extensions.dll b/yuhong_plc/YuHongPpublish/zzz.Extensions.dll new file mode 100644 index 0000000..fb1ba4d Binary files /dev/null and b/yuhong_plc/YuHongPpublish/zzz.Extensions.dll differ diff --git a/yuhong_plc/YuHongPpublish/zzz.Extensions.pdb b/yuhong_plc/YuHongPpublish/zzz.Extensions.pdb new file mode 100644 index 0000000..54d8b9a Binary files /dev/null and b/yuhong_plc/YuHongPpublish/zzz.Extensions.pdb differ diff --git a/yuhong_plc/YuHongPpublish/zzz.Model.dll b/yuhong_plc/YuHongPpublish/zzz.Model.dll new file mode 100644 index 0000000..5fd323d Binary files /dev/null and b/yuhong_plc/YuHongPpublish/zzz.Model.dll differ diff --git a/yuhong_plc/YuHongPpublish/zzz.Model.pdb b/yuhong_plc/YuHongPpublish/zzz.Model.pdb new file mode 100644 index 0000000..12b6c78 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/zzz.Model.pdb differ diff --git a/yuhong_plc/YuHongPpublish/zzz.Model.xml b/yuhong_plc/YuHongPpublish/zzz.Model.xml new file mode 100644 index 0000000..8565f24 --- /dev/null +++ b/yuhong_plc/YuHongPpublish/zzz.Model.xml @@ -0,0 +1,1423 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/YuHongPpublish/zzz.Repository.dll b/yuhong_plc/YuHongPpublish/zzz.Repository.dll new file mode 100644 index 0000000..1cdbd2e Binary files /dev/null and b/yuhong_plc/YuHongPpublish/zzz.Repository.dll differ diff --git a/yuhong_plc/YuHongPpublish/zzz.Repository.pdb b/yuhong_plc/YuHongPpublish/zzz.Repository.pdb new file mode 100644 index 0000000..547a0da Binary files /dev/null and b/yuhong_plc/YuHongPpublish/zzz.Repository.pdb differ diff --git a/yuhong_plc/YuHongPpublish/zzz.Services.dll b/yuhong_plc/YuHongPpublish/zzz.Services.dll new file mode 100644 index 0000000..051085c Binary files /dev/null and b/yuhong_plc/YuHongPpublish/zzz.Services.dll differ diff --git a/yuhong_plc/YuHongPpublish/zzz.Services.pdb b/yuhong_plc/YuHongPpublish/zzz.Services.pdb new file mode 100644 index 0000000..17f1d97 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/zzz.Services.pdb differ diff --git a/yuhong_plc/YuHongPpublish/zzz.Services.xml b/yuhong_plc/YuHongPpublish/zzz.Services.xml new file mode 100644 index 0000000..5a40d4d --- /dev/null +++ b/yuhong_plc/YuHongPpublish/zzz.Services.xml @@ -0,0 +1,889 @@ + + + + zzz.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 种子数据 服务 + + + + + 构造 + + + + + + 异步添加种子数据 + + + + + + + + 同步表结构 + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 种子数据 接口 + + + + + 同步表结构 + + + + + + + 设备名称 + + + + + 设备利用率DTO + + + + + x轴 + + + + + series + + + + + 动态月订单信息数据 + + + + + 生产计划达成率 + + + + + 订单交付率 + + + + + 生产数量 + + + + + 设备利用率 + + + + + 产品合格率 + + + + + 大屏生产工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 完成进度 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 各产品生产数量 + + + + + x轴 + + + + + series + + + + + PLC硬件信息 + + + + + eqmt_id + + + + + ip + + + + + 端口 + + + + + 读取PLC数据接口 + + + + + 读取13线数据 + + + + + 读取16线数据 + + + + + 读取17线数据 + + + + + 读取18线数据 + + + + + 读取19线数据 + + + + + 读取PLC数据服务 + + + + + 构造 + + + + + 打开连接 + + + + + + + + 关闭连接 + + + + + 读取13线数据 + + + + + 读取16线数据 + 一个端口 + + + + + 读取19线数据 + 一个端口 + + + + + 读取17线数据 + 两个端口 + + + + + 读取18线数据 + 两个端口 + + + + + 创建间隔采集数据 + + + + + + 班次产量数据 + + + + + + 计算OEE + + + + + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/YuHongPpublish/zzz.Tasks.dll b/yuhong_plc/YuHongPpublish/zzz.Tasks.dll new file mode 100644 index 0000000..a32a0a2 Binary files /dev/null and b/yuhong_plc/YuHongPpublish/zzz.Tasks.dll differ diff --git a/yuhong_plc/YuHongPpublish/zzz.Tasks.pdb b/yuhong_plc/YuHongPpublish/zzz.Tasks.pdb new file mode 100644 index 0000000..e5f60aa Binary files /dev/null and b/yuhong_plc/YuHongPpublish/zzz.Tasks.pdb differ diff --git a/yuhong_plc/YuHongPpublishTest.rar b/yuhong_plc/YuHongPpublishTest.rar new file mode 100644 index 0000000..6f8cea7 Binary files /dev/null and b/yuhong_plc/YuHongPpublishTest.rar differ diff --git a/yuhong_plc/YuHongPpublishs.zip b/yuhong_plc/YuHongPpublishs.zip new file mode 100644 index 0000000..681c8dc Binary files /dev/null and b/yuhong_plc/YuHongPpublishs.zip differ diff --git a/yuhong_plc/YuHongPpublishs/AutoMapper.Extensions.Microsoft.DependencyInjection.dll b/yuhong_plc/YuHongPpublishs/AutoMapper.Extensions.Microsoft.DependencyInjection.dll new file mode 100644 index 0000000..d8c1c58 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/AutoMapper.Extensions.Microsoft.DependencyInjection.dll differ diff --git a/yuhong_plc/YuHongPpublishs/AutoMapper.dll b/yuhong_plc/YuHongPpublishs/AutoMapper.dll new file mode 100644 index 0000000..7699210 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/AutoMapper.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Autofac.Extensions.DependencyInjection.dll b/yuhong_plc/YuHongPpublishs/Autofac.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..ecbb4c9 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Autofac.Extensions.DependencyInjection.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Autofac.Extras.DynamicProxy.dll b/yuhong_plc/YuHongPpublishs/Autofac.Extras.DynamicProxy.dll new file mode 100644 index 0000000..30922cf Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Autofac.Extras.DynamicProxy.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Autofac.dll b/yuhong_plc/YuHongPpublishs/Autofac.dll new file mode 100644 index 0000000..fa2fdf5 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Autofac.dll differ diff --git a/yuhong_plc/YuHongPpublishs/BouncyCastle.Crypto.dll b/yuhong_plc/YuHongPpublishs/BouncyCastle.Crypto.dll new file mode 100644 index 0000000..395228b Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/BouncyCastle.Crypto.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Castle.Core.dll b/yuhong_plc/YuHongPpublishs/Castle.Core.dll new file mode 100644 index 0000000..527172e Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Castle.Core.dll differ diff --git a/yuhong_plc/YuHongPpublishs/DmProvider.dll b/yuhong_plc/YuHongPpublishs/DmProvider.dll new file mode 100644 index 0000000..7f92f58 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/DmProvider.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Google.Protobuf.dll b/yuhong_plc/YuHongPpublishs/Google.Protobuf.dll new file mode 100644 index 0000000..cf2e030 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Google.Protobuf.dll differ diff --git a/yuhong_plc/YuHongPpublishs/HslCommunication.dll b/yuhong_plc/YuHongPpublishs/HslCommunication.dll new file mode 100644 index 0000000..649961a Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/HslCommunication.dll differ diff --git a/yuhong_plc/YuHongPpublishs/K4os.Compression.LZ4.Streams.dll b/yuhong_plc/YuHongPpublishs/K4os.Compression.LZ4.Streams.dll new file mode 100644 index 0000000..42f55d6 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/K4os.Compression.LZ4.Streams.dll differ diff --git a/yuhong_plc/YuHongPpublishs/K4os.Compression.LZ4.dll b/yuhong_plc/YuHongPpublishs/K4os.Compression.LZ4.dll new file mode 100644 index 0000000..718ebb3 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/K4os.Compression.LZ4.dll differ diff --git a/yuhong_plc/YuHongPpublishs/K4os.Hash.xxHash.dll b/yuhong_plc/YuHongPpublishs/K4os.Hash.xxHash.dll new file mode 100644 index 0000000..4179a29 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/K4os.Hash.xxHash.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Kdbndp.dll b/yuhong_plc/YuHongPpublishs/Kdbndp.dll new file mode 100644 index 0000000..af774bb Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Kdbndp.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Log4net.config b/yuhong_plc/YuHongPpublishs/Log4net.config new file mode 100644 index 0000000..ab6106d --- /dev/null +++ b/yuhong_plc/YuHongPpublishs/Log4net.config @@ -0,0 +1,511 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/yuhong_plc/YuHongPpublishs/MicroKnights.Log4NetAdoNetAppender.dll b/yuhong_plc/YuHongPpublishs/MicroKnights.Log4NetAdoNetAppender.dll new file mode 100644 index 0000000..4fd54e0 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/MicroKnights.Log4NetAdoNetAppender.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.AspNetCore.Connections.Abstractions.dll b/yuhong_plc/YuHongPpublishs/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 0000000..85586ae Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.AspNetCore.JsonPatch.dll b/yuhong_plc/YuHongPpublishs/Microsoft.AspNetCore.JsonPatch.dll new file mode 100644 index 0000000..cab786e Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.AspNetCore.JsonPatch.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll b/yuhong_plc/YuHongPpublishs/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll new file mode 100644 index 0000000..3393ce2 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.AspNetCore.SignalR.Common.dll b/yuhong_plc/YuHongPpublishs/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100644 index 0000000..cc430da Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll b/yuhong_plc/YuHongPpublishs/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll new file mode 100644 index 0000000..b7f8005 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.Data.SqlClient.dll b/yuhong_plc/YuHongPpublishs/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..7131196 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.Data.Sqlite.dll b/yuhong_plc/YuHongPpublishs/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..5929124 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.Data.Sqlite.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.Extensions.Configuration.dll b/yuhong_plc/YuHongPpublishs/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..b84fb11 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.Extensions.Configuration.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.Extensions.DependencyModel.dll b/yuhong_plc/YuHongPpublishs/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..02b9f97 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.Extensions.DependencyModel.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.Extensions.Features.dll b/yuhong_plc/YuHongPpublishs/Microsoft.Extensions.Features.dll new file mode 100644 index 0000000..71bca4a Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.Extensions.Features.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll b/yuhong_plc/YuHongPpublishs/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll new file mode 100644 index 0000000..66eb022 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.Identity.Client.dll b/yuhong_plc/YuHongPpublishs/Microsoft.Identity.Client.dll new file mode 100644 index 0000000..c01fcbf Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.Identity.Client.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.IdentityModel.JsonWebTokens.dll b/yuhong_plc/YuHongPpublishs/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..70b84f2 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.IdentityModel.Logging.dll b/yuhong_plc/YuHongPpublishs/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..7ecc3be Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.IdentityModel.Logging.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/yuhong_plc/YuHongPpublishs/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..d925b5b Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.IdentityModel.Protocols.dll b/yuhong_plc/YuHongPpublishs/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..17423cc Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.IdentityModel.Protocols.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.IdentityModel.Tokens.dll b/yuhong_plc/YuHongPpublishs/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..dd66624 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.IdentityModel.Tokens.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.OpenApi.dll b/yuhong_plc/YuHongPpublishs/Microsoft.OpenApi.dll new file mode 100644 index 0000000..14f3ded Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.OpenApi.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Microsoft.Win32.SystemEvents.dll b/yuhong_plc/YuHongPpublishs/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..e27fe8d Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Microsoft.Win32.SystemEvents.dll differ diff --git a/yuhong_plc/YuHongPpublishs/MiniProfiler.AspNetCore.Mvc.dll b/yuhong_plc/YuHongPpublishs/MiniProfiler.AspNetCore.Mvc.dll new file mode 100644 index 0000000..61610c8 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/MiniProfiler.AspNetCore.Mvc.dll differ diff --git a/yuhong_plc/YuHongPpublishs/MiniProfiler.AspNetCore.dll b/yuhong_plc/YuHongPpublishs/MiniProfiler.AspNetCore.dll new file mode 100644 index 0000000..bd60830 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/MiniProfiler.AspNetCore.dll differ diff --git a/yuhong_plc/YuHongPpublishs/MiniProfiler.Shared.dll b/yuhong_plc/YuHongPpublishs/MiniProfiler.Shared.dll new file mode 100644 index 0000000..5f3f7e0 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/MiniProfiler.Shared.dll differ diff --git a/yuhong_plc/YuHongPpublishs/MySql.Data.dll b/yuhong_plc/YuHongPpublishs/MySql.Data.dll new file mode 100644 index 0000000..c4eb61b Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/MySql.Data.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Newtonsoft.Json.Bson.dll b/yuhong_plc/YuHongPpublishs/Newtonsoft.Json.Bson.dll new file mode 100644 index 0000000..e9b1dd2 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Newtonsoft.Json.Bson.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Newtonsoft.Json.dll b/yuhong_plc/YuHongPpublishs/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Newtonsoft.Json.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Npgsql.dll b/yuhong_plc/YuHongPpublishs/Npgsql.dll new file mode 100644 index 0000000..7b2d4a0 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Npgsql.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Oracle.ManagedDataAccess.dll b/yuhong_plc/YuHongPpublishs/Oracle.ManagedDataAccess.dll new file mode 100644 index 0000000..50822b9 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Oracle.ManagedDataAccess.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Quartz.dll b/yuhong_plc/YuHongPpublishs/Quartz.dll new file mode 100644 index 0000000..9b4b363 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Quartz.dll differ diff --git a/yuhong_plc/YuHongPpublishs/SQLitePCLRaw.batteries_v2.dll b/yuhong_plc/YuHongPpublishs/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..c51a77d Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/SQLitePCLRaw.batteries_v2.dll differ diff --git a/yuhong_plc/YuHongPpublishs/SQLitePCLRaw.core.dll b/yuhong_plc/YuHongPpublishs/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..d995f27 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/SQLitePCLRaw.core.dll differ diff --git a/yuhong_plc/YuHongPpublishs/SQLitePCLRaw.nativelibrary.dll b/yuhong_plc/YuHongPpublishs/SQLitePCLRaw.nativelibrary.dll new file mode 100644 index 0000000..7bb1b03 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/SQLitePCLRaw.nativelibrary.dll differ diff --git a/yuhong_plc/YuHongPpublishs/SQLitePCLRaw.provider.dynamic_cdecl.dll b/yuhong_plc/YuHongPpublishs/SQLitePCLRaw.provider.dynamic_cdecl.dll new file mode 100644 index 0000000..2be5647 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/SQLitePCLRaw.provider.dynamic_cdecl.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Scrutor.dll b/yuhong_plc/YuHongPpublishs/Scrutor.dll new file mode 100644 index 0000000..06eb31e Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Scrutor.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Serilog.Sinks.File.dll b/yuhong_plc/YuHongPpublishs/Serilog.Sinks.File.dll new file mode 100644 index 0000000..29dc2fd Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Serilog.Sinks.File.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Serilog.dll b/yuhong_plc/YuHongPpublishs/Serilog.dll new file mode 100644 index 0000000..e040a8a Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Serilog.dll differ diff --git a/yuhong_plc/YuHongPpublishs/SqlSugar.dll b/yuhong_plc/YuHongPpublishs/SqlSugar.dll new file mode 100644 index 0000000..2313b7b Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/SqlSugar.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.Filters.Abstractions.dll b/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.Filters.Abstractions.dll new file mode 100644 index 0000000..2c44bb5 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.Filters.Abstractions.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.Filters.dll b/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.Filters.dll new file mode 100644 index 0000000..7be1d8a Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.Filters.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.Newtonsoft.dll b/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.Newtonsoft.dll new file mode 100644 index 0000000..61534e9 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.Newtonsoft.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.Swagger.dll b/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..88995c9 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.SwaggerGen.dll b/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..6afe2f0 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.SwaggerUI.dll b/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..a26f458 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/yuhong_plc/YuHongPpublishs/System.Configuration.ConfigurationManager.dll b/yuhong_plc/YuHongPpublishs/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..6f34b8d Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/System.Configuration.ConfigurationManager.dll differ diff --git a/yuhong_plc/YuHongPpublishs/System.Diagnostics.PerformanceCounter.dll b/yuhong_plc/YuHongPpublishs/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..3300cff Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/System.Diagnostics.PerformanceCounter.dll differ diff --git a/yuhong_plc/YuHongPpublishs/System.DirectoryServices.Protocols.dll b/yuhong_plc/YuHongPpublishs/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..ffc64e4 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/System.DirectoryServices.Protocols.dll differ diff --git a/yuhong_plc/YuHongPpublishs/System.DirectoryServices.dll b/yuhong_plc/YuHongPpublishs/System.DirectoryServices.dll new file mode 100644 index 0000000..b361d18 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/System.DirectoryServices.dll differ diff --git a/yuhong_plc/YuHongPpublishs/System.Drawing.Common.dll b/yuhong_plc/YuHongPpublishs/System.Drawing.Common.dll new file mode 100644 index 0000000..69e5f5c Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/System.Drawing.Common.dll differ diff --git a/yuhong_plc/YuHongPpublishs/System.IO.Pipelines.dll b/yuhong_plc/YuHongPpublishs/System.IO.Pipelines.dll new file mode 100644 index 0000000..8ee4dfd Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/System.IO.Pipelines.dll differ diff --git a/yuhong_plc/YuHongPpublishs/System.IdentityModel.Tokens.Jwt.dll b/yuhong_plc/YuHongPpublishs/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..efd3c61 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/yuhong_plc/YuHongPpublishs/System.Net.WebSockets.WebSocketProtocol.dll b/yuhong_plc/YuHongPpublishs/System.Net.WebSockets.WebSocketProtocol.dll new file mode 100644 index 0000000..b6a723a Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/System.Net.WebSockets.WebSocketProtocol.dll differ diff --git a/yuhong_plc/YuHongPpublishs/System.Runtime.Caching.dll b/yuhong_plc/YuHongPpublishs/System.Runtime.Caching.dll new file mode 100644 index 0000000..6fedfab Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/System.Runtime.Caching.dll differ diff --git a/yuhong_plc/YuHongPpublishs/System.Security.Cryptography.ProtectedData.dll b/yuhong_plc/YuHongPpublishs/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..a60b95b Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/System.Security.Cryptography.ProtectedData.dll differ diff --git a/yuhong_plc/YuHongPpublishs/System.Security.Permissions.dll b/yuhong_plc/YuHongPpublishs/System.Security.Permissions.dll new file mode 100644 index 0000000..76faf41 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/System.Security.Permissions.dll differ diff --git a/yuhong_plc/YuHongPpublishs/System.Windows.Extensions.dll b/yuhong_plc/YuHongPpublishs/System.Windows.Extensions.dll new file mode 100644 index 0000000..7f075b2 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/System.Windows.Extensions.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Ubiety.Dns.Core.dll b/yuhong_plc/YuHongPpublishs/Ubiety.Dns.Core.dll new file mode 100644 index 0000000..b10ecf2 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Ubiety.Dns.Core.dll differ diff --git a/yuhong_plc/YuHongPpublishs/WebApiClient.Extensions.DependencyInjection.dll b/yuhong_plc/YuHongPpublishs/WebApiClient.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..f6580f4 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/WebApiClient.Extensions.DependencyInjection.dll differ diff --git a/yuhong_plc/YuHongPpublishs/WebApiClient.JIT.dll b/yuhong_plc/YuHongPpublishs/WebApiClient.JIT.dll new file mode 100644 index 0000000..c68d9b5 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/WebApiClient.JIT.dll differ diff --git a/yuhong_plc/YuHongPpublishs/Yitter.IdGenerator.dll b/yuhong_plc/YuHongPpublishs/Yitter.IdGenerator.dll new file mode 100644 index 0000000..7eb8700 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/Yitter.IdGenerator.dll differ diff --git a/yuhong_plc/YuHongPpublishs/ZstdNet.dll b/yuhong_plc/YuHongPpublishs/ZstdNet.dll new file mode 100644 index 0000000..bc60788 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/ZstdNet.dll differ diff --git a/yuhong_plc/YuHongPpublishs/appsettings.Development.json b/yuhong_plc/YuHongPpublishs/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/yuhong_plc/YuHongPpublishs/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/yuhong_plc/YuHongPpublishs/appsettings.json b/yuhong_plc/YuHongPpublishs/appsettings.json new file mode 100644 index 0000000..414ab6a --- /dev/null +++ b/yuhong_plc/YuHongPpublishs/appsettings.json @@ -0,0 +1,70 @@ +{ + //���ݿ����� /* MySql=0;SqlServer=1;Sqlite=2;Oracle=3;PostgreSQL=4;Dm=5;;;;;;;;*/ + "DBType": 0, + //���ݿ������ַ��� + "ConnectionStrings": { + "Sqlite": "Data Source=./Magic.db", + "SqlServer": "Server=BLACK; Database=zzzTest01; User=sa; Password=123456zls!;MultipleActiveResultSets=True;", + //"MySql": "Data Source=150.158.169.212;Database=cjyx;User ID=base;Password=123456;pooling=true;port=3306;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;", + "MySql": "Data Source=222.71.165.187;Database=cjyx;User ID=root;Password=qawsed,.123;pooling=true;port=3309;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;" + //"MySql": "Data Source=101.34.35.69;Database=cjyx_wm;User ID=base;Password=123456;pooling=true;port=3306;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;" + }, + //�Զ��������ݿ� + "SeedDBEnabled": false, + //�Զ���ʼ������ + "SeedDBDataEnabled": false, + //Logд��DB + "LogToDb": false, + + //Logging���� + "Logging": { + "LogLevel": { + "Default": "Information", //����Default����log4net����д�벻����־ + "zzz.AuthHelper.ApiResponseHandler": "Error" + }, + "Debug": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning" + } + }, + "Console": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning", + "Microsoft.Hosting.Lifetime": "Debug" + } + }, + "Log4Net": { + "Name": "zzz" + } + }, + "AllowedHosts": "*", + //�м������ + "Middleware": { + //��ʱ���� + "QuartzNetJob": true, + //����д��Log + "RequestResponseLog": true, + //���ܷ��� + "MiniProfiler": true, + "SignalR": true + }, + //Aop���� + "Aop": { + "LogAOP": true, + "TranAOP": true, + "SqlAOP": { + "OutToLogFile": true, + "OutToConsole": true + } + }, + //�ܼ���Api���� + "Gjp": { + "BasicUrl": "http://api.cmgrasp.com/CMGraspApi/GateWay", + "AppKey": "80DDA4A9D5804DA4B0887104529523C2", + "SercretKey": "EE379CED41C748B49024FC8CD81B5909", + "userid": "10488149", + "dbname": "M7215API����" + } +} diff --git a/yuhong_plc/YuHongPpublishs/log4net.dll b/yuhong_plc/YuHongPpublishs/log4net.dll new file mode 100644 index 0000000..3d6a0a6 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/log4net.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/alpine-x64/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublishs/runtimes/alpine-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/alpine-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/linux-arm/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublishs/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..6b0158a Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/linux-arm64/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublishs/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..7c590b7 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/linux-armel/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublishs/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..bc22810 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/linux-mips64/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublishs/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..c82d186 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/linux-musl-x64/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublishs/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/linux-x64/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublishs/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..484bfc2 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/linux-x86/native/libe_sqlite3.so b/yuhong_plc/YuHongPpublishs/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..d4c96f7 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/osx-x64/native/libe_sqlite3.dylib b/yuhong_plc/YuHongPpublishs/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3b9e7a4 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll b/yuhong_plc/YuHongPpublishs/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..3a19d3d Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/yuhong_plc/YuHongPpublishs/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..3fc08e4 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/YuHongPpublishs/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..3068646 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win-arm/native/e_sqlite3.dll b/yuhong_plc/YuHongPpublishs/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..d019891 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/YuHongPpublishs/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..965f535 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win-arm64/native/e_sqlite3.dll b/yuhong_plc/YuHongPpublishs/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..d8b3149 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/YuHongPpublishs/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..227b87b Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win-x64/native/e_sqlite3.dll b/yuhong_plc/YuHongPpublishs/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..8d3ca0c Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/YuHongPpublishs/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..0add8c2 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win-x86/native/e_sqlite3.dll b/yuhong_plc/YuHongPpublishs/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..3ad1bc9 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..9d5fe02 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..c9f3075 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll new file mode 100644 index 0000000..04879ec Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..c49c358 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..9a04b68 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..3fb4939 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..c4b9b5d Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..175d085 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll differ diff --git a/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..d8f2f45 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/yuhong_plc/YuHongPpublishs/web.config b/yuhong_plc/YuHongPpublishs/web.config new file mode 100644 index 0000000..f9ad3ee --- /dev/null +++ b/yuhong_plc/YuHongPpublishs/web.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/yuhong_plc/YuHongPpublishs/wwwroot/index.html b/yuhong_plc/YuHongPpublishs/wwwroot/index.html new file mode 100644 index 0000000..73e74b5 --- /dev/null +++ b/yuhong_plc/YuHongPpublishs/wwwroot/index.html @@ -0,0 +1,10 @@ + + + + + Swagger入坑 + + + + + \ No newline at end of file diff --git a/yuhong_plc/YuHongPpublishs/zzz.Api.deps.json b/yuhong_plc/YuHongPpublishs/zzz.Api.deps.json new file mode 100644 index 0000000..ebdd1fd --- /dev/null +++ b/yuhong_plc/YuHongPpublishs/zzz.Api.deps.json @@ -0,0 +1,3725 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Api/1.0.0": { + "dependencies": { + "Autofac.Extensions.DependencyInjection": "7.2.0", + "MicroKnights.Log4NetAdoNetAppender": "2.2.0", + "zzz.Extensions": "1.0.0" + }, + "runtime": { + "zzz.Api.dll": {} + } + }, + "Autofac/6.3.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net5.0/Autofac.dll": { + "assemblyVersion": "6.3.0.0", + "fileVersion": "6.3.0.0" + } + } + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "dependencies": { + "Autofac": "6.3.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + }, + "runtime": { + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.2.0.0" + } + } + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "dependencies": { + "Autofac": "6.3.0", + "Castle.Core": "4.4.0" + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.1.0" + } + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Castle.Core/4.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.4.0.0" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "HslCommunication/7.0.1": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": { + "assemblyVersion": "7.0.1.0", + "fileVersion": "7.0.1.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "MicroKnights.Log4NetAdoNetAppender/2.2.0": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "lib/netstandard2.1/MicroKnights.Log4NetAdoNetAppender.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "dependencies": { + "Microsoft.Extensions.Features": "6.0.5", + "System.IO.Pipelines": "6.0.3" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0" + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.0", + "Newtonsoft.Json": "13.0.1", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Newtonsoft.Json": "13.0.1", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "6.0.0-rc.1.21452.15", + "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + } + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections": "1.1.0", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0" + } + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.5.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Net.WebSockets.WebSocketProtocol": "4.5.1" + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.Extensions.Features/6.0.5": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Features.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {}, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll": { + "assemblyVersion": "6.1.0.0", + "fileVersion": "6.1.0.0" + } + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": {}, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MiniProfiler.AspNetCore/4.2.22": { + "dependencies": { + "MiniProfiler.Shared": "4.2.22", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "dependencies": { + "MiniProfiler.AspNetCore": "4.2.22" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.Shared/4.2.22": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.ComponentModel.Primitives": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Quartz/3.4.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.0.0" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "Scrutor/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "13.0.1", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + } + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.OpenApi": "1.2.3", + "Scrutor": "3.3.0", + "Swashbuckle.AspNetCore.Filters.Abstractions": "7.0.2", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.0-rc.1.21452.15", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/1.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Pipelines/6.0.3": { + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21309" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "runtime": { + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26606.5" + } + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.4.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "dependencies": { + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "zzz.Extensions/1.0.0": { + "dependencies": { + "Autofac": "6.3.0", + "Autofac.Extras.DynamicProxy": "6.0.1", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.SignalR": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson": "6.0.5", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.Log4Net.AspNetCore": "6.1.0", + "MiniProfiler.AspNetCore.Mvc": "4.2.22", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Filters": "7.0.2", + "Swashbuckle.AspNetCore.Newtonsoft": "6.3.1", + "log4net": "2.0.14", + "zzz.Services": "1.0.0", + "zzz.Tasks": "1.0.0" + }, + "runtime": { + "zzz.Extensions.dll": {} + } + }, + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "runtime": { + "zzz.Repository.dll": {} + } + }, + "zzz.Services/1.0.0": { + "dependencies": { + "HslCommunication": "7.0.1", + "zzz.Repository": "1.0.0" + }, + "runtime": { + "zzz.Services.dll": {} + } + }, + "zzz.Tasks/1.0.0": { + "dependencies": { + "Quartz": "3.4.0", + "zzz.Services": "1.0.0" + }, + "runtime": { + "zzz.Tasks.dll": {} + } + } + } + }, + "libraries": { + "zzz.Api/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Autofac/6.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gO4bli0N8tDnBHzbYktcnbXlmN6T+IT5W+FUGgCUaM6pwwHXIxOPoUGvfGum7sZpJJgfQNgjFFv80ZPuARgRdA==", + "path": "autofac/6.3.0", + "hashPath": "autofac.6.3.0.nupkg.sha512" + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S2Jor8pTV+8QSs96ENq/FhGdnrWsntGs93z0OXYlIivUWGPNXQHNCjFPfSBeBlHClvJFEXMvlkY32bAKy2YkPg==", + "path": "autofac.extensions.dependencyinjection/7.2.0", + "hashPath": "autofac.extensions.dependencyinjection.7.2.0.nupkg.sha512" + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ulCOXUjbJ5dljBPZf3gRxQNPRGqg/h1cNTZ4SpXK3qiamTfRsW3gXs2w/IJ+CIDmHrFGYXLqzNd5etvzwB8kA==", + "path": "autofac.extras.dynamicproxy/6.0.1", + "hashPath": "autofac.extras.dynamicproxy.6.0.1.nupkg.sha512" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Castle.Core/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "path": "castle.core/4.4.0", + "hashPath": "castle.core.4.4.0.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "HslCommunication/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "path": "hslcommunication/7.0.1", + "hashPath": "hslcommunication.7.0.1.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "MicroKnights.Log4NetAdoNetAppender/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FryL/5pLWynP8znM5LTXd4M+DmD+Ftls5D8IlyMwCbH7MFWviLyNvGneJZFjmdXschal5lTUOB3Cs1FkEPs7tQ==", + "path": "microknights.log4netadonetappender/2.2.0", + "hashPath": "microknights.log4netadonetappender.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OBbGvih5/CLHTbJVDiJ203TmKXCx8z539O2YGnfHmExbNtMwyQ9rgpqoxyYEVvQrVsqxRhXfh57DOCQYhxcOBQ==", + "path": "microsoft.aspnetcore.connections.abstractions/6.0.5", + "hashPath": "microsoft.aspnetcore.connections.abstractions.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BAibpoItxI5puk7YJbIGj95arZueM8B8M5xT1fXBn3hb3L2G3ucrZcYXv1gXdaroLbntUs8qeV8iuBrpjQsrKw==", + "path": "microsoft.aspnetcore.http/2.2.2", + "hashPath": "microsoft.aspnetcore.http.2.2.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==", + "path": "microsoft.aspnetcore.http.connections/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mYk5QUUjyXQmlyDHWDjkLYDArt97plwe6KsDsNVhDEQ+HgZMKGjISyM6YSA7BERQNR25kXBTbIYfSy1vePGQgg==", + "path": "microsoft.aspnetcore.http.connections.common/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+27ce/d0w7jyEmCCMrzwFRg6PHZxQ37Fmnf+es1qQudbip2rryxPdM8TRoXT6wNtdlzqHnIyXTtLjSs0uIDhxA==", + "path": "microsoft.aspnetcore.jsonpatch/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.jsonpatch.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/dspuIknGgOdBygH3bmjsIH5neuuJ7DHILXrKVPAoCykPARAIUBckZlIW6RrYqmbGTZYT/YFCzr/xDR5f0YiAA==", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "path": "microsoft.aspnetcore.routing/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==", + "path": "microsoft.aspnetcore.signalr/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N+MF6rs64kDDJ4zroD/NqRgXVSEkj/ppTX36AB2S43qm1y64YqWMCFCzLshkmi7SwWwQQPIByTNZDJfz4x7GjQ==", + "path": "microsoft.aspnetcore.signalr.common/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.common.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/7VUbkomGE7ph6R1JTtMji5QPGqesyCSeELFmfylaqFM+SdWf9EmbU3SCQPcIWhfv+RgbUWmTNfWWPzmVDTggw==", + "path": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==", + "path": "microsoft.aspnetcore.websockets/2.2.0", + "hashPath": "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" + }, + "Microsoft.Extensions.Features/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7KLF1jRFQjSttfoilwHU86cU9ZgxN4ABfQR8tQ9qEC5AzTGYIX+K5RDwGFVK320eTiBwWuutV24ecmxBxo7Eg==", + "path": "microsoft.extensions.features/6.0.5", + "hashPath": "microsoft.extensions.features.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qHb3GudscgrgEVByh86kAq3FMmjOdPIVoqvff3eokEP+QkZHzr42l4PlgxBsqhhlIX02SazC7ZdbfiFGDPRv9A==", + "path": "microsoft.extensions.logging.log4net.aspnetcore/6.1.0", + "hashPath": "microsoft.extensions.logging.log4net.aspnetcore.6.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "path": "microsoft.extensions.objectpool/2.2.0", + "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "path": "microsoft.net.http.headers/2.2.0", + "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2FpFllO0wFJmfIXY9NXr33jWgr88b7E4gAuPHSNYzNr5o2XIouynxAoLA+SShuDI2ySSsvnBHURiXRX7tz59YA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MiniProfiler.AspNetCore/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bBirB5d4Q0Bgx05Zg4yzXSmOHZQV4ZJhmxU3DGya4FZxNBwjaVHchqEKY0MJW5XLZo8axMAQm4yywgCvUlTymA==", + "path": "miniprofiler.aspnetcore/4.2.22", + "hashPath": "miniprofiler.aspnetcore.4.2.22.nupkg.sha512" + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nzCEaZnh77U9jw+c/qu4CtwYUpHEf+FH1ZMbYKMzIXr8CNNPlypSR6AJEAwjo3bq9TIJIpBMZIaK3inRLUCg4g==", + "path": "miniprofiler.aspnetcore.mvc/4.2.22", + "hashPath": "miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512" + }, + "MiniProfiler.Shared/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==", + "path": "miniprofiler.shared/4.2.22", + "hashPath": "miniprofiler.shared.4.2.22.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/6XtTu0ZHzge7tzZZN8UXpwG1K0Vgxi7C7R0QiTgxMtN4gkzNl4xNVUI4X3tymMwKWUdwqXvzkrJqt3MdMFXig==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Quartz/3.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N8350OAlQhd8zKg0ARFikGjh3bfAW/CF/KVxu2fTIlAALB/oC1eg54n/QAPYR5ryHuYyDr5G8/Qa4k+D/7OFRQ==", + "path": "quartz/3.4.0", + "hashPath": "quartz.3.4.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kuvqViO3OnqjWcNSQfanREtHgqJx6UK5UHPeIl7M666izpBErP4TDZctWnYvuz7l/hpWPkS3DsUAUPAyVS/zBA==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QnpBRH8jHD/TtGA5fjrdK/BRf+Oslt/M/X+r487ByPS2q+EZUNwEiaoPUuZcqFcLwqAY2Fw7SciCHTPiK2GTqg==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i/u0Svwgj6JM9SpaoJAqTiMU3B0UZEUC35JadEBgkihBi+RzyRe2VlGwhZ6B63r78CmzZ/VAYNXvLAnoIaRG/A==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOKLiiK96F+8pPB+ALL20VFsTDBolLfysxlBZDGlFXDEBEZfdfm4OYuInLtxYHCUSxpJpPivIYm9jasMzfgzEQ==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSKGjRiQWUHf2zpiRD3+q8lzjL89HhiR74cevVqShwVHtDEHjAhDU75w6mPdeFg9QSyqI32Ud3Qskr5WHNCw+g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "Scrutor/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "path": "scrutor/3.3.0", + "hashPath": "scrutor.3.3.0.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "path": "swashbuckle.aspnetcore/6.2.3", + "hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pjj/BdKFcXX1tdUrVjfW6SiRSiHC4dOnqszhU2PuS0RBXZUnGM18tXUrNU2pgPkSjWUnCiyvbjd3GBkEuNTBYA==", + "path": "swashbuckle.aspnetcore.filters/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RqZ+P+m2cw1TVsU9LUHNdLf4Ww7YSqDRt7UHRzauZJnRztDlNR4doOGzXLmWZzq+3CfZyS7NEsQyJmf4Y+7GMQ==", + "path": "swashbuckle.aspnetcore.filters.abstractions/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oy6BwAX+tcKO13n9bw3nPtITBvD03bAHDN2+lTaOY/cUNcQE/liu3xWjbkdhLeNTUiC+7h+lJvR7KUdI7CXz0w==", + "path": "swashbuckle.aspnetcore.newtonsoft/6.3.1", + "hashPath": "swashbuckle.aspnetcore.newtonsoft.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-idAFh4xhyJHYHfdLVOOn+BmscBul1OQbWsnL6YPJE8tO/0y6S79hDCvs6OY5VI093/9+1pYY3j31Zet9yaDZjA==", + "path": "swashbuckle.aspnetcore.swagger/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+uoBV4h/6NhCPLoTofSmuOnZ+usu4PW1jP6l4OHwPyu2frbYXGNpJsHs5uUXXn929OiVQkT8wo3Lj/o+P99Ejg==", + "path": "swashbuckle.aspnetcore.swaggergen/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wvyiJIm0HlaoN+AlJXhTpDrhYkN28OC/nEun5QpbPkZvbpgWSYvZ8Hr9/G4Bd1I0WSmFW18KQuE5DOA05Uubrw==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wAdmaCgCSe298gCNvAf6vlVPfQUR7h43Qr2tTtJFYeto/OvttRLyG4ch6/R2FpuWRMfxHBsAeHYrzjvEk1UM+Q==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Un05L1TLTGqBBRKAFngtzovaNeFL1EGzuUwW0AiTotM/GUWVE0c0xH4owZgdJ6nf6DuK866gbLqD3c/Ms7KSOg==", + "path": "system.collections.immutable/1.3.0", + "hashPath": "system.collections.immutable.1.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sRo7MpbD5VnFdLZA/uVuR5YJdDV4i+DyJTpQ1rk92wCzLE4cXJ+q7tzGr2HwkL/ujeFNcPo/fOs7LKdDyeyupA==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wJLrK/MQdlF3TmfNouxSsgtCRhsgx4tz2KdY/mpvirOcgMc2W4DDK7vR6RcSc6XRV4P6rzrLFXd9wUzp/iWp0g==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aX7O7aytoclkwEvOv4vCDBP2hDVsrAbQVAOJXUka7qCXbbZcqtv8CKrX646dSERl9aO/tY0/g2ezsa4jBAMQOg==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6jD8gKBZvTfp1PEuqAkpMZvG9hF+gzGIvhvRh0K2qDApsiEpRZ9ZUlWE2nACpPdWP8w3DaL0TQAHuA7gXDSupA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "path": "system.diagnostics.tracesource/4.3.0", + "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ChcZW/eQtXpPDW7qMqlqK7xGW4A8hhz7/iY4J5hsvhzPsza7Cml+hdBhm5vAh6KhHcXzMvjfLcbChmZsYPlJsA==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zf/fX6NjK+eL01E0a5+pZb2NaitHwaVPlh7Wc62+wpnAtn1hA0ye8WAMV4r8DJv+AghKZYBwQwGqZJ9ikWLLkw==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ttt2PGgBfejL4xBEdMMd2E+Mqn/wC47jhMBtqRNJeH6uYa2j3fTDi1Jj1hAY5sfgbJcrvfSO46G1pufONMmfmA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kzMaA/htO8n7p5FQvyVXA9Q66+LntW+m0vp+Vnl5gSWsc6btlIYIC3aXs3DvtvdV0ue1tX/Mslkiei1vLgh3WA==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yn4CfuDOHBxI0b6JNSQJGqCIsuEqcjxQIAxktq316Jhz9Q0aRKqqGN7QNwd5fyNqz7mNMXfKDt1bJrtggkt8/g==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kRj3owqKUOxPcvQpK0VItuLGg/aXPjUxzT5ujrfMW0RrAQ7FJYB+mFiCawtGQVQatVCKr78TX39cJueK9ic8wA==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1d5+nGi+bWLgg0/wPO1IKJGSIe8Gy+WsMoT11T472mWHryC/qCISRl/v9w4rmk+72uX/1DFgBjBljUXyAK4jNg==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BnZgb92GKxi/DjV7WbZo2Sm7G8pImuLocQAHIkuFrRExeBMyjX0sIRY039HbnBObE7t5ihxRP3wYPSJ0Zt/apQ==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "path": "system.io.pipelines/6.0.3", + "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dGfhVR2KQhRwrl0D8yb8gJLpr2iX4Hnud1oNRwUbafrqskstG2kC3NMNp/t7QRzdb1mlNqc99F2OjXYKyHzdnA==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MHtkLrHBt/UkTMLaBYgCgrm2WBogOkEjDRlNJSxy18uQWEMN4ymSywGNwNHS8ATNyaGJzddvmdWI/UjLaLyskg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6sVcH1+qeVKf7xD/7k0ouAA7830LIw7Ltwo4bEl9ExyRVN/YNUhka9CBcd2Pp4Ugn14/cIY/i39bSTMUOmftFw==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S70uFEyXRAuRBxWsQWyVciioHMGOYxpob7a/TNchHKF9ceQPktdtcdl3/vktvUJU8B5ES7lG1wkglSWXYKHjcA==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==", + "path": "system.net.websockets.websocketprotocol/4.5.1", + "hashPath": "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TqRGJ6R6S9VpsXm2GpRy87TFXMxVqtYMrZtQFZHNJadQ1njAlpp0F5PfsWH04UNZWeY9X1jK+Kr8faJREA1kfg==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-13ihEbKKWpJYwZpo1kcDv2kW8eCK9twslQXpuqW/ulpHFhB2vuxbCuQgllNLjiSuL3uEKSPz34wC0xRb5hY9OA==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cYyPyIPBNlROATH5CjGQpvFhPdCrkDyVpChahZmpZlpXE4wQS+f6fUl+A/16U8/IShAiS3ofjX6bHuwRyHHWbQ==", + "path": "system.reflection.metadata/1.4.1", + "hashPath": "system.reflection.metadata.1.4.1.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJGsxoZ+9PXn+Qdjc5Nk6yJVqLk8lRR3k3uEGja59sC1EbkzMbVMqPFNOQmYxaO5Fbid8Bm29o+rB/PdDCDXNw==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yhyMfLA28dYAFahmTy+lM6rDrrca84R76fk8J0GH9gdtcZe6NuA7bWhLOCcWOEi74jZOIjtjtRPzkdSv6KlATQ==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-djZnX43T2YuLt526S/mq2pBiHQS8WfAUAg/nOt+oz6MkTo6HKAANCytQEFXmv6jyrumb8ohYe3ht2sEUMi9LMQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jw3ielASDELVDT+VPsL6PGRHp50mytxUnVp7UlKZWS3l5cxWAhZIWfTiunuqyy90WKcEIehjHkfpRqyzO5eFmw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPdBt8ZxEzxDYhPnWz+eegZMhyYBzea/Oi7AuuqwtyCATswlsMdA3tiw/U/rMP+MvDa4DIhI1inEwEDYArfuJg==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DG7gpkRnHPaofkkKx5jWKqI9gjcHhDOt3BeCMKRTImnngZvP1jlgYMXYXxY+S8XWyOoyU8KF5Tv0ZrG9FYREvQ==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xFN3KCCvtAdfdy+AngirK0Tku73Ne9i5NmV995PGnHOn6OvNx5j/f2Aa6FuEoZT1YshMjOlWfEKI8WAjnaxtRg==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iwhUBeB6oQ10iH2CRQeLNTHyQX9lxiMNZuC9nMY0IhiQlRaDtcwTVaGWSTShduj0V8o07kOgI53QayLnHt6i0A==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6hQ2W40ImHD8OSBL8zWYSwdae6iryMpeEThocf8u1m/0LFZUmnRtKyXZtXNNqwkbha/mDcjS+GbbCk+whXz0sA==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aUDiT8Qv4rbc1YwvWhBM76PzeoHLQLook/5PiXhFsBur7cniIsd2K0MhGDZ1M1IN9j7y6HdC7lnk+TS37lJEZA==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3h7hlVK5u8nzCUQFFYj6yw6NKYgnrUySo0oaXN21LyrOQpr052u5rvnSxUGuIKO7M9jRv1FaLZOGVI/+7olf9A==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IKcG64NTLVkZVHawu61/TldF/J/Vb7phwiECTLwB30N7NoUkXs1BquSuCJHyHCLUC0vEmEU0vqnQZY7T21Gc1Q==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EyRjbRA4pD4dG4O4XEzITKvzLRpauU4LhvS1UhiWUlvk5bUcfhFDMw1obsrvfpfD3zvqJ6PXm6Y4r2tUFf1yCQ==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MOrSyJ8eyHXyB4xMFN7AIZ5/B9ODYQxmspxxD2r5Zd8Os6hUAmVRUgl6s6Qml/j4nJGcsOHgonpDYmEAeuADMw==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Extensions/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Tasks/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/YuHongPpublishs/zzz.Api.dll b/yuhong_plc/YuHongPpublishs/zzz.Api.dll new file mode 100644 index 0000000..66b0b26 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/zzz.Api.dll differ diff --git a/yuhong_plc/YuHongPpublishs/zzz.Api.exe b/yuhong_plc/YuHongPpublishs/zzz.Api.exe new file mode 100644 index 0000000..0e2703c Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/zzz.Api.exe differ diff --git a/yuhong_plc/YuHongPpublishs/zzz.Api.pdb b/yuhong_plc/YuHongPpublishs/zzz.Api.pdb new file mode 100644 index 0000000..4383d8e Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/zzz.Api.pdb differ diff --git a/yuhong_plc/YuHongPpublishs/zzz.Api.runtimeconfig.json b/yuhong_plc/YuHongPpublishs/zzz.Api.runtimeconfig.json new file mode 100644 index 0000000..dfb1b77 --- /dev/null +++ b/yuhong_plc/YuHongPpublishs/zzz.Api.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "6.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/yuhong_plc/YuHongPpublishs/zzz.Api.xml b/yuhong_plc/YuHongPpublishs/zzz.Api.xml new file mode 100644 index 0000000..69d94ab --- /dev/null +++ b/yuhong_plc/YuHongPpublishs/zzz.Api.xml @@ -0,0 +1,410 @@ + + + + zzz.Api + + + + + 持续运行 + + + + + 持续运行 + + + + + + + + 激活 + + + + + 立即执行任务 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 余宏大屏数据 + + + + + 余宏大屏数据 + + + + + + + + 工单列表数据 + + + + + + 工单详情 + + + + + + 动态月订单信息数据 + + + + + + 设备信息 + + + + + + 定时任务 + + + + + 构造 + + + + + + + + 分页获取 + + + + + + + + 添加计划任务 + + + + + + + 修改计划任务 + + + + + + + 删除一个任务 + + + + + + + 启动计划任务 + + + + + + + 停止一个计划任务 + + + + + + + 暂停一个计划任务 + + + + + + + 恢复一个计划任务 + + + + + + + 重启一个计划任务 + + + + + + + 获取任务命名空间 + + + + + + 立即执行任务 + + + + + + + + + + + + + + + + + + + + + 测试 增加数据 BaseService + + + + + + 测试 增加数据 接口 + + + + + + 测试 修改数据 BaseService + + + + + + 测试 修改部分数据 BaseService + + + + + + 测试 修改数据 接口 + + + + + + 测试 修改部分数据 接口 + + + + + + 测试 软删除数据 BaseService + + + + + + 测试 软删除数据 接口 + + + + + + 测试取单条数据 BaseService + + + + + + + 测试取单条数据 IF + + + + + + + 测试分页数据 Baseservice + + + + + + + 测试分页数据 IF + + + + + + + + + + + + + 读取13线数据 + + + + + + 读取2线数据 + + + + + 读取15线数据 + + + + + + 读取7线数据 + + + + + + 数据库操作 + + + + + 构造 + + + + + + 同步表结果 Entity-->数据库 + + + + + + + 全局异常错误日志 + + + + + 异常拦截构造函数 + + + + + + + + 异常发生 + + + + + + 自定义返回格式 + + + + + + + + + + + + + + + + + + + 返回错误信息 + + + + + 生产环境的消息 + + + + + 开发环境的消息 + + + + diff --git a/yuhong_plc/YuHongPpublishs/zzz.Common.dll b/yuhong_plc/YuHongPpublishs/zzz.Common.dll new file mode 100644 index 0000000..6d6f1c6 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/zzz.Common.dll differ diff --git a/yuhong_plc/YuHongPpublishs/zzz.Common.pdb b/yuhong_plc/YuHongPpublishs/zzz.Common.pdb new file mode 100644 index 0000000..4c5a6d4 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/zzz.Common.pdb differ diff --git a/yuhong_plc/YuHongPpublishs/zzz.Extensions.dll b/yuhong_plc/YuHongPpublishs/zzz.Extensions.dll new file mode 100644 index 0000000..4f36965 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/zzz.Extensions.dll differ diff --git a/yuhong_plc/YuHongPpublishs/zzz.Extensions.pdb b/yuhong_plc/YuHongPpublishs/zzz.Extensions.pdb new file mode 100644 index 0000000..8717985 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/zzz.Extensions.pdb differ diff --git a/yuhong_plc/YuHongPpublishs/zzz.Model.dll b/yuhong_plc/YuHongPpublishs/zzz.Model.dll new file mode 100644 index 0000000..98ddff2 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/zzz.Model.dll differ diff --git a/yuhong_plc/YuHongPpublishs/zzz.Model.pdb b/yuhong_plc/YuHongPpublishs/zzz.Model.pdb new file mode 100644 index 0000000..ee6d136 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/zzz.Model.pdb differ diff --git a/yuhong_plc/YuHongPpublishs/zzz.Model.xml b/yuhong_plc/YuHongPpublishs/zzz.Model.xml new file mode 100644 index 0000000..90ea772 --- /dev/null +++ b/yuhong_plc/YuHongPpublishs/zzz.Model.xml @@ -0,0 +1,1543 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 2线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/YuHongPpublishs/zzz.Repository.dll b/yuhong_plc/YuHongPpublishs/zzz.Repository.dll new file mode 100644 index 0000000..991414c Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/zzz.Repository.dll differ diff --git a/yuhong_plc/YuHongPpublishs/zzz.Repository.pdb b/yuhong_plc/YuHongPpublishs/zzz.Repository.pdb new file mode 100644 index 0000000..b9bcd32 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/zzz.Repository.pdb differ diff --git a/yuhong_plc/YuHongPpublishs/zzz.Services.dll b/yuhong_plc/YuHongPpublishs/zzz.Services.dll new file mode 100644 index 0000000..691a5d0 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/zzz.Services.dll differ diff --git a/yuhong_plc/YuHongPpublishs/zzz.Services.pdb b/yuhong_plc/YuHongPpublishs/zzz.Services.pdb new file mode 100644 index 0000000..79fd96c Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/zzz.Services.pdb differ diff --git a/yuhong_plc/YuHongPpublishs/zzz.Services.xml b/yuhong_plc/YuHongPpublishs/zzz.Services.xml new file mode 100644 index 0000000..623dba3 --- /dev/null +++ b/yuhong_plc/YuHongPpublishs/zzz.Services.xml @@ -0,0 +1,941 @@ + + + + zzz.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 种子数据 服务 + + + + + 构造 + + + + + + 异步添加种子数据 + + + + + + + + 同步表结构 + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 种子数据 接口 + + + + + 同步表结构 + + + + + + + 设备名称 + + + + + 设备利用率DTO + + + + + x轴 + + + + + series + + + + + 动态月订单信息数据 + + + + + 生产计划达成率 + + + + + 订单交付率 + + + + + 生产数量 + + + + + 设备利用率 + + + + + 产品合格率 + + + + + 大屏生产工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 完成进度 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 各产品生产数量 + + + + + x轴 + + + + + series + + + + + PLC硬件信息 + + + + + eqmt_id + + + + + ip + + + + + 端口 + + + + + 读取PLC数据接口 + + + + + 读取13线数据 + + + + + 读取16线数据 + + + + + 读取17线数据 + + + + + 读取18线数据 + + + + + 读取19线数据 + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 读取PLC数据服务 + + + + + 构造 + + + + + 打开连接 + + + + + + + + 关闭连接 + + + + + 读取13线数据 + + + + + 读取16线数据 + 一个端口 + + + + + 读取19线数据 + 一个端口 + + + + + 读取17线数据 + 两个端口 + + + + + 读取18线数据 + 两个端口 + + + + + 创建间隔采集数据 + + + + + + 班次产量数据 + + + + + + 计算OEE + + + + + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/YuHongPpublishs/zzz.Tasks.dll b/yuhong_plc/YuHongPpublishs/zzz.Tasks.dll new file mode 100644 index 0000000..57d97c0 Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/zzz.Tasks.dll differ diff --git a/yuhong_plc/YuHongPpublishs/zzz.Tasks.pdb b/yuhong_plc/YuHongPpublishs/zzz.Tasks.pdb new file mode 100644 index 0000000..e87eaee Binary files /dev/null and b/yuhong_plc/YuHongPpublishs/zzz.Tasks.pdb differ diff --git a/yuhong_plc/yhPlcReadData.sln b/yuhong_plc/yhPlcReadData.sln new file mode 100644 index 0000000..eb34b47 --- /dev/null +++ b/yuhong_plc/yhPlcReadData.sln @@ -0,0 +1,61 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "zzz.Api", "zzz.Api\zzz.Api.csproj", "{139F3979-038E-4186-B065-1B835CD9AAA7}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "zzz.Extensions", "zzz.Extensions\zzz.Extensions.csproj", "{F61ABDD4-6F35-4006-B447-AE5578591912}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "zzz.Common", "zzz.Common\zzz.Common.csproj", "{76991CAD-C9EE-4611-A664-77D9F6A49614}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "zzz.Model", "zzz.model\zzz.Model.csproj", "{533C129E-73E2-4E82-8FBB-DC518BE13CCE}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "zzz.Repository", "zzz.Repository\zzz.Repository.csproj", "{35F04E95-CDB3-48D6-ADB2-A9A6DDC75BF1}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "zzz.Services", "zzz.Services\zzz.Services.csproj", "{686F4605-1A63-46BD-B443-7EE20AD8D1ED}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "zzz.Tasks", "zzz.Tasks\zzz.Tasks.csproj", "{82DA86C5-FCBF-4F5C-B1C8-364748149157}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {139F3979-038E-4186-B065-1B835CD9AAA7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {139F3979-038E-4186-B065-1B835CD9AAA7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {139F3979-038E-4186-B065-1B835CD9AAA7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {139F3979-038E-4186-B065-1B835CD9AAA7}.Release|Any CPU.Build.0 = Release|Any CPU + {F61ABDD4-6F35-4006-B447-AE5578591912}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F61ABDD4-6F35-4006-B447-AE5578591912}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F61ABDD4-6F35-4006-B447-AE5578591912}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F61ABDD4-6F35-4006-B447-AE5578591912}.Release|Any CPU.Build.0 = Release|Any CPU + {76991CAD-C9EE-4611-A664-77D9F6A49614}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {76991CAD-C9EE-4611-A664-77D9F6A49614}.Debug|Any CPU.Build.0 = Debug|Any CPU + {76991CAD-C9EE-4611-A664-77D9F6A49614}.Release|Any CPU.ActiveCfg = Release|Any CPU + {76991CAD-C9EE-4611-A664-77D9F6A49614}.Release|Any CPU.Build.0 = Release|Any CPU + {533C129E-73E2-4E82-8FBB-DC518BE13CCE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {533C129E-73E2-4E82-8FBB-DC518BE13CCE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {533C129E-73E2-4E82-8FBB-DC518BE13CCE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {533C129E-73E2-4E82-8FBB-DC518BE13CCE}.Release|Any CPU.Build.0 = Release|Any CPU + {35F04E95-CDB3-48D6-ADB2-A9A6DDC75BF1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {35F04E95-CDB3-48D6-ADB2-A9A6DDC75BF1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {35F04E95-CDB3-48D6-ADB2-A9A6DDC75BF1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {35F04E95-CDB3-48D6-ADB2-A9A6DDC75BF1}.Release|Any CPU.Build.0 = Release|Any CPU + {686F4605-1A63-46BD-B443-7EE20AD8D1ED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {686F4605-1A63-46BD-B443-7EE20AD8D1ED}.Debug|Any CPU.Build.0 = Debug|Any CPU + {686F4605-1A63-46BD-B443-7EE20AD8D1ED}.Release|Any CPU.ActiveCfg = Release|Any CPU + {686F4605-1A63-46BD-B443-7EE20AD8D1ED}.Release|Any CPU.Build.0 = Release|Any CPU + {82DA86C5-FCBF-4F5C-B1C8-364748149157}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {82DA86C5-FCBF-4F5C-B1C8-364748149157}.Debug|Any CPU.Build.0 = Debug|Any CPU + {82DA86C5-FCBF-4F5C-B1C8-364748149157}.Release|Any CPU.ActiveCfg = Release|Any CPU + {82DA86C5-FCBF-4F5C-B1C8-364748149157}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {9647799D-9BF3-480A-A54F-228543FE7236} + EndGlobalSection +EndGlobal diff --git a/yuhong_plc/zzz.Api/.config/dotnet-tools.json b/yuhong_plc/zzz.Api/.config/dotnet-tools.json new file mode 100644 index 0000000..c9b7f4f --- /dev/null +++ b/yuhong_plc/zzz.Api/.config/dotnet-tools.json @@ -0,0 +1,12 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "dotnet-ef": { + "version": "6.0.6", + "commands": [ + "dotnet-ef" + ] + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/Controllers/ApiActiveController.cs b/yuhong_plc/zzz.Api/Controllers/ApiActiveController.cs new file mode 100644 index 0000000..4cbeb19 --- /dev/null +++ b/yuhong_plc/zzz.Api/Controllers/ApiActiveController.cs @@ -0,0 +1,73 @@ +using Microsoft.AspNetCore.Mvc; +using StackExchange.Profiling; +using zzz.Model; +using zzz.Model.Entity; +using zzz.Repository; +using zzz.Tasks; + +namespace zzz.Api.Controllers +{ + /// + /// 持续运行 + /// + [ApiController] + [Route("api/[controller]/[action]")] + public class ApiActiveController : Controller + { + private readonly ILogger _logger; + private readonly IBaseRepository _tasksQzServices; + private readonly ISchedulerCenter _schedulerCenter; + /// + /// 持续运行 + /// + /// + /// + /// + public ApiActiveController( + IBaseRepository tasksQzServices, + ISchedulerCenter schedulerCenter, + ILogger logger + ) + { + _tasksQzServices = tasksQzServices; + _schedulerCenter = schedulerCenter; + _logger = logger; + } + + /// + /// 激活 + /// + [HttpGet] + public string KeepActive() + { + using (MiniProfiler.Current.Step("获取成功后,开始处理最终数据")) + { + _logger.LogInformation("用workservice定时调用该Api,保持不被IIS自动回收"); + return "成功调用Api接口"; + } + } + + /// + /// 立即执行任务 + /// + /// + /// + [HttpGet] + public async Task> ExecuteJob(int jobId) + { + var data = new MessageModel(); + + var model = await _tasksQzServices.FirstOrDefaultByIdAsync(jobId); + if (model != null) + { + return await _schedulerCenter.ExecuteJobAsync(model); + } + else + { + data.message = "任务不存在"; + } + return data; + } + + } +} diff --git a/yuhong_plc/zzz.Api/Controllers/BaseApiController.cs b/yuhong_plc/zzz.Api/Controllers/BaseApiController.cs new file mode 100644 index 0000000..0a82216 --- /dev/null +++ b/yuhong_plc/zzz.Api/Controllers/BaseApiController.cs @@ -0,0 +1,126 @@ +using zzz.Model; +using Microsoft.AspNetCore.Mvc; +using System.Collections.Generic; + +namespace zzz.Api.Controllers +{ + /// + /// + /// + public class BaseApiController : Controller + { + /// + /// + /// + /// + /// + /// + /// + [NonAction] + public MessageModel Success(T data, string message = "成功") + { + return new MessageModel() + { + success = true, + message = message, + data = data, + }; + } + + /// + /// + /// + /// + /// + [NonAction] + public MessageModel Success(string message = "成功") + { + return new MessageModel() + { + success = true, + message = message, + data = null, + }; + } + + /// + /// + /// + /// + /// + /// + [NonAction] + public MessageModel Failed(string message = "失败", int status = 500) + { + return new MessageModel() + { + success = false, + code = status, + message = message, + data = null, + }; + } + + /// + /// + /// + /// + /// + /// + /// + [NonAction] + public MessageModel Failed(string message = "失败", int status = 500) + { + return new MessageModel() + { + success = false, + code = status, + message = message, + data = default, + }; + } + + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + [NonAction] + public MessageModel> SuccessPage(int page, int dataCount, int pageSize, List data, int pageCount, string message = "获取成功") + { + + return new MessageModel>() + { + success = true, + message = message, + data = new PageModel(page, dataCount, pageSize, data) + + }; + } + + /// + /// + /// + /// + /// + /// + /// + [NonAction] + public MessageModel> SuccessPage(PageModel pageModel, string message = "获取成功") + { + + return new MessageModel>() + { + success = true, + message = message, + data = pageModel + }; + } + } +} diff --git a/yuhong_plc/zzz.Api/Controllers/BigScreenController.cs b/yuhong_plc/zzz.Api/Controllers/BigScreenController.cs new file mode 100644 index 0000000..cd742fd --- /dev/null +++ b/yuhong_plc/zzz.Api/Controllers/BigScreenController.cs @@ -0,0 +1,229 @@ +using Microsoft.AspNetCore.Mvc; +using StackExchange.Profiling; +using zzz.Common.Helper; +using zzz.Model; +using zzz.Model.Entity; +using zzz.Repository; +using zzz.Services.ERP.Dtos; +using zzz.Tasks; + +namespace zzz.Api.Controllers +{ + /// + /// 余宏大屏数据 + /// + [ApiController] + [Route("api/[controller]/[action]")] + public class BigScreenController : BaseApiController + { + private readonly ILogger _logger; + private readonly IBaseRepository _planOrderRep; + private readonly IBaseRepository _salesout_delivery_orderRep; + private readonly IBaseRepository _eqmtAddRep; + private readonly IBaseRepository _eqmtBaseRep; + private readonly IBaseRepository _eqmtPubRep; + /// + /// 余宏大屏数据 + /// + /// + /// + /// + public BigScreenController( + IBaseRepository planOrderRep, + IBaseRepository salesout_delivery_orderRep, + IBaseRepository eqmtAddRep, + IBaseRepository eqmtBaseRep, + IBaseRepository eqmtPubRep, + ILogger logger + ) + { + _planOrderRep = planOrderRep; + _salesout_delivery_orderRep = salesout_delivery_orderRep; + _eqmtAddRep = eqmtAddRep; + _eqmtBaseRep = eqmtBaseRep; + _eqmtPubRep = eqmtPubRep; + _logger = logger; + } + + + /// + /// 工单列表数据 + /// + /// + [HttpGet] + public async Task< MessageModel>> getPlanOrderList() + { + var orderList = await _planOrderRep.QueryAsync(x => x.FSTATUS != "结案" && x.FSTART_DATE.Length > 0); + + var ret = orderList.OrderByDescending(x=>x.FBILL_NO).Take(50).AsEnumerable().MapToList(); + + foreach (var item in ret) + { + item.FBILL_NO = " " + item.FBILL_NO; + } + return Success(ret.ToList()); + } + + /// + /// 工单详情 + /// + /// + [HttpGet] + public async Task> getPlanOrderDetail(long fentryId) + { + var orderInfo = await _planOrderRep.FirstOrDefaultAsync(x=>x.FENTRY_ID == fentryId); + + var ret = orderInfo.MapTo(); + + return Success(ret); + } + + /// + /// 动态月订单信息数据 + /// + /// + [HttpGet] + public async Task> getMonthData() + { + var ret = new MonthDataOutput() { + ProductQty = new ProductQtyDto(), + EqmtRate = new LineRateDto(), + ProductOKRate = new List(), + }; + + var exceptDate = new DateTime(1900, 01, 01); + var monthFirstDat = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1); + + //设备列表 + var eqmtList = await _eqmtBaseRep.QueryAsync(); + + //生产工单 + var MoList = await _planOrderRep.QueryAsync( + x => x.FPLAN_FINISH_DATE.StartsWith(DateTime.Now.ToString("yyyy-MM")) + ); //本月数据 + + //生产计划达成率 + var moTotalCnt = MoList.Where(x => x.FPLAN_FINISH_DATE.ObjToDate(exceptDate).Date <= DateTime.Now.Date).Count(); + if (moTotalCnt > 0) + { + var completeList = new List() { "结案", "完工" }; + var completeCnt = MoList.Where(x => x.FPLAN_FINISH_DATE.ObjToDate(exceptDate).Date <= DateTime.Now.Date && completeList.Contains(x.FSTATUS)).Count(); + ret.MoCompleteRate = Math.Round(completeCnt.ObjToDecimal() / moTotalCnt.ObjToDecimal(), 4) * 100; + } + + //订单交付率 + var SoList = await _salesout_delivery_orderRep.QueryAsync( + x => x.FDATE.StartsWith(DateTime.Now.ToString("yyyy-MM")) + ); //本月数据 + var soCount = SoList.Where(x => x.FDATE.ObjToDate(exceptDate).Date <= DateTime.Now.Date).Count(); + if (soCount>0) + { + var soCompleteCnt = SoList.Where(x => x.FDATE.ObjToDate(exceptDate).Date <= DateTime.Now.Date && x.FREAL_QTY > 0).Count(); + ret.PoCompleteRate = Math.Round(soCompleteCnt.ObjToDecimal() / soCount.ObjToDecimal(), 4) * 100; + } + + //月产量 _eqmtAddRep + var productType = (await _eqmtBaseRep.QueryAsync()).Select(x => x.product).Distinct(); + ret.ProductQty.xAxis.type = "category"; + ret.ProductQty.xAxis.data = new List(); + for (int i = 6; i >= 0 ; i--) + { + ret.ProductQty.xAxis.data.Add(DateTime.Now.Date.AddDays(-i).ToString("MM-dd")); + } + var addList = await _eqmtAddRep.QueryAsync(x => x.add_datetime >= DateTime.Now.Date.AddDays(-6).Date); + //var addList = await _eqmtAddRep.QueryAsync(); + + + foreach (var t in productType) + { + seriesDto s = new seriesDto(); + s.name = t; + s.type = "bar"; + s.data = new List(); + + for (int i = 6; i >= 0; i--) + { + var day = DateTime.Now.Date.AddDays(-i).Date; + var sumQty = addList.Where(x => x.add_datetime.Value.Date == day && x.product == t).Sum(x => x.add_qty_ok); + s.data.Add(sumQty); + } + + ret.ProductQty.series.Add(s); + } + + //设备利用率 + ret.EqmtRate.xAxis.data = (await _eqmtBaseRep.QueryAsync()).Select(x => x.line_name).ToList(); + var pubList = await _eqmtPubRep.QueryAsync(x => x.gmt_create >= monthFirstDat); + + seriesDto01 newSeries = new seriesDto01(); + + foreach (var item in eqmtList) + { + var totalTime = pubList.Where(x => x.eqmt_id == item.eqmt_id).Sum(x => x.intraday_eqmt_run_time); + var workTime = pubList.Where(x => x.eqmt_id == item.eqmt_id).Sum(x => x.intraday_eqmt_work_time); + if (totalTime > 0) + { + newSeries.data.Add(Math.Round((decimal)workTime / totalTime, 4)*100); + } + else + { + newSeries.data.Add(0); + } + } + ret.EqmtRate.series.Add(newSeries); + + //合格率 + var addListMonth = await _eqmtAddRep.QueryAsync(x => x.add_datetime >= monthFirstDat); + + foreach (var item in productType) + { + ProductOkRateDto newOK = new ProductOkRateDto(); + + newOK.ProductName = item; + var okQty = addListMonth.Where(x => x.product == item).Sum(x => x.add_qty_ok); + var ngQty = addListMonth.Where(x => x.product == item).Sum(x => x.add_qty_ng); + if (okQty > 0 || ngQty>0) + { + newOK.OKRate = Math.Round((decimal)okQty / (okQty + ngQty), 4) * 100; + } + ret.ProductOKRate.Add(newOK); + } + + return Success(ret); + } + + /// + /// 设备信息 + /// + /// + [HttpGet] + public async Task>> getEqmtDetailList() + { + List ret = new List(); + //设备列表 + var eqmtList = await _eqmtBaseRep.QueryAsync(); + + var pubList = await _eqmtPubRep.QueryAsync(x => x.gmt_create >= DateTime.Now.Date); + + foreach (var item in eqmtList) + { + EqmtInfoOutput newOne = new EqmtInfoOutput(); + + var lastInfo = pubList.Where(x => x.eqmt_id == item.eqmt_id).OrderByDescending(x => x.gmt_create).FirstOrDefault(); + if (lastInfo != null) + { + newOne = lastInfo.MapTo(); + } + else + { + + } + newOne.eqmt_name = eqmtList.Where(x => x.eqmt_id == item.eqmt_id).FirstOrDefault()?.line_name; + ret.Add(newOne); + } + + + return Success(ret); + } + } +} diff --git a/yuhong_plc/zzz.Api/Controllers/Sys/DBOperationController.cs b/yuhong_plc/zzz.Api/Controllers/Sys/DBOperationController.cs new file mode 100644 index 0000000..ed4312c --- /dev/null +++ b/yuhong_plc/zzz.Api/Controllers/Sys/DBOperationController.cs @@ -0,0 +1,41 @@ +using Microsoft.AspNetCore.Mvc; +using zzz.Services; + +namespace zzz.Web.Api.Controllers +{ +#if !DEBUG + [NonController] +#endif + /// + /// 数据库操作 + /// + [ApiController] + [Route("[controller]/[action]")] + public class DBOperationController : Controller + { + private readonly IDBSeed _dbSeed; + + /// + /// 构造 + /// + /// + public DBOperationController + ( + IDBSeed dbSeed + ) + { + _dbSeed = dbSeed; + } + + /// + /// 同步表结果 Entity-->数据库 + /// + /// + /// + [HttpPost] + public async Task CreateTable(string tableClassName) + { + await _dbSeed.CreateTable(tableClassName); + } + } +} diff --git a/yuhong_plc/zzz.Api/Controllers/Sys/TasksQzController.cs b/yuhong_plc/zzz.Api/Controllers/Sys/TasksQzController.cs new file mode 100644 index 0000000..2733d0d --- /dev/null +++ b/yuhong_plc/zzz.Api/Controllers/Sys/TasksQzController.cs @@ -0,0 +1,541 @@ +using zzz.Model; +using zzz.Model.Entity; +using zzz.Repository; +using zzz.Repository.UnitOfWork; +using zzz.Services.Sys.TasksQzs; +using zzz.Services.Sys.TasksQzs.Dtos; +using zzz.Tasks; +using Microsoft.AspNetCore.Mvc; +using Quartz; +using System.Linq.Expressions; +using System.Reflection; + +namespace zzz.Api.Controllers +{ +#if !DEBUG + [NonController] +#endif + /// + /// 定时任务 + /// + [ApiController] + [Route("api/[controller]/[action]")] + public class TasksQzController : BaseApiController + { + //private readonly ITasksQzServices _tasksQzServices; + private readonly IBaseRepository _tasksQzServices; + private readonly ISchedulerCenter _schedulerCenter; + private readonly IUnitOfWork _unitOfWork; + + /// + /// 构造 + /// + /// + /// + /// + public TasksQzController( + //ITasksQzServices tasksQzServices, + IBaseRepository tasksQzServices, + ISchedulerCenter schedulerCenter, + IUnitOfWork unitOfWork + ) + { + _unitOfWork = unitOfWork; + _tasksQzServices = tasksQzServices; + _schedulerCenter = schedulerCenter; + } + + /// + /// 分页获取 + /// + /// + /// + /// + // GET: api/Buttons/5 + [HttpGet] + public async Task>> Get(int page = 1, string key = "") + { + if (string.IsNullOrEmpty(key) || string.IsNullOrWhiteSpace(key)) + { + key = ""; + } + int intPageSize = 50; + + Expression> whereExpression = a => a.IsDeleted != true && (a.Name != null && a.Name.Contains(key)); + + var data = await _tasksQzServices.QueryPageAsync(whereExpression, page, intPageSize, " Id desc "); + if (data.totalCount > 0) + { + foreach (var item in data.rows) + { + item.Triggers = await _schedulerCenter.GetTaskStaus(item); + } + } + return Success(data); + } + + /// + /// 添加计划任务 + /// + /// + /// + [HttpPost] + public async Task> Post([FromBody] TasksQz tasksQz) + { + var data = new MessageModel(); + _unitOfWork.BeginTran(); + var id = (await _tasksQzServices.InsertAsync(tasksQz)); + data.success = id > 0; + try + { + if (data.success) + { + tasksQz.Id = id; + data.data = id.ObjToString(); + data.message = "添加成功"; + if (tasksQz.IsStart) + { + //如果是启动自动 + var ResuleModel = await _schedulerCenter.AddScheduleJobAsync(tasksQz); + data.success = ResuleModel.success; + if (ResuleModel.success) + { + data.message = $"{data.message}=>启动成功=>{ResuleModel.message}"; + } + else + { + data.message = $"{data.message}=>启动失败=>{ResuleModel.message}"; + } + } + } + else + { + data.message = "添加失败"; + + } + } + catch (Exception) + { + throw; + } + finally + { if(data.success) + _unitOfWork.CommitTran(); + else + _unitOfWork.RollbackTran(); + } + return data; + } + + /// + /// 修改计划任务 + /// + /// + /// + [HttpPost] + public async Task> Put([FromBody] TasksQz tasksQz) + { + var data = new MessageModel(); + if (tasksQz != null && tasksQz.Id > 0) + { + _unitOfWork.BeginTran(); + data.success = await _tasksQzServices.UpdateAsync(tasksQz); + try + { + if (data.success) + { + data.message = "修改成功"; + data.data = tasksQz?.Id.ObjToString(); + if (tasksQz.IsStart) + { + var ResuleModelStop = await _schedulerCenter.StopScheduleJobAsync(tasksQz); + data.message = $"{data.message}=>停止:{ResuleModelStop.message}"; + var ResuleModelStar = await _schedulerCenter.AddScheduleJobAsync(tasksQz); + data.success = ResuleModelStar.success; + data.message = $"{data.message}=>启动:{ResuleModelStar.message}"; + } + else + { + var ResuleModelStop = await _schedulerCenter.StopScheduleJobAsync(tasksQz); + data.message = $"{data.message}=>停止:{ResuleModelStop.message}"; + } + } + else + { + data.message = "修改失败"; + } + } + catch (Exception) + { + throw; + } + finally + { + if (data.success) + _unitOfWork.CommitTran(); + else + _unitOfWork.RollbackTran(); + } + } + return data; + } + + /// + /// 删除一个任务 + /// + /// + /// + [HttpDelete] + public async Task> Delete(int jobId) + { + var data = new MessageModel(); + + var model = await _tasksQzServices.FirstOrDefaultByIdAsync(jobId); + if (model != null) + { + _unitOfWork.BeginTran(); + data.success = await _tasksQzServices.DeleteAsync(model); + try + { + data.data = jobId.ObjToString(); + if (data.success) + { + data.message = "删除成功"; + var ResuleModel = await _schedulerCenter.StopScheduleJobAsync(model); + data.message = $"{data.message}=>任务状态=>{ResuleModel.message}"; + } + else + { + data.message = "删除失败"; + } + + } + catch (Exception) + { + throw; + } + finally + { + if (data.success) + _unitOfWork.CommitTran(); + else + _unitOfWork.RollbackTran(); + } + } + else + { + data.message = "任务不存在"; + } + return data; + + } + /// + /// 启动计划任务 + /// + /// + /// + [HttpGet] + public async Task> StartJob(int jobId) + { + var data = new MessageModel(); + + var model = await _tasksQzServices.FirstOrDefaultByIdAsync(jobId); + if (model != null) + { + _unitOfWork.BeginTran(); + try + { + model.IsStart = true; + data.success = await _tasksQzServices.UpdateAsync(model); + data.data = jobId.ObjToString(); + if (data.success) + { + data.message = "更新成功"; + var ResuleModel = await _schedulerCenter.AddScheduleJobAsync(model); + data.success = ResuleModel.success; + if (ResuleModel.success) + { + data.message = $"{data.message}=>启动成功=>{ResuleModel.message}"; + + } + else + { + data.message = $"{data.message}=>启动失败=>{ResuleModel.message}"; + } + } + else + { + data.message = "更新失败"; + } + } + catch (Exception) + { + throw; + } + finally + { + if (data.success) + _unitOfWork.CommitTran(); + else + _unitOfWork.RollbackTran(); + } + } + else + { + data.message = "任务不存在"; + } + return data; + } + /// + /// 停止一个计划任务 + /// + /// + /// + [HttpGet] + public async Task> StopJob(int jobId) + { + var data = new MessageModel(); + + var model = await _tasksQzServices.FirstOrDefaultByIdAsync(jobId); + if (model != null) + { + model.IsStart = false; + data.success = await _tasksQzServices.UpdateAsync(model); + data.data = jobId.ObjToString(); + if (data.success) + { + data.message = "更新成功"; + var ResuleModel = await _schedulerCenter.StopScheduleJobAsync(model); + if (ResuleModel.success) + { + data.message = $"{data.message}=>停止成功=>{ResuleModel.message}"; + } + else + { + data.message = $"{data.message}=>停止失败=>{ResuleModel.message}"; + } + } + else + { + data.message = "更新失败"; + } + } + else + { + data.message = "任务不存在"; + } + return data; + } + /// + /// 暂停一个计划任务 + /// + /// + /// + [HttpGet] + public async Task> PauseJob(int jobId) + { + var data = new MessageModel(); + var model = await _tasksQzServices.FirstOrDefaultByIdAsync(jobId); + if (model != null) + { + _unitOfWork.BeginTran(); + try + { + data.success = await _tasksQzServices.UpdateAsync(model); + data.data = jobId.ObjToString(); + if (data.success) + { + data.message = "更新成功"; + var ResuleModel = await _schedulerCenter.PauseJob(model); + if (ResuleModel.success) + { + data.message = $"{data.message}=>暂停成功=>{ResuleModel.message}"; + } + else + { + data.message = $"{data.message}=>暂停失败=>{ResuleModel.message}"; + } + data.success = ResuleModel.success; + } + else + { + data.message = "更新失败"; + } + } + catch (Exception) + { + throw; + } + finally + { + if (data.success) + _unitOfWork.CommitTran(); + else + _unitOfWork.RollbackTran(); + } + } + else + { + data.message = "任务不存在"; + } + return data; + } + /// + /// 恢复一个计划任务 + /// + /// + /// + [HttpGet] + public async Task> ResumeJob(int jobId) + { + var data = new MessageModel(); + + var model = await _tasksQzServices.FirstOrDefaultByIdAsync(jobId); + if (model != null) + { + _unitOfWork.BeginTran(); + try + { + model.IsStart = true; + data.success = await _tasksQzServices.UpdateAsync(model); + data.data = jobId.ObjToString(); + if (data.success) + { + data.message = "更新成功"; + var ResuleModel = await _schedulerCenter.ResumeJob(model); + if (ResuleModel.success) + { + data.message = $"{data.message}=>恢复成功=>{ResuleModel.message}"; + } + else + { + data.message = $"{data.message}=>恢复失败=>{ResuleModel.message}"; + } + data.success = ResuleModel.success; + } + else + { + data.message = "更新失败"; + } + } + catch (Exception) + { + throw; + } + finally + { + if (data.success) + _unitOfWork.CommitTran(); + else + _unitOfWork.RollbackTran(); + } + } + else + { + data.message = "任务不存在"; + } + return data; + } + /// + /// 重启一个计划任务 + /// + /// + /// + [HttpGet] + public async Task> ReCovery(int jobId) + { + var data = new MessageModel(); + var model = await _tasksQzServices.FirstOrDefaultByIdAsync(jobId); + if (model != null) + { + + _unitOfWork.BeginTran(); + try + { + model.IsStart = true; + data.success = await _tasksQzServices.UpdateAsync(model); + data.data = jobId.ObjToString(); + if (data.success) + { + data.message = "更新成功"; + var ResuleModelStop = await _schedulerCenter.StopScheduleJobAsync(model); + var ResuleModelStar = await _schedulerCenter.AddScheduleJobAsync(model); + if (ResuleModelStar.success) + { + data.message = $"{data.message}=>停止:{ResuleModelStop.message}=>启动:{ResuleModelStar.message}"; + data.data = jobId.ObjToString(); + + } + else + { + data.message = $"{data.message}=>停止:{ResuleModelStop.message}=>启动:{ResuleModelStar.message}"; + data.data = jobId.ObjToString(); + } + data.success = ResuleModelStar.success; + } + else + { + data.message = "更新失败"; + } + } + catch (Exception) + { + throw; + } + finally + { + if (data.success) + _unitOfWork.CommitTran(); + else + _unitOfWork.RollbackTran(); + } + } + else + { + data.message = "任务不存在"; + } + return data; + + } + /// + /// 获取任务命名空间 + /// + /// + [HttpGet] + public MessageModel> GetTaskNameSpace() + { + var baseType = typeof(IJob); + var path = AppDomain.CurrentDomain.RelativeSearchPath ?? AppDomain.CurrentDomain.BaseDirectory; + var referencedAssemblies = System.IO.Directory.GetFiles(path, "zzz.Tasks.dll").Select(Assembly.LoadFrom).ToArray(); + var types = referencedAssemblies + .SelectMany(a => a.DefinedTypes) + .Select(type => type.AsType()) + .Where(x => x != baseType && baseType.IsAssignableFrom(x)).ToArray(); + var implementTypes = types.Where(x => x.IsClass).Select(item => new QuartzReflectionViewModel { nameSpace = item.Namespace, nameClass = item.Name, remark = "" }).ToList(); + return MessageModel>.Success("获取成功", implementTypes); + } + + /// + /// 立即执行任务 + /// + /// + /// + [HttpGet] + public async Task> ExecuteJob(int jobId) + { + var data = new MessageModel(); + + var model = await _tasksQzServices.FirstOrDefaultByIdAsync(jobId); + if (model != null) + { + return await _schedulerCenter.ExecuteJobAsync(model); + } + else + { + data.message = "任务不存在"; + } + return data; + } + + } +} diff --git a/yuhong_plc/zzz.Api/Controllers/Test/TestController.cs b/yuhong_plc/zzz.Api/Controllers/Test/TestController.cs new file mode 100644 index 0000000..1e0a5f8 --- /dev/null +++ b/yuhong_plc/zzz.Api/Controllers/Test/TestController.cs @@ -0,0 +1,366 @@ +using AutoMapper; +using zzz.Common.Helper; +using zzz.Model; +using zzz.Model.Entity; +using zzz.Repository; +using zzz.Services; +using zzz.Services.Sys.TasksQzs; +using zzz.Services.Sys.TasksQzs.Dtos; +using zzz.Services.Sys.Tests; +using zzz.Services.Sys.Tests.Dtos; +using Microsoft.AspNetCore.Mvc; +using Newtonsoft.Json; +using System.Linq.Expressions; +using Yitter.IdGenerator; +using zzz.Common; +using zzz.Services.ReadPLC; + +namespace zzz.Api.Controllers +{ +//#if !DEBUG +// [NonController] +//#endif + /// + /// + /// + [ApiController] + [Route("api/[controller]/[action]")] + public class TestController : BaseApiController + { + private readonly IMapper _mapper; + private readonly ITestServices _testServices; + private readonly ITasksQzServices _tasksQzServices; + private readonly IReadPLCDataService _readPLCDataService; + /// + /// + /// + /// + /// + /// + /// + public TestController( + IMapper mapper, + ITestServices testServices, + ITasksQzServices tasksQzServices, + IReadPLCDataService readPLCDataService + ) + { + _mapper = mapper; + _testServices = testServices; + _tasksQzServices= tasksQzServices; + _readPLCDataService = readPLCDataService; + } + + /// + /// 测试 增加数据 BaseService + /// + /// + [HttpPost] + public async Task TestAdd(AddOrUpdTestInput input) + { + input.Entity.Id = ConvertUtil2.ConvertType(YitIdHelper.NextId()); + + var ret = await _testServices.AddOne(input.Entity); + + return Success(ret); + } + + /// + /// 测试 增加数据 接口 + /// + /// + [HttpPost] + public async Task TestAddIF(AddOrUpdTestInput input) + { + input.Entity.Id = ConvertUtil2.ConvertType(YitIdHelper.NextId()); + + var ret = await _testServices.AddTest( input); + + return Success(ret); + } + + + /// + /// 测试 修改数据 BaseService + /// + /// + [HttpPost] + public async Task TestUpd(AddOrUpdTestInput input) + { + var ret = await _testServices.UpdOne(input.Entity); + + return Success(ret); + } + + /// + /// 测试 修改部分数据 BaseService + /// + /// + [HttpPost] + public async Task TestUpd2(DtoEditTest2 input) + { + var ret = await _testServices.UpdOne(input); + + return Success(ret); + } + + /// + /// 测试 修改数据 接口 + /// + /// + [HttpPost] + public async Task TestUpdIF(AddOrUpdTestInput input) + { + var ret = await _testServices.UpdTest(input); + + return Success(ret); + } + + /// + /// 测试 修改部分数据 接口 + /// + /// + [HttpPost] + public async Task TestUpd2IF(DtoEditTest2 input) + { + var ret = await _testServices.UpdTest2(input); + + return Success(ret); + } + + + /// + /// 测试 软删除数据 BaseService + /// + /// + [HttpPost] + public async Task TestDelSoft(KeyInputUpd input) + { + var ret = await _testServices.DelOneSoft(input); + + return Success(ret); + } + + /// + /// 测试 软删除数据 接口 + /// + /// + [HttpPost] + public async Task TestDelSoftIF(KeyInputUpd input) + { + var ret = await _testServices.DelTest(input); + + return Success(ret); + } + + + /// + /// 测试取单条数据 BaseService + /// + /// + /// + [HttpGet] + public async Task TestGet([FromQuery] KeyInput input) + { + var ret = await _testServices.GetOneById(input.Id); + + return Success(ret); + } + + + /// + /// 测试取单条数据 IF + /// + /// + /// + [HttpGet] + public async Task TestGetIf([FromQuery] KeyInput input) + { + var ret = await _testServices.GetTest(input); + + return Success(ret); + } + + /// + /// 测试分页数据 Baseservice + /// + /// + /// + [HttpGet] + public async Task TestPage([FromQuery] GetPageListTestInput input) + { + var ret = await _testServices.GetPageList(null,input.PageIndex,input.PageSize,input.SortSql); + + return Success(ret); + } + + /// + /// 测试分页数据 IF + /// + /// + /// + [UseTran] + [HttpGet] + public async Task TestPageIF([FromQuery] GetPageListTestInput input) + { + var ret = await _testServices.GetPageListTest(input); + + return Success(ret); + } + + /// + /// + /// + /// + [HttpGet] + [UseTran] + public string TestUseTran() + { + return "看看是否拦截到"; + } + + ///// + ///// 测试 change + ///// + ///// + //[HttpGet] + //public async Task T2() + //{ + // var a = await _testServices.QueryById(1); + + // //_tasksQzServices.ChangeRepository(); + + // var b = await _tasksQzServices.QueryById(1); + + // var ret = JsonConvert.SerializeObject(a) + "|||" + JsonConvert.SerializeObject(b); + // return ret; + //} + + ///// + ///// + ///// + ///// + //[HttpGet] + //public async Task T3() + //{ + // var testList = await _testServices.Query(); + // var maxId = 1; + // if (testList.Any()) + // { + // maxId = maxId + 1; + // } + + // await _testServices.Add(new Test() + // { + // Id = maxId, + // Txt1 = DateTime.Now.ToString(), + // Flo1 = maxId * 2.36F + // }); ; + + // var ret = JsonConvert.SerializeObject(await _testServices.Query()); + // return ret; + //} + + ///// + ///// + ///// + ///// + //[HttpGet] + //public async Task TestMapper() + //{ + // Expression> where = a => a.IsDeleted != true ; + + // var data = await _tasksQzServices.QueryPage(where, 1, 20, " Id desc "); + + // var sssef = JsonConvert.SerializeObject(data); + + // var ss = data.ConvertTo(); + + // return MessageModel>.Success("",ss); + + //} + + /// + /// 读取13线数据 + /// + /// + [HttpPost] + public async void TestRead13(EquipInput input) + { + + //IP 183.129.248.194 + await _readPLCDataService.ReadDataLine13(input); + } + + + + //INSERT INTO `cjyx`.`eqmt_base`(`id`, `eqmt_id`, `line_name`, `product`, `gmt_create`, `gmt_modified`, `strand_speed`) VALUES(6, 6, '15#', '卫生巾', '2022-11-11 11:34:09', NULL, 500); + //INSERT INTO `cjyx`.`eqmt_base`(`id`, `eqmt_id`, `line_name`, `product`, `gmt_create`, `gmt_modified`, `strand_speed`) VALUES(7, 7, '7#', '卫生巾', '2022-11-11 11:34:09', NULL, 500); + //INSERT INTO `cjyx`.`eqmt_base`(`id`, `eqmt_id`, `line_name`, `product`, `gmt_create`, `gmt_modified`, `strand_speed`) VALUES(8, 8, '2#', '卫生巾', '2022-11-11 11:34:09', NULL, 500); + + + + /// + /// 读取2线数据 + /// + [HttpGet] + public async Task TestRead2() + { + + //IP 183.129.248.194 + EquipInput input1 = new() + { + eqmt_id = 8, + ip = "183.129.248.194", + port = new() { 6012} + }; + + await _readPLCDataService.ReadDataLine2(input1); + + return "OK"; + } + + /// + /// 读取15线数据 + /// + /// + [HttpGet] + public async Task TestRead15() + { + + //IP 183.129.248.194 + EquipInput input1 = new() + { + eqmt_id = 6, + ip = "183.129.248.194", + port = new() { 6001 } + }; + + await _readPLCDataService.ReadDataLine15(input1); + + return "OK"; + } + + /// + /// 读取7线数据 + /// + /// + [HttpGet] + public async Task TestRead7() + { + + //IP 183.129.248.194 + EquipInput input1 = new() + { + eqmt_id = 7, + ip = "183.129.248.194", + port = new() { 6011 } + }; + + await _readPLCDataService.ReadDataLine7(input1); + + return "OK"; + } + + } +} diff --git a/yuhong_plc/zzz.Api/Controllers/Test/WeatherForecastController.cs b/yuhong_plc/zzz.Api/Controllers/Test/WeatherForecastController.cs new file mode 100644 index 0000000..d457bff --- /dev/null +++ b/yuhong_plc/zzz.Api/Controllers/Test/WeatherForecastController.cs @@ -0,0 +1,33 @@ +using Microsoft.AspNetCore.Mvc; + +namespace zzz.Api.Controllers +{ + [ApiController] + [Route("[controller]")] + public class WeatherForecastController : ControllerBase + { + private static readonly string[] Summaries = new[] + { + "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" + }; + + private readonly ILogger _logger; + + public WeatherForecastController(ILogger logger) + { + _logger = logger; + } + + [HttpGet(Name = "GetWeatherForecast")] + public IEnumerable Get() + { + return Enumerable.Range(1, 5).Select(index => new WeatherForecast + { + Date = DateTime.Now.AddDays(index), + TemperatureC = Random.Shared.Next(-20, 55), + Summary = Summaries[Random.Shared.Next(Summaries.Length)] + }) + .ToArray(); + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/Filter/GlobalExceptionFilter.cs b/yuhong_plc/zzz.Api/Filter/GlobalExceptionFilter.cs new file mode 100644 index 0000000..c2037e3 --- /dev/null +++ b/yuhong_plc/zzz.Api/Filter/GlobalExceptionFilter.cs @@ -0,0 +1,116 @@ +using zzz.Common.Helper; +using zzz.Common.LogHelper; +using zzz.Hubs; +using zzz.Model; +using Microsoft.AspNetCore.Hosting; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.Filters; +using Microsoft.AspNetCore.SignalR; +using Microsoft.Extensions.Logging; +using StackExchange.Profiling; +using System; + +namespace zzz.Filter +{ + /// + /// 全局异常错误日志 + /// + public class GlobalExceptionsFilter : IExceptionFilter + { + private readonly IWebHostEnvironment _env; + private readonly IHubContext _hubContext; + private readonly ILogger _loggerHelper; + + /// + /// 异常拦截构造函数 + /// + /// + /// + /// + public GlobalExceptionsFilter(IWebHostEnvironment env, ILogger loggerHelper, IHubContext hubContext) + { + _env = env; + _loggerHelper = loggerHelper; + _hubContext = hubContext; + } + + /// + /// 异常发生 + /// + /// + public void OnException(ExceptionContext context) + { + var json = new MessageModel(); + + json.message = context.Exception.Message;//错误信息 + json.code = 500;//500异常 + var errorAudit = "Unable to resolve service for"; + if (!string.IsNullOrEmpty(json.message) && json.message.Contains(errorAudit)) + { + json.message = json.message.Replace(errorAudit, $"(若新添加服务,需要重新编译项目){errorAudit}"); + } + + if (_env.EnvironmentName.ObjToString().Equals("Development")) + { + json.message = json.message + ">>>>>堆栈信息:" + context.Exception.StackTrace;//堆栈信息 + } + var res = new ContentResult(); + res.Content = JsonHelper.GetJSON>(json); + + context.Result = res; + + MiniProfiler.Current.CustomTiming("Errors:", json.message); + + + //采用log4net 进行错误日志记录 + _loggerHelper.LogError(json.message + WriteLog(json.message, context.Exception)); + + _hubContext.Clients.All.SendAsync("ReceiveUpdate", LogLock.GetLogData()).Wait(); + + } + + /// + /// 自定义返回格式 + /// + /// + /// + /// + public string WriteLog(string throwMsg, Exception ex) + { + return string.Format("\r\n【自定义错误】:{0} \r\n【异常类型】:{1} \r\n【异常信息】:{2} \r\n【堆栈调用】:{3}", new object[] { throwMsg, + ex.GetType().Name, ex.Message, ex.StackTrace }); + } + + } + + /// + /// + /// + public class InternalServerErrorObjectResult : ObjectResult + { + /// + /// + /// + /// + public InternalServerErrorObjectResult(object value) : base(value) + { + StatusCode = StatusCodes.Status500InternalServerError; + } + } + /// + /// 返回错误信息 + /// + public class JsonErrorResponse + { + /// + /// 生产环境的消息 + /// + public string Message { get; set; } + /// + /// 开发环境的消息 + /// + public string DevelopmentMessage { get; set; } + } + +} diff --git a/yuhong_plc/zzz.Api/Log/RequestResponseLog.log b/yuhong_plc/zzz.Api/Log/RequestResponseLog.log new file mode 100644 index 0000000..7207161 --- /dev/null +++ b/yuhong_plc/zzz.Api/Log/RequestResponseLog.log @@ -0,0 +1,3368 @@ +-------------------------------- +2022/5/17 14:51:36| +Request Data: + QueryData:/api/Test/T3 + BodyData: + +-------------------------------- +2022/5/17 14:51:37| +Response Data: +[{"Txt1":"1","Txt2":"1","Flo1":1.0,"Flo2":1.0,"Id":1,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T14:51:36.9803773+08:00","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2","Txt2":"2","Flo1":2.0,"Flo2":2.0,"Id":2,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T14:51:36.9803846+08:00","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2022/5/17 13:59:29","Txt2":null,"Flo1":3.0,"Flo2":null,"Id":3,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T13:59:29.723","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2022/5/17 13:59:54","Txt2":null,"Flo1":4.0,"Flo2":null,"Id":4,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T13:59:54.813","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2022/5/17 14:34:38","Txt2":null,"Flo1":5.0,"Flo2":null,"Id":5,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T14:34:38.143","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2022/5/17 14:51:36","Txt2":null,"Flo1":6.0,"Flo2":null,"Id":6,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T14:51:36.92","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false}] + +-------------------------------- +2022/5/17 15:02:31| +Request Data: + QueryData:/api/Test/T3 + BodyData: + +-------------------------------- +2022/5/17 15:02:31| +Response Data: +[{"Txt1":"1","Txt2":"1","Flo1":1.0,"Flo2":1.0,"Id":1,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T15:02:31.7736559+08:00","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2","Txt2":"2","Flo1":2.0,"Flo2":2.0,"Id":2,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T15:02:31.7736623+08:00","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2022/5/17 13:59:29","Txt2":null,"Flo1":3.0,"Flo2":null,"Id":3,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T13:59:29.723","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2022/5/17 13:59:54","Txt2":null,"Flo1":4.0,"Flo2":null,"Id":4,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T13:59:54.813","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2022/5/17 14:34:38","Txt2":null,"Flo1":5.0,"Flo2":null,"Id":5,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T14:34:38.143","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2022/5/17 14:51:36","Txt2":null,"Flo1":6.0,"Flo2":null,"Id":6,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T14:51:36.92","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2022/5/17 15:02:31","Txt2":null,"Flo1":7.0,"Flo2":null,"Id":7,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T15:02:31.713","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false}] + +-------------------------------- +2022/5/17 15:02:33| +Request Data: + QueryData:/api/Test/T3 + BodyData: + +-------------------------------- +2022/5/17 15:02:33| +Response Data: +[{"Txt1":"1","Txt2":"1","Flo1":1.0,"Flo2":1.0,"Id":1,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T15:02:33.3056573+08:00","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2","Txt2":"2","Flo1":2.0,"Flo2":2.0,"Id":2,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T15:02:33.3056628+08:00","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2022/5/17 13:59:29","Txt2":null,"Flo1":3.0,"Flo2":null,"Id":3,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T13:59:29.723","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2022/5/17 13:59:54","Txt2":null,"Flo1":4.0,"Flo2":null,"Id":4,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T13:59:54.813","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2022/5/17 14:34:38","Txt2":null,"Flo1":5.0,"Flo2":null,"Id":5,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T14:34:38.143","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2022/5/17 14:51:36","Txt2":null,"Flo1":6.0,"Flo2":null,"Id":6,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T14:51:36.92","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2022/5/17 15:02:31","Txt2":null,"Flo1":7.0,"Flo2":null,"Id":7,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T15:02:31.713","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false},{"Txt1":"2022/5/17 15:02:33","Txt2":null,"Flo1":8.0,"Flo2":null,"Id":8,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T15:02:33.3","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false}] + +-------------------------------- +2022/5/17 17:29:46| +Request Data: + QueryData:/api/Test/T3 + BodyData: + +-------------------------------- +2022/5/17 17:30:02| +Request Data: + QueryData:/api/Test/T3 + BodyData: + +-------------------------------- +2022/5/17 17:30:07| +Request Data: + QueryData:/api/Test/T1 + BodyData: + +-------------------------------- +2022/5/17 17:30:07| +Response Data: +aaa + +-------------------------------- +2022/5/17 17:30:13| +Request Data: + QueryData:/api/Test/T2 + BodyData: + +-------------------------------- +2022/5/17 17:30:21| +Response Data: +{"Name":"测试定时任务1","JobGroup":"管家婆Erp Api对接","Cron":"*/10 * * * * ?","AssemblyName":"cjyx.Tasks","ClassName":"Job_Blogs_Quartz","Remark":"【2022-05-17 17:30:10】【执行开始】【Id:1,组别:管家婆Erp Api对接】,【2022-05-17 17:30:10】【执行成功】,【2022-05-17 17:30:10】【执行结束】(耗时:0.001秒)","RunTimes":149,"BeginTime":"2022-05-01T11:27:51","EndTime":"2022-05-31T11:28:01","TriggerType":1,"IntervalSecond":0,"CycleRunTimes":0,"IsStart":true,"JobParams":"1","Triggers":null,"Id":1,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-11T11:30:00.107","ModifyId":1,"ModifyBy":"const user","ModifyTime":"2022-05-11T13:47:00.027","IsDeleted":false}|||{"Name":"测试定时任务1","JobGroup":"管家婆Erp Api对接","Cron":"*/10 * * * * ?","AssemblyName":"cjyx.Tasks","ClassName":"Job_Blogs_Quartz","Remark":"【2022-05-17 17:30:10】【执行开始】【Id:1,组别:管家婆Erp Api对接】,【2022-05-17 17:30:10】【执行成功】,【2022-05-17 17:30:10】【执行结束】(耗时:0.001秒)","RunTimes":149,"BeginTime":"2022-05-01T11:27:51","EndTime":"2022-05-31T11:28:01","TriggerType":1,"IntervalSecond":0,"CycleRunTimes":0,"IsStart":true,"JobParams":"1","Triggers":null,"Id":1,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-11T11:30:00.107","ModifyId":1,"ModifyBy":"const user","ModifyTime":"2022-05-11T13:47:00.027","IsDeleted":false} + +-------------------------------- +2022/5/17 17:31:41| +Request Data: + QueryData:/api/Test/T3 + BodyData: + +-------------------------------- +2022/5/17 17:32:04| +Request Data: + QueryData:/api/Test/T3 + BodyData: + +-------------------------------- +2022/5/17 17:32:12| +Request Data: + QueryData:/api/Test/T3 + BodyData: + +-------------------------------- +2022/5/17 17:40:51| +Request Data: + QueryData:/api/Test/T2 + BodyData: + +-------------------------------- +2022/5/17 17:40:51| +Response Data: +{"Name":"测试定时任务1","JobGroup":"管家婆Erp Api对接","Cron":"*/10 * * * * ?","AssemblyName":"cjyx.Tasks","ClassName":"Job_Blogs_Quartz","Remark":"【2022-05-17 17:40:50】【执行开始】【Id:1,组别:管家婆Erp Api对接】,【2022-05-17 17:40:50】【执行成功】,【2022-05-17 17:40:50】【执行结束】(耗时:0.033秒)","RunTimes":172,"BeginTime":"2022-05-01T11:27:51","EndTime":"2022-05-31T11:28:01","TriggerType":1,"IntervalSecond":0,"CycleRunTimes":0,"IsStart":true,"JobParams":"1","Triggers":null,"Id":1,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-11T11:30:00.107","ModifyId":1,"ModifyBy":"const user","ModifyTime":"2022-05-11T13:47:00.027","IsDeleted":false}|||{"Name":"测试定时任务1","JobGroup":"管家婆Erp Api对接","Cron":"*/10 * * * * ?","AssemblyName":"cjyx.Tasks","ClassName":"Job_Blogs_Quartz","Remark":"【2022-05-17 17:40:50】【执行开始】【Id:1,组别:管家婆Erp Api对接】,【2022-05-17 17:40:50】【执行成功】,【2022-05-17 17:40:50】【执行结束】(耗时:0.033秒)","RunTimes":172,"BeginTime":"2022-05-01T11:27:51","EndTime":"2022-05-31T11:28:01","TriggerType":1,"IntervalSecond":0,"CycleRunTimes":0,"IsStart":true,"JobParams":"1","Triggers":null,"Id":1,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-11T11:30:00.107","ModifyId":1,"ModifyBy":"const user","ModifyTime":"2022-05-11T13:47:00.027","IsDeleted":false} + +-------------------------------- +2022/5/17 17:41:00| +Request Data: + QueryData:/api/Test/T3 + BodyData: + +-------------------------------- +2022/5/17 17:41:06| +Request Data: + QueryData:/api/Test/T3 + BodyData: + +-------------------------------- +2022/5/17 17:42:33| +Request Data: + QueryData:/api/Test/T2 + BodyData: + +-------------------------------- +2022/5/17 17:42:33| +Response Data: +{"Name":"测试定时任务1","JobGroup":"管家婆Erp Api对接","Cron":"*/10 * * * * ?","AssemblyName":"cjyx.Tasks","ClassName":"Job_Blogs_Quartz","Remark":"【2022-05-17 17:42:30】【执行开始】【Id:1,组别:管家婆Erp Api对接】,【2022-05-17 17:42:30】【执行成功】,【2022-05-17 17:42:30】【执行结束】(耗时:0.001秒)","RunTimes":182,"BeginTime":"2022-05-01T11:27:51","EndTime":"2022-05-31T11:28:01","TriggerType":1,"IntervalSecond":0,"CycleRunTimes":0,"IsStart":true,"JobParams":"1","Triggers":null,"Id":1,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-11T11:30:00.107","ModifyId":1,"ModifyBy":"const user","ModifyTime":"2022-05-11T13:47:00.027","IsDeleted":false}|||{"Name":"测试定时任务1","JobGroup":"管家婆Erp Api对接","Cron":"*/10 * * * * ?","AssemblyName":"cjyx.Tasks","ClassName":"Job_Blogs_Quartz","Remark":"【2022-05-17 17:42:30】【执行开始】【Id:1,组别:管家婆Erp Api对接】,【2022-05-17 17:42:30】【执行成功】,【2022-05-17 17:42:30】【执行结束】(耗时:0.001秒)","RunTimes":182,"BeginTime":"2022-05-01T11:27:51","EndTime":"2022-05-31T11:28:01","TriggerType":1,"IntervalSecond":0,"CycleRunTimes":0,"IsStart":true,"JobParams":"1","Triggers":null,"Id":1,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-11T11:30:00.107","ModifyId":1,"ModifyBy":"const user","ModifyTime":"2022-05-11T13:47:00.027","IsDeleted":false} + +-------------------------------- +2022/5/17 17:42:38| +Request Data: + QueryData:/api/Test/T3 + BodyData: + +-------------------------------- +2022/5/17 17:42:41| +Request Data: + QueryData:/api/Test/T3 + BodyData: + +-------------------------------- +2022/5/17 17:43:23| +Request Data: + QueryData:/api/Test/T3 + BodyData: + +-------------------------------- +2022/5/17 17:43:40| +Response Data: +[{"Txt1":"2022/5/17 17:43:31","Txt2":null,"Flo1":2.36,"Flo2":null,"Id":1,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-17T17:43:31.207","ModifyId":null,"ModifyBy":null,"ModifyTime":null,"IsDeleted":false}] + +-------------------------------- +2022/5/17 17:50:15| +Request Data: + QueryData:/api/TasksQz/Get?page=1 + BodyData: + +-------------------------------- +2022/5/17 17:50:15| +Response Data: +{"status":200,"success":true,"msg":"获取成功","msgDev":null,"response":{"page":1,"pageCount":1,"dataCount":1,"pageSize":50,"data":[{"name":"测试定时任务1","jobGroup":"管家婆Erp Api对接","cron":"* */10 * * * ?","assemblyName":"cjyx.Tasks","className":"Job_Blogs_Quartz","remark":"【2022-05-17 17:50:15】【执行开始】【Id:1,组别:管家婆Erp Api对接】,【2022-05-17 17:50:15】【执行成功】,【2022-05-17 17:50:15】【执行结束】(耗时:0.005秒)","runTimes":210,"beginTime":"2022-05-01T11:27:51","endTime":"2022-05-31T11:28:01","triggerType":1,"intervalSecond":0,"cycleRunTimes":0,"isStart":true,"jobParams":"1","triggers":[{"jobId":"1","jobName":null,"jobGroup":"管家婆Erp Api对接","triggerId":"1","triggerName":null,"triggerGroup":"管家婆Erp Api对接","triggerStatus":"正常"}],"id":1,"createId":null,"createBy":null,"createTime":"2022-05-11T11:30:00.107","modifyId":1,"modifyBy":"const user","modifyTime":"2022-05-11T13:47:00.027","isDeleted":false}]} + +-------------------------------- +2022/5/17 17:51:48| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=5 + BodyData: + +-------------------------------- +2022/5/17 17:51:48| +Response Data: +{"status":200,"success":false,"msg":"任务不存在","msgDev":null,"response":null} + +-------------------------------- +2022/5/17 17:51:52| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=1 + BodyData: + +-------------------------------- +2022/5/17 17:51:52| +Response Data: +{"status":200,"success":true,"msg":"立即执行计划任务:【测试定时任务1】成功","msgDev":null,"response":null} + +-------------------------------- +2022/5/17 17:55:32| +Request Data: + QueryData:/api/TasksQz/Get?page=1 + BodyData: + +-------------------------------- +2022/5/17 17:55:32| +Response Data: +{"status":200,"success":true,"msg":"获取成功","msgDev":null,"response":{"page":1,"pageCount":1,"dataCount":1,"pageSize":50,"data":[{"name":"测试定时任务1","jobGroup":"管家婆Erp Api对接","cron":"0 0/5 * * * ?","assemblyName":"cjyx.Tasks","className":"Job_Blogs_Quartz","remark":"【2022-05-17 17:51:52】【执行开始】【Id:1,组别:管家婆Erp Api对接】,【2022-05-17 17:51:54】【执行成功】,【2022-05-17 17:51:54】【执行结束】(耗时:1.829秒)","runTimes":255,"beginTime":"2022-05-01T11:27:51","endTime":"2022-05-31T11:28:01","triggerType":1,"intervalSecond":0,"cycleRunTimes":0,"isStart":true,"jobParams":"1","triggers":[{"jobId":"1","jobName":null,"jobGroup":"管家婆Erp Api对接","triggerId":"1","triggerName":null,"triggerGroup":"管家婆Erp Api对接","triggerStatus":"正常"}],"id":1,"createId":null,"createBy":null,"createTime":"2022-05-11T11:30:00.107","modifyId":1,"modifyBy":"const user","modifyTime":"2022-05-11T13:47:00.027","isDeleted":false}]} + +-------------------------------- +2022/5/17 17:55:42| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=5 + BodyData: + +-------------------------------- +2022/5/17 17:55:42| +Response Data: +{"status":200,"success":false,"msg":"任务不存在","msgDev":null,"response":null} + +-------------------------------- +2022/5/17 17:55:46| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=1 + BodyData: + +-------------------------------- +2022/5/17 17:55:46| +Response Data: +{"status":200,"success":true,"msg":"立即执行计划任务:【测试定时任务1】成功","msgDev":null,"response":null} + +-------------------------------- +2022/5/17 19:37:54| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=1 + BodyData: + +-------------------------------- +2022/5/17 19:37:54| +Response Data: +{"status":200,"success":true,"msg":"立即执行计划任务:【测试定时任务1】成功","msgDev":null,"response":null} + +-------------------------------- +2022/5/17 19:37:56| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=1 + BodyData: + +-------------------------------- +2022/5/17 19:37:56| +Response Data: +{"status":200,"success":true,"msg":"立即执行计划任务:【测试定时任务1】成功","msgDev":null,"response":null} + +-------------------------------- +2022/5/17 20:00:08| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=1 + BodyData: + +-------------------------------- +2022/5/17 20:00:08| +Response Data: +{"status":200,"success":true,"msg":"立即执行计划任务:【测试定时任务1】成功","msgDev":null,"response":null} + +-------------------------------- +2022/5/18 13:44:00| +Request Data: + QueryData:/api/TasksQz/Get?page=1 + BodyData: + +-------------------------------- +2022/5/18 13:44:00| +Response Data: +{"code":200,"success":true,"message":"获取成功","msgDev":null,"data":{"pageIndex":1,"pageSize":20,"pageCount":1,"dataCount":1,"data":[{"name":"测试定时任务1","jobGroup":"管家婆Erp Api对接","cron":"0 0/5 * * * ?","assemblyName":"cjyx.Tasks","className":"Job_Blogs_Quartz","remark":"【2022-05-17 21:00:00】【执行开始】【Id:1,组别:管家婆Erp Api对接】,【2022-05-17 21:00:00】【执行成功】,【2022-05-17 21:00:00】【执行结束】(耗时:0.009秒)","runTimes":282,"beginTime":"2022-05-01T11:27:51","endTime":"2022-05-31T11:28:01","triggerType":1,"intervalSecond":0,"cycleRunTimes":0,"isStart":true,"jobParams":"1","triggers":[{"jobId":"1","jobName":null,"jobGroup":"管家婆Erp Api对接","triggerId":"1","triggerName":null,"triggerGroup":"管家婆Erp Api对接","triggerStatus":"正常"}],"id":1,"createId":null,"createBy":null,"createTime":"2022-05-11T11:30:00.107","modifyId":1,"modifyBy":"const user","modifyTime":"2022-05-11T13:47:00.027","isDeleted":false}]} + +-------------------------------- +2022/5/19 9:11:48| +Request Data: + QueryData:/api/Test/TestMapper + BodyData: + +-------------------------------- +2022/5/19 13:47:44| +Request Data: + QueryData:/api/Test/TestMapper + BodyData: + +-------------------------------- +2022/5/19 13:48:11| +Response Data: +{"code":200,"success":true,"message":"","msgDev":null,"data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":1,"data":null}} + +-------------------------------- +2022/5/19 13:48:52| +Request Data: + QueryData:/api/Test/TestMapper + BodyData: + +-------------------------------- +2022/5/19 13:51:06| +Request Data: + QueryData:/api/Test/TestMapper + BodyData: + +-------------------------------- +2022/5/19 14:47:38| +Request Data: + QueryData:/api/Test/TestMapper + BodyData: + +-------------------------------- +2022/5/19 14:48:01| +Response Data: +{"code":200,"success":true,"message":"","msgDev":null,"data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":1,"data":null}} + +-------------------------------- +2022/5/19 14:48:05| +Request Data: + QueryData:/api/Test/TestMapper + BodyData: + +-------------------------------- +2022/5/19 14:50:32| +Request Data: + QueryData:/api/Test/TestMapper + BodyData: + +-------------------------------- +2022/5/19 14:50:46| +Response Data: +{"code":200,"success":true,"message":"","msgDev":null,"data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":1,"data":[{"name":"测试定时任务1","jobGroup":"管家婆Erp Api对接","cron":"0 0/5 * * * ?","assemblyName":"cjyx.Tasks","className":"Job_Blogs_Quartz","remark":"【2022-05-19 13:55:00】【执行开始】【Id:1,组别:管家婆Erp Api对接】,【2022-05-19 13:55:00】【执行成功】,【2022-05-19 13:55:00】【执行结束】(耗时:0.007秒)","runTimes":284,"beginTime":"2022-05-01T11:27:51","endTime":"2022-05-31T11:28:01","triggerType":1,"intervalSecond":0,"cycleRunTimes":0,"isStart":true,"jobParams":"1","triggers":[]}]} + +-------------------------------- +2022/5/22 12:51:09| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "unitCode": "string", + "unitName": "string", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 12:52:16| +Response Data: +1 + +-------------------------------- +2022/5/22 12:54:17| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "unitHelpCode": "string", + "sort": 0, + "remark": "string", + "Txt1": "aaa", + "Flo1": 32.2311, + } +} + +-------------------------------- +2022/5/22 12:54:17| +Response Data: +{"type":"https://tools.ietf.org/html/rfc7231#section-6.5.1","title":"One or more validation errors occurred.","status":400,"traceId":"00-38d0b090a15f521f3b84ca58a8bc76fe-ee28b7169a55302f-00","errors":{"$.entity":["The JSON object contains a trailing comma at the end which is not supported in this mode. Change the reader options. Path: $.entity | LineNumber: 7 | BytePositionInLine: 2."]} + +-------------------------------- +2022/5/22 12:54:26| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "unitHelpCode": "string", + "sort": 0, + "remark": "string", + "Txt1": "aaa", + "Flo1": 32.2311 + } +} + +-------------------------------- +2022/5/22 12:54:30| +Response Data: +1 + +-------------------------------- +2022/5/22 13:00:24| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + + "txt1": "aaa", + "flo1": 15.356, + "unitCode": "string", + "unitName": "string", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 13:00:24| +Response Data: +1 + +-------------------------------- +2022/5/22 14:34:30| +Request Data: + QueryData:/api/Test/TestUpd + BodyData:{ + "entity": { + "id": 290940609757253, + "txt1": "bbbb" + } +} + +-------------------------------- +2022/5/22 15:38:05| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T07:37:49.095Z", + "txt1": "aaa", + "flo1": 0, + "unitCode": "bbb", + "unitName": "ccc", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 15:38:07| +Response Data: +true + +-------------------------------- +2022/5/22 15:39:02| +Request Data: + QueryData:/api/Test/TestUpd + BodyData:{ + "entity": { + "id": 290940609757253, + "updatedTime": "2022-05-22T07:38:40.845Z", + "txt1": "aa", + "flo1": 99.66, + "unitCode": "bb", + "unitName": "cc" + } +} + +-------------------------------- +2022/5/22 15:39:30| +Response Data: +true + +-------------------------------- +2022/5/22 15:40:39| +Request Data: + QueryData:/api/Test/TestUpd2 + BodyData:{ + "id": 290979372113989, + "updatedTime": "2022-05-22T07:40:30.811Z", + "txt1": "zls", + "flo1": 98 +} + +-------------------------------- +2022/5/22 15:40:39| +Response Data: +true + +-------------------------------- +2022/5/22 15:42:06| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T07:37:49.095Z", + "txt1": "aaa", + "flo1": 0, + "unitCode": "bbb", + "unitName": "ccc", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 15:42:09| +Response Data: +true + +-------------------------------- +2022/5/22 15:42:13| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T07:37:49.095Z", + "txt1": "aaa", + "flo1": 0, + "unitCode": "bbb", + "unitName": "ccc", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 15:42:13| +Response Data: +true + +-------------------------------- +2022/5/22 15:42:14| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T07:37:49.095Z", + "txt1": "aaa", + "flo1": 0, + "unitCode": "bbb", + "unitName": "ccc", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 15:42:14| +Response Data: +true + +-------------------------------- +2022/5/22 15:42:14| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T07:37:49.095Z", + "txt1": "aaa", + "flo1": 0, + "unitCode": "bbb", + "unitName": "ccc", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 15:42:14| +Response Data: +true + +-------------------------------- +2022/5/22 15:42:14| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T07:37:49.095Z", + "txt1": "aaa", + "flo1": 0, + "unitCode": "bbb", + "unitName": "ccc", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 15:42:14| +Response Data: +true + +-------------------------------- +2022/5/22 15:42:14| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T07:37:49.095Z", + "txt1": "aaa", + "flo1": 0, + "unitCode": "bbb", + "unitName": "ccc", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 15:42:14| +Response Data: +true + +-------------------------------- +2022/5/22 15:42:14| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T07:37:49.095Z", + "txt1": "aaa", + "flo1": 0, + "unitCode": "bbb", + "unitName": "ccc", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 15:42:14| +Response Data: +true + +-------------------------------- +2022/5/22 15:42:14| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T07:37:49.095Z", + "txt1": "aaa", + "flo1": 0, + "unitCode": "bbb", + "unitName": "ccc", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 15:42:14| +Response Data: +true + +-------------------------------- +2022/5/22 15:42:14| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T07:37:49.095Z", + "txt1": "aaa", + "flo1": 0, + "unitCode": "bbb", + "unitName": "ccc", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 15:42:14| +Response Data: +true + +-------------------------------- +2022/5/22 15:42:14| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T07:37:49.095Z", + "txt1": "aaa", + "flo1": 0, + "unitCode": "bbb", + "unitName": "ccc", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 15:42:15| +Response Data: +true + +-------------------------------- +2022/5/22 16:32:08| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T08:32:02.754Z", + "txt1": "sfeffff", + "flo1": 0, + "unitCode": "string", + "unitName": "string", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 16:32:08| +Response Data: +{"code":200,"success":true,"message":"成功","msgDev":null,"data":true} + +-------------------------------- +2022/5/22 16:33:58| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T08:33:55.216Z", + "txt1": "dd", + "flo1": 0, + "unitCode": "string", + "unitName": "string", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 16:33:59| +Response Data: +{"code":200,"success":true,"message":"成功","data":true} + +-------------------------------- +2022/5/22 16:34:16| +Request Data: + QueryData:/api/Test/TestUpd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T08:34:15.061Z", + "txt1": "string", + "flo1": 0, + "unitCode": "string", + "unitName": "string", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 16:34:17| +Response Data: +{"code":200,"success":true,"message":"成功","data":false} + +-------------------------------- +2022/5/22 16:38:10| +Request Data: + QueryData:/api/Test/TestDelSoft + BodyData:{ + "id": 0, + "updatedTime": "2022-05-22T08:37:58.327Z" +} + +-------------------------------- +2022/5/22 16:38:10| +Response Data: +{"code":200,"success":true,"message":"成功","data":false} + +-------------------------------- +2022/5/22 16:38:17| +Request Data: + QueryData:/api/Test/TestDelSoft + BodyData:{ + "id": 290993098797125, + "updatedTime": "2022-05-22T08:37:58.327Z" +} + +-------------------------------- +2022/5/22 16:38:17| +Response Data: +{"code":200,"success":true,"message":"成功","data":true} + +-------------------------------- +2022/5/22 16:38:28| +Request Data: + QueryData:/api/Test/TestUpd2 + BodyData:{ + "id": 0, + "updatedTime": "2022-05-22T08:38:26.686Z", + "txt1": "string", + "flo1": 0 +} + +-------------------------------- +2022/5/22 16:38:28| +Response Data: +{"code":200,"success":true,"message":"成功","data":false} + +-------------------------------- +2022/5/22 17:33:40| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T09:33:38.177Z", + "txt1": "string", + "flo1": 0, + "unitCode": "string", + "unitName": "string", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 17:33:41| +Response Data: +{"code":200,"success":true,"message":"成功","data":true} + +-------------------------------- +2022/5/22 17:33:48| +Request Data: + QueryData:/api/Test/TestAdd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T09:33:38.177Z", + "txt1": "string", + "flo1": 0, + "unitCode": "string", + "unitName": "string", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 17:33:48| +Response Data: +{"code":200,"success":true,"message":"成功","data":true} + +-------------------------------- +2022/5/22 17:34:04| +Request Data: + QueryData:/api/Test/TestAddIF + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T09:33:58.641Z", + "txt1": "eeeeee", + "flo1": 0, + "unitCode": "string", + "unitName": "string", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 17:34:04| +Response Data: +{"code":200,"success":true,"message":"成功","data":true} + +-------------------------------- +2022/5/22 17:34:17| +Request Data: + QueryData:/api/Test/TestUpd + BodyData:{ + "entity": { + "id": 0, + "updatedTime": "2022-05-22T09:34:16.350Z", + "txt1": "string", + "flo1": 0, + "unitCode": "string", + "unitName": "string", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 17:34:17| +Response Data: +{"code":200,"success":true,"message":"成功","data":false} + +-------------------------------- +2022/5/22 17:34:50| +Request Data: + QueryData:/api/Test/TestUpd + BodyData:{ + "entity": { + "id": 291007803039813, + "updatedTime": "2022-05-22T09:34:16.350Z", + "txt1": "ddddddddddddddd", + "flo1": 0, + "unitCode": "string", + "unitName": "string", + "unitHelpCode": "string", + "sort": 0, + "remark": "string" + } +} + +-------------------------------- +2022/5/22 17:34:50| +Response Data: +{"code":200,"success":true,"message":"成功","data":true} + +-------------------------------- +2022/5/22 17:35:11| +Request Data: + QueryData:/api/Test/TestUpd2 + BodyData:{ + "id": 291007803039813, + "updatedTime": "2022-05-22T09:35:00.630Z", + "txt1": "ffffff", + "flo1": 2.31 +} + +-------------------------------- +2022/5/22 17:35:11| +Response Data: +{"code":200,"success":true,"message":"成功","data":true} + +-------------------------------- +2022/5/22 17:35:31| +Request Data: + QueryData:/api/Test/TestUpd2 + BodyData:{ + "id": 291007803039813, + "updatedTime": "2022-05-22T09:35:00.630Z", + "txt1": "ffffff", + "flo1": 2.3451511661 +} + +-------------------------------- +2022/5/22 17:35:31| +Response Data: +{"code":200,"success":true,"message":"成功","data":true} + +-------------------------------- +2022/5/22 17:35:58| +Request Data: + QueryData:/api/Test/TestUpdIF + BodyData:{ + "entity": { + "id": 291007865581637, + "updatedTime": "2022-05-22T09:35:42.191Z", + "txt1": "荣荣荣荣荣荣荣荣", + "flo1": 0, + "unitCode": "string", + "unitName": "string", + "unitHelpCode": "string", + "sort": 0, + "remark": "分" + } +} + +-------------------------------- +2022/5/22 17:35:58| +Response Data: +{"code":200,"success":true,"message":"成功","data":true} + +-------------------------------- +2022/5/22 17:36:21| +Request Data: + QueryData:/api/Test/TestUpd2IF + BodyData:{ + "id": 290980384698437, + "updatedTime": "2022-05-22T09:36:10.896Z", + "txt1": "水水水水水水水水色", + "flo1": 1651.65415112 +} + +-------------------------------- +2022/5/22 17:36:21| +Response Data: +{"code":200,"success":true,"message":"成功","data":true} + +-------------------------------- +2022/5/22 17:36:45| +Request Data: + QueryData:/api/Test/TestDelSoft + BodyData:{ + "id": 0, + "updatedTime": "2022-05-22T09:36:42.607Z" +} + +-------------------------------- +2022/5/22 17:36:45| +Response Data: +{"code":200,"success":true,"message":"成功","data":false} + +-------------------------------- +2022/5/22 17:37:09| +Request Data: + QueryData:/api/Test/TestDelSoft + BodyData:{ + "id": 290980383563845, + "updatedTime": "2022-05-22T09:36:42.607Z" +} + +-------------------------------- +2022/5/22 17:37:09| +Response Data: +{"code":200,"success":true,"message":"成功","data":true} + +-------------------------------- +2022/5/22 17:37:33| +Request Data: + QueryData:/api/Test/TestDelSoftIF + BodyData:{ + "id": 0, + "updatedTime": "2022-05-22T09:37:32.065Z" +} + +-------------------------------- +2022/5/22 17:37:33| +Response Data: +{"code":200,"success":true,"message":"成功","data":false} + +-------------------------------- +2022/5/22 17:37:47| +Request Data: + QueryData:/api/Test/TestDelSoftIF + BodyData:{ + "id": 290980384137285, + "updatedTime": "2022-05-22T09:37:32.065Z" +} + +-------------------------------- +2022/5/22 17:37:47| +Response Data: +{"code":200,"success":true,"message":"成功","data":true} + +-------------------------------- +2022/5/22 17:38:03| +Request Data: + QueryData:/api/Test/TestGet + BodyData: + +-------------------------------- +2022/5/22 17:38:03| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"id":null,"updatedTime":null,"txt1":null,"flo1":0,"unitCode":null,"unitName":null,"unitHelpCode":null,"sort":null,"remark":null}} + +-------------------------------- +2022/5/22 17:38:13| +Request Data: + QueryData:/api/Test/TestGet?Id=15 + BodyData: + +-------------------------------- +2022/5/22 17:38:13| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"id":null,"updatedTime":null,"txt1":null,"flo1":0,"unitCode":null,"unitName":null,"unitHelpCode":null,"sort":null,"remark":null}} + +-------------------------------- +2022/5/22 17:38:22| +Request Data: + QueryData:/api/Test/TestGet?Id=291007865581637 + BodyData: + +-------------------------------- +2022/5/22 17:38:22| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"id":291007865581637,"updatedTime":null,"txt1":"荣荣荣荣荣荣荣荣","flo1":0,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"分"}} + +-------------------------------- +2022/5/22 17:38:54| +Request Data: + QueryData:/api/Test/TestGetIf?Id=2 + BodyData: + +-------------------------------- +2022/5/22 17:38:54| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"entity":{"id":null,"updatedTime":null,"txt1":null,"flo1":0,"unitCode":null,"unitName":null,"unitHelpCode":null,"sort":null,"remark":null}} + +-------------------------------- +2022/5/22 17:38:58| +Request Data: + QueryData:/api/Test/TestGetIf + BodyData: + +-------------------------------- +2022/5/22 17:38:58| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"entity":{"id":null,"updatedTime":null,"txt1":null,"flo1":0,"unitCode":null,"unitName":null,"unitHelpCode":null,"sort":null,"remark":null}} + +-------------------------------- +2022/5/22 17:39:01| +Request Data: + QueryData:/api/Test/TestGetIf?Id=291007865581637 + BodyData: + +-------------------------------- +2022/5/22 17:39:01| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"entity":{"id":291007865581637,"updatedTime":null,"txt1":"荣荣荣荣荣荣荣荣","flo1":0,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"分"}} + +-------------------------------- +2022/5/22 20:47:02| +Request Data: + QueryData:/api/Test/TestGet + BodyData: + +-------------------------------- +2022/5/22 20:47:02| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"id":null,"updatedTime":null,"txt1":null,"flo1":0,"unitCode":null,"unitName":null,"unitHelpCode":null,"sort":null,"remark":null}} + +-------------------------------- +2022/5/22 20:47:11| +Request Data: + QueryData:/api/Test/TestGet?Id=290980383060037 + BodyData: + +-------------------------------- +2022/5/22 20:47:11| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"id":290980383060037,"updatedTime":null,"txt1":"aaa","flo1":0,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"11"}} + +-------------------------------- +2022/5/22 20:47:21| +Request Data: + QueryData:/api/Test/TestGetIf?Id=11 + BodyData: + +-------------------------------- +2022/5/22 20:47:21| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"entity":{"id":null,"updatedTime":null,"txt1":null,"flo1":0,"unitCode":null,"unitName":null,"unitHelpCode":null,"sort":null,"remark":null}} + +-------------------------------- +2022/5/22 20:47:28| +Request Data: + QueryData:/api/Test/TestGetIf?Id=290980383060037 + BodyData: + +-------------------------------- +2022/5/22 20:47:28| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"entity":{"id":290980383060037,"updatedTime":null,"txt1":"aaa","flo1":0,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"11"}} + +-------------------------------- +2022/5/22 20:47:45| +Request Data: + QueryData:/api/Test/TestPage + BodyData: + +-------------------------------- +2022/5/22 20:50:46| +Request Data: + QueryData:/api/Test/TestPage + BodyData: + +-------------------------------- +2022/5/22 20:50:46| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"data":[{"id":291007865581637,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"分"},{"id":291007803039813,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"18"},{"id":291007770636357,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"17"},{"id":290993098797125,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"16"},{"id":290992647454789,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"15"},{"id":290980384698437,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"14"},{"id":290980384137285,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"13"},{"id":290980383563845,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"12"},{"id":290980383060037,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"11"},{"id":290980382494789,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"10"},{"id":290980381986885,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"9"},{"id":290980381360197,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"8"},{"id":290980380774469,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"7"},{"id":290980378824773,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"6"},{"id":290980360654917,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"5"},{"id":290979372113989,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"4"},{"id":290940609757253,"updatedTime":null,"unitCode":"bb","unitName":"cc","unitHelpCode":null,"sort":null,"remark":"3"},{"id":290939162210373,"updatedTime":null,"unitCode":null,"unitName":null,"unitHelpCode":"string","sort":0,"remark":"2"},{"id":290938574147653,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"1"}]} + +-------------------------------- +2022/5/22 20:50:56| +Request Data: + QueryData:/api/Test/TestPage?UnitCode=1 + BodyData: + +-------------------------------- +2022/5/22 20:50:56| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"data":[{"id":291007865581637,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"分"},{"id":291007803039813,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"18"},{"id":291007770636357,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"17"},{"id":290993098797125,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"16"},{"id":290992647454789,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"15"},{"id":290980384698437,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"14"},{"id":290980384137285,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"13"},{"id":290980383563845,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"12"},{"id":290980383060037,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"11"},{"id":290980382494789,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"10"},{"id":290980381986885,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"9"},{"id":290980381360197,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"8"},{"id":290980380774469,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"7"},{"id":290980378824773,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"6"},{"id":290980360654917,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"5"},{"id":290979372113989,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"4"},{"id":290940609757253,"updatedTime":null,"unitCode":"bb","unitName":"cc","unitHelpCode":null,"sort":null,"remark":"3"},{"id":290939162210373,"updatedTime":null,"unitCode":null,"unitName":null,"unitHelpCode":"string","sort":0,"remark":"2"},{"id":290938574147653,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"1"}]} + +-------------------------------- +2022/5/22 20:51:12| +Request Data: + QueryData:/api/Test/TestPage?UnitCode=aa + BodyData: + +-------------------------------- +2022/5/22 20:51:12| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"data":[{"id":291007865581637,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"分"},{"id":291007803039813,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"18"},{"id":291007770636357,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"17"},{"id":290993098797125,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"16"},{"id":290992647454789,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"15"},{"id":290980384698437,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"14"},{"id":290980384137285,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"13"},{"id":290980383563845,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"12"},{"id":290980383060037,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"11"},{"id":290980382494789,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"10"},{"id":290980381986885,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"9"},{"id":290980381360197,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"8"},{"id":290980380774469,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"7"},{"id":290980378824773,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"6"},{"id":290980360654917,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"5"},{"id":290979372113989,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"4"},{"id":290940609757253,"updatedTime":null,"unitCode":"bb","unitName":"cc","unitHelpCode":null,"sort":null,"remark":"3"},{"id":290939162210373,"updatedTime":null,"unitCode":null,"unitName":null,"unitHelpCode":"string","sort":0,"remark":"2"},{"id":290938574147653,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"1"}]} + +-------------------------------- +2022/5/22 20:52:06| +Request Data: + QueryData:/api/Test/TestPage?PageIndex=2&PageSize=5&SortField=remark&SortOrder=descending + BodyData: + +-------------------------------- +2022/5/22 20:52:06| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":2,"pageSize":5,"totalPages":4,"totalCount":19,"data":[{"id":290980360654917,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"5"},{"id":290979372113989,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"4"},{"id":290940609757253,"updatedTime":null,"unitCode":"bb","unitName":"cc","unitHelpCode":null,"sort":null,"remark":"3"},{"id":290939162210373,"updatedTime":null,"unitCode":null,"unitName":null,"unitHelpCode":"string","sort":0,"remark":"2"},{"id":291007803039813,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"18"}]} + +-------------------------------- +2022/5/22 20:52:23| +Request Data: + QueryData:/api/Test/TestPage?PageIndex=1&PageSize=5&SortField=remark&SortOrder=descending + BodyData: + +-------------------------------- +2022/5/22 20:52:23| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":5,"totalPages":4,"totalCount":19,"data":[{"id":291007865581637,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"分"},{"id":290980381986885,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"9"},{"id":290980381360197,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"8"},{"id":290980380774469,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"7"},{"id":290980378824773,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"6"}]} + +-------------------------------- +2022/5/22 20:52:37| +Request Data: + QueryData:/api/Test/TestPage?PageIndex=1&PageSize=4&SortField=remark&SortOrder=descending + BodyData: + +-------------------------------- +2022/5/22 20:52:37| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":4,"totalPages":5,"totalCount":19,"data":[{"id":291007865581637,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"分"},{"id":290980381986885,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"9"},{"id":290980381360197,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"8"},{"id":290980380774469,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"7"}]} + +-------------------------------- +2022/5/22 20:52:56| +Request Data: + QueryData:/api/Test/TestPageIF?UnitCode=ww + BodyData: + +-------------------------------- +2022/5/22 20:52:56| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":20,"totalPages":0,"totalCount":0,"data":[]}} + +-------------------------------- +2022/5/22 20:53:29| +Request Data: + QueryData:/api/Test/TestPageIF?UnitCode=ww&SortField=remark&SortOrder=descending + BodyData: + +-------------------------------- +2022/5/22 20:53:29| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":20,"totalPages":0,"totalCount":0,"data":[]}} + +-------------------------------- +2022/5/22 20:53:36| +Request Data: + QueryData:/api/Test/TestPageIF?SortField=remark&SortOrder=descending + BodyData: + +-------------------------------- +2022/5/22 20:53:36| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"data":[{"id":291007865581637,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"分"},{"id":290980381986885,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"9"},{"id":290980381360197,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"8"},{"id":290980380774469,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"7"},{"id":290980378824773,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"6"},{"id":290980360654917,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"5"},{"id":290979372113989,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"4"},{"id":290940609757253,"updatedTime":null,"unitCode":"bb","unitName":"cc","unitHelpCode":null,"sort":null,"remark":"3"},{"id":290939162210373,"updatedTime":null,"unitCode":null,"unitName":null,"unitHelpCode":"string","sort":0,"remark":"2"},{"id":291007803039813,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"18"},{"id":291007770636357,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"17"},{"id":290993098797125,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"16"},{"id":290992647454789,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"15"},{"id":290980384698437,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"14"},{"id":290980384137285,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"13"},{"id":290980383563845,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"12"},{"id":290980383060037,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"11"},{"id":290980382494789,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"10"},{"id":290938574147653,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"1"}]} + +-------------------------------- +2022/5/22 20:53:46| +Request Data: + QueryData:/api/Test/TestPageIF?PageIndex=2&PageSize=5&SortField=remark&SortOrder=descending + BodyData: + +-------------------------------- +2022/5/22 20:53:46| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":2,"pageSize":5,"totalPages":4,"totalCount":19,"data":[{"id":290980360654917,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"5"},{"id":290979372113989,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"4"},{"id":290940609757253,"updatedTime":null,"unitCode":"bb","unitName":"cc","unitHelpCode":null,"sort":null,"remark":"3"},{"id":290939162210373,"updatedTime":null,"unitCode":null,"unitName":null,"unitHelpCode":"string","sort":0,"remark":"2"},{"id":291007803039813,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"18"}]} + +-------------------------------- +2022/5/22 20:54:27| +Request Data: + QueryData:/api/Test/TestPageIF?UnitCode=s&PageIndex=2&PageSize=5&SortField=remark&SortOrder=descending + BodyData: + +-------------------------------- +2022/5/22 20:54:27| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":2,"pageSize":5,"totalPages":2,"totalCount":6,"data":[{"id":290938574147653,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"1"}]} + +-------------------------------- +2022/5/22 20:54:41| +Request Data: + QueryData:/api/Test/TestPageIF?UnitCode=s&PageIndex=2&PageSize=10&SortField=remark&SortOrder=descending + BodyData: + +-------------------------------- +2022/5/22 20:54:41| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":2,"pageSize":10,"totalPages":1,"totalCount":6,"data":[]}} + +-------------------------------- +2022/5/22 20:54:48| +Request Data: + QueryData:/api/Test/TestPageIF?UnitCode=s&PageIndex=1&PageSize=10&SortField=remark&SortOrder=descending + BodyData: + +-------------------------------- +2022/5/22 20:54:48| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":10,"totalPages":1,"totalCount":6,"data":[{"id":291007865581637,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"分"},{"id":291007803039813,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"18"},{"id":291007770636357,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"17"},{"id":290993098797125,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"16"},{"id":290992647454789,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"15"},{"id":290938574147653,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"1"}]} + +-------------------------------- +2022/5/22 20:54:58| +Request Data: + QueryData:/api/Test/TestPageIF?UnitCode=s&PageIndex=2&PageSize=3&SortField=remark&SortOrder=descending + BodyData: + +-------------------------------- +2022/5/22 20:54:58| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":2,"pageSize":3,"totalPages":2,"totalCount":6,"data":[{"id":290993098797125,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"16"},{"id":290992647454789,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"15"},{"id":290938574147653,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"1"}]} + +-------------------------------- +2022/5/22 20:55:14| +Request Data: + QueryData:/api/Test/TestPageIF?UnitCode=s&PageIndex=2&PageSize=4&SortField=remark&SortOrder=descending + BodyData: + +-------------------------------- +2022/5/22 20:55:15| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":2,"pageSize":4,"totalPages":2,"totalCount":6,"data":[{"id":290992647454789,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"15"},{"id":290938574147653,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"1"}]} + +-------------------------------- +2022/5/22 20:59:32| +Request Data: + QueryData:/api/Test/TestPageIF + BodyData: + +-------------------------------- +2022/5/22 20:59:32| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"rows":[{"id":291007865581637,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"分"},{"id":291007803039813,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"18"},{"id":291007770636357,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"17"},{"id":290993098797125,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"16"},{"id":290992647454789,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"15"},{"id":290980384698437,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"14"},{"id":290980384137285,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"13"},{"id":290980383563845,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"12"},{"id":290980383060037,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"11"},{"id":290980382494789,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"10"},{"id":290980381986885,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"9"},{"id":290980381360197,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"8"},{"id":290980380774469,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"7"},{"id":290980378824773,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"6"},{"id":290980360654917,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"5"},{"id":290979372113989,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"4"},{"id":290940609757253,"updatedTime":null,"unitCode":"bb","unitName":"cc","unitHelpCode":null,"sort":null,"remark":"3"},{"id":290939162210373,"updatedTime":null,"unitCode":null,"unitName":null,"unitHelpCode":"string","sort":0,"remark":"2"},{"id":290938574147653,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"1"}]} + +-------------------------------- +2022/5/22 22:59:03| +Request Data: + QueryData:/api/TasksQz/Get?page=1 + BodyData: + +-------------------------------- +2022/5/22 22:59:03| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":50,"totalPages":1,"totalCount":1,"rows":[{"name":"测试定时任务1","jobGroup":"管家婆Erp Api对接","cron":"0 0/5 * * * ?","assemblyName":"cjyx.Tasks","className":"Job_Blogs_Quartz","remark":"【2022-05-22 22:55:00】【执行开始】【Id:1,组别:管家婆Erp Api对接】,【2022-05-22 22:55:00】【执行成功】,【2022-05-22 22:55:00】【执行结束】(耗时:0.001秒)","runTimes":360,"beginTime":"2022-05-01T11:27:51","endTime":"2022-05-31T11:28:01","triggerType":1,"intervalSecond":0,"cycleRunTimes":0,"isStart":true,"jobParams":"1","triggers":[{"jobId":"1","jobName":null,"jobGroup":"管家婆Erp Api对接","triggerId":"1","triggerName":null,"triggerGroup":"管家婆Erp Api对接","triggerStatus":"正常"}],"id":1,"createId":null,"createBy":null,"createTime":"2022-05-11T11:30:00.107","modifyId":1,"modifyBy":"const user","modifyTime":"2022-05-11T13:47:00.027","isDeleted":false}]} + +-------------------------------- +2022/5/22 22:59:16| +Request Data: + QueryData:/api/TasksQz/GetTaskNameSpace + BodyData: + +-------------------------------- +2022/5/22 22:59:16| +Response Data: +{"code":200,"success":true,"message":"获取成功","data":[{"nameSpace":"cjyx.Tasks","nameClass":"Job_Blogs_Quartz","remark":""}]} + +-------------------------------- +2022/5/22 22:59:37| +Request Data: + QueryData:/api/Test/TestPageIF + BodyData: + +-------------------------------- +2022/5/22 22:59:37| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"rows":[{"id":291007865581637,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"分"},{"id":291007803039813,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"18"},{"id":291007770636357,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"17"},{"id":290993098797125,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"16"},{"id":290992647454789,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"15"},{"id":290980384698437,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"14"},{"id":290980384137285,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"13"},{"id":290980383563845,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"12"},{"id":290980383060037,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"11"},{"id":290980382494789,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"10"},{"id":290980381986885,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"9"},{"id":290980381360197,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"8"},{"id":290980380774469,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"7"},{"id":290980378824773,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"6"},{"id":290980360654917,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"5"},{"id":290979372113989,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"4"},{"id":290940609757253,"updatedTime":null,"unitCode":"bb","unitName":"cc","unitHelpCode":null,"sort":null,"remark":"3"},{"id":290939162210373,"updatedTime":null,"unitCode":null,"unitName":null,"unitHelpCode":"string","sort":0,"remark":"2"},{"id":290938574147653,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"1"}]} + +-------------------------------- +2022/5/29 19:26:09| +Request Data: + QueryData:/api/Test/TestPageIF + BodyData: + +-------------------------------- +2022/5/29 19:26:13| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"rows":[{"id":291007865581637,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"分"},{"id":291007803039813,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"18"},{"id":291007770636357,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"17"},{"id":290993098797125,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"16"},{"id":290992647454789,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"15"},{"id":290980384698437,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"14"},{"id":290980384137285,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"13"},{"id":290980383563845,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"12"},{"id":290980383060037,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"11"},{"id":290980382494789,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"10"},{"id":290980381986885,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"9"},{"id":290980381360197,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"8"},{"id":290980380774469,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"7"},{"id":290980378824773,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"6"},{"id":290980360654917,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"5"},{"id":290979372113989,"updatedTime":null,"unitCode":"bbb","unitName":"ccc","unitHelpCode":"string","sort":0,"remark":"4"},{"id":290940609757253,"updatedTime":null,"unitCode":"bb","unitName":"cc","unitHelpCode":null,"sort":null,"remark":"3"},{"id":290939162210373,"updatedTime":null,"unitCode":null,"unitName":null,"unitHelpCode":"string","sort":0,"remark":"2"},{"id":290938574147653,"updatedTime":null,"unitCode":"string","unitName":"string","unitHelpCode":"string","sort":0,"remark":"1"}]} + +-------------------------------- +2022/5/29 19:26:48| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 20:16:32| +Request Data: + QueryData:/api/Test/TestPageIF + BodyData: + +-------------------------------- +2022/5/29 20:16:32| +Response Data: +{"code":200,"success":true,"message":"成功","messageDev":"","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"rows":[{"Id":291007865581637,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"分"},{"Id":291007803039813,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"18"},{"Id":291007770636357,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"17"},{"Id":290993098797125,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"16"},{"Id":290992647454789,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"15"},{"Id":290980384698437,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"14"},{"Id":290980384137285,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"13"},{"Id":290980383563845,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"12"},{"Id":290980383060037,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"11"},{"Id":290980382494789,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"10"},{"Id":290980381986885,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"9"},{"Id":290980381360197,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"8"},{"Id":290980380774469,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"7"},{"Id":290980378824773,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"6"},{"Id":290980360654917,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"5"},{"Id":290979372113989,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"4"},{"Id":290940609757253,"UpdatedTime":null,"UnitCode":"bb","UnitName":"cc","UnitHelpCode":null,"Sort":null,"Remark":"3"},{"Id":290939162210373,"UpdatedTime":null,"UnitCode":null,"UnitName":null,"UnitHelpCode":"string","Sort":0,"Remark":"2"},{"Id":290938574147653,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"1"}]} + +-------------------------------- +2022/5/29 20:16:45| +Request Data: + QueryData:/api/TasksQz/Get?page=1 + BodyData: + +-------------------------------- +2022/5/29 20:16:45| +Response Data: +{"code":200,"success":true,"message":"成功","messageDev":"","data":{"pageIndex":1,"pageSize":50,"totalPages":1,"totalCount":1,"rows":[{"Name":"测试定时任务1","JobGroup":"管家婆Erp Api对接","Cron":"0 0/5 * * * ?","AssemblyName":"zzz.Tasks","ClassName":"Job_Blogs_Quartz","Remark":"【2022-05-29 19:35:00】【执行开始】【Id:1,组别:管家婆Erp Api对接】,【2022-05-29 19:35:00】【执行成功】,【2022-05-29 19:35:00】【执行结束】(耗时:0.002秒)","RunTimes":389,"BeginTime":"2022-05-01 11:27:51","EndTime":"2022-05-31 11:28:01","TriggerType":1,"IntervalSecond":0,"CycleRunTimes":0,"IsStart":true,"JobParams":"1","Triggers":[{"jobId":"1","jobName":null,"jobGroup":"管家婆Erp Api对接","triggerId":"1","triggerName":null,"triggerGroup":"管家婆Erp Api对接","triggerStatus":"正常"}],"Id":1,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-11 11:30:00","ModifyId":1,"ModifyBy":"const user","ModifyTime":"2022-05-11 13:47:00","IsDeleted":false}]} + +-------------------------------- +2022/5/29 20:31:09| +Request Data: + QueryData:/api/Test/TestPageIF + BodyData: + +-------------------------------- +2022/5/29 20:31:09| +Response Data: +{"code":200,"success":true,"message":"成功","messageDev":"","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"rows":[{"Id":291007865581637,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"分"},{"Id":291007803039813,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"18"},{"Id":291007770636357,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"17"},{"Id":290993098797125,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"16"},{"Id":290992647454789,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"15"},{"Id":290980384698437,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"14"},{"Id":290980384137285,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"13"},{"Id":290980383563845,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"12"},{"Id":290980383060037,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"11"},{"Id":290980382494789,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"10"},{"Id":290980381986885,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"9"},{"Id":290980381360197,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"8"},{"Id":290980380774469,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"7"},{"Id":290980378824773,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"6"},{"Id":290980360654917,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"5"},{"Id":290979372113989,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"4"},{"Id":290940609757253,"UpdatedTime":null,"UnitCode":"bb","UnitName":"cc","UnitHelpCode":null,"Sort":null,"Remark":"3"},{"Id":290939162210373,"UpdatedTime":null,"UnitCode":null,"UnitName":null,"UnitHelpCode":"string","Sort":0,"Remark":"2"},{"Id":290938574147653,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"1"}]} + +-------------------------------- +2022/5/29 20:37:07| +Request Data: + QueryData:/api/Test/TestPageIF + BodyData: + +-------------------------------- +2022/5/29 20:37:08| +Response Data: +{"code":200,"success":true,"message":"成功","messageDev":"","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"rows":[{"Id":291007865581637,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"分"},{"Id":291007803039813,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"18"},{"Id":291007770636357,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"17"},{"Id":290993098797125,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"16"},{"Id":290992647454789,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"15"},{"Id":290980384698437,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"14"},{"Id":290980384137285,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"13"},{"Id":290980383563845,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"12"},{"Id":290980383060037,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"11"},{"Id":290980382494789,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"10"},{"Id":290980381986885,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"9"},{"Id":290980381360197,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"8"},{"Id":290980380774469,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"7"},{"Id":290980378824773,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"6"},{"Id":290980360654917,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"5"},{"Id":290979372113989,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"4"},{"Id":290940609757253,"UpdatedTime":null,"UnitCode":"bb","UnitName":"cc","UnitHelpCode":null,"Sort":null,"Remark":"3"},{"Id":290939162210373,"UpdatedTime":null,"UnitCode":null,"UnitName":null,"UnitHelpCode":"string","Sort":0,"Remark":"2"},{"Id":290938574147653,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"1"}]} + +-------------------------------- +2022/5/29 20:37:22| +Request Data: + QueryData:/api/Test/TestPageIF + BodyData: + +-------------------------------- +2022/5/29 20:37:22| +Response Data: +{"code":200,"success":true,"message":"成功","messageDev":"","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"rows":[{"Id":291007865581637,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"分"},{"Id":291007803039813,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"18"},{"Id":291007770636357,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"17"},{"Id":290993098797125,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"16"},{"Id":290992647454789,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"15"},{"Id":290980384698437,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"14"},{"Id":290980384137285,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"13"},{"Id":290980383563845,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"12"},{"Id":290980383060037,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"11"},{"Id":290980382494789,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"10"},{"Id":290980381986885,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"9"},{"Id":290980381360197,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"8"},{"Id":290980380774469,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"7"},{"Id":290980378824773,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"6"},{"Id":290980360654917,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"5"},{"Id":290979372113989,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"4"},{"Id":290940609757253,"UpdatedTime":null,"UnitCode":"bb","UnitName":"cc","UnitHelpCode":null,"Sort":null,"Remark":"3"},{"Id":290939162210373,"UpdatedTime":null,"UnitCode":null,"UnitName":null,"UnitHelpCode":"string","Sort":0,"Remark":"2"},{"Id":290938574147653,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"1"}]} + +-------------------------------- +2022/5/29 20:37:32| +Request Data: + QueryData:/api/Test/TestPageIF + BodyData: + +-------------------------------- +2022/5/29 20:37:32| +Response Data: +{"code":200,"success":true,"message":"成功","messageDev":"","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"rows":[{"Id":291007865581637,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"分"},{"Id":291007803039813,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"18"},{"Id":291007770636357,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"17"},{"Id":290993098797125,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"16"},{"Id":290992647454789,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"15"},{"Id":290980384698437,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"14"},{"Id":290980384137285,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"13"},{"Id":290980383563845,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"12"},{"Id":290980383060037,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"11"},{"Id":290980382494789,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"10"},{"Id":290980381986885,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"9"},{"Id":290980381360197,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"8"},{"Id":290980380774469,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"7"},{"Id":290980378824773,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"6"},{"Id":290980360654917,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"5"},{"Id":290979372113989,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"4"},{"Id":290940609757253,"UpdatedTime":null,"UnitCode":"bb","UnitName":"cc","UnitHelpCode":null,"Sort":null,"Remark":"3"},{"Id":290939162210373,"UpdatedTime":null,"UnitCode":null,"UnitName":null,"UnitHelpCode":"string","Sort":0,"Remark":"2"},{"Id":290938574147653,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"1"}]} + +-------------------------------- +2022/5/29 20:52:58| +Request Data: + QueryData:/api/Test/TestPageIF + BodyData: + +-------------------------------- +2022/5/29 20:52:59| +Response Data: +{"code":200,"success":true,"message":"成功","messageDev":"","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"rows":[{"Id":291007865581637,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"分"},{"Id":291007803039813,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"18"},{"Id":291007770636357,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"17"},{"Id":290993098797125,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"16"},{"Id":290992647454789,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"15"},{"Id":290980384698437,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"14"},{"Id":290980384137285,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"13"},{"Id":290980383563845,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"12"},{"Id":290980383060037,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"11"},{"Id":290980382494789,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"10"},{"Id":290980381986885,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"9"},{"Id":290980381360197,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"8"},{"Id":290980380774469,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"7"},{"Id":290980378824773,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"6"},{"Id":290980360654917,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"5"},{"Id":290979372113989,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"4"},{"Id":290940609757253,"UpdatedTime":null,"UnitCode":"bb","UnitName":"cc","UnitHelpCode":null,"Sort":null,"Remark":"3"},{"Id":290939162210373,"UpdatedTime":null,"UnitCode":null,"UnitName":null,"UnitHelpCode":"string","Sort":0,"Remark":"2"},{"Id":290938574147653,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"1"}]} + +-------------------------------- +2022/5/29 21:27:13| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 21:27:13| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 21:27:30| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 21:27:30| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 21:27:49| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 21:27:49| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 21:31:29| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 21:31:29| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 21:40:40| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 21:40:41| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 21:52:50| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 21:52:50| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 22:52:43| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 22:52:44| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 22:53:02| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 22:53:02| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 22:53:03| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 22:53:03| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 22:54:28| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 22:54:28| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 22:54:30| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 22:54:30| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 23:20:01| +Request Data: + QueryData:/api/TasksQz/Get?page=1 + BodyData: + +-------------------------------- +2022/5/29 23:20:01| +Response Data: +{"code":200,"success":true,"message":"成功","messageDev":"","data":{"pageIndex":1,"pageSize":50,"totalPages":1,"totalCount":1,"rows":[{"Name":"测试定时任务1","JobGroup":"管家婆Erp Api对接","Cron":"0 0/5 * * * ?","AssemblyName":"zzz.Tasks","ClassName":"Job_Blogs_Quartz","Remark":"【2022-05-29 22:25:00】【执行开始】【Id:1,组别:管家婆Erp Api对接】,【2022-05-29 22:25:00】【执行成功】,【2022-05-29 22:25:00】【执行结束】(耗时:0.002秒)","RunTimes":401,"BeginTime":"2022-05-01 11:27:51","EndTime":"2022-05-31 11:28:01","TriggerType":1,"IntervalSecond":0,"CycleRunTimes":0,"IsStart":true,"JobParams":"1","Triggers":[{"jobId":"1","jobName":null,"jobGroup":"管家婆Erp Api对接","triggerId":"1","triggerName":null,"triggerGroup":"管家婆Erp Api对接","triggerStatus":"出错"}],"Id":1,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-11 11:30:00","ModifyId":1,"ModifyBy":"const user","ModifyTime":"2022-05-11 13:47:00","IsDeleted":false}]} + +-------------------------------- +2022/5/29 23:20:21| +Request Data: + QueryData:/api/TasksQz/Get?page=1 + BodyData: + +-------------------------------- +2022/5/29 23:20:21| +Response Data: +{"code":200,"success":true,"message":"成功","messageDev":"","data":{"pageIndex":1,"pageSize":50,"totalPages":1,"totalCount":1,"rows":[{"Name":"测试定时任务1","JobGroup":"管家婆Erp Api对接","Cron":"0 0/5 * * * ?","AssemblyName":"zzz.Tasks","ClassName":"Job_Blogs_Quartz","Remark":"【2022-05-29 22:25:00】【执行开始】【Id:1,组别:管家婆Erp Api对接】,【2022-05-29 22:25:00】【执行成功】,【2022-05-29 22:25:00】【执行结束】(耗时:0.002秒)","RunTimes":401,"BeginTime":"2022-05-01 11:27:51","EndTime":"2022-05-31 11:28:01","TriggerType":1,"IntervalSecond":0,"CycleRunTimes":0,"IsStart":true,"JobParams":"1","Triggers":[{"jobId":"1","jobName":null,"jobGroup":"管家婆Erp Api对接","triggerId":"1","triggerName":null,"triggerGroup":"管家婆Erp Api对接","triggerStatus":"出错"}],"Id":1,"CreateId":null,"CreateBy":null,"CreateTime":"2022-05-11 11:30:00","ModifyId":1,"ModifyBy":"const user","ModifyTime":"2022-05-11 13:47:00","IsDeleted":false}]} + +-------------------------------- +2022/5/29 23:20:33| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 23:20:33| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 23:30:38| +Request Data: + QueryData:/api/Test/TestUseTran + BodyData: + +-------------------------------- +2022/5/29 23:30:38| +Response Data: +{"code":500,"data":null,"message":"An exception was thrown while activating zzz.Services.Sys.Tests.TestServices -> zzz.AOP.zzzLogAOP.","messageDev":" at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)\r\n at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)\r\n at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)\r\n at Autofac.ResolutionExtensions.ResolveOptionalService(IComponentContext context, Service service, IEnumerable`1 parameters)\r\n at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetService(IServiceProvider sp, Type type, Type requiredBy, Boolean isDefaultParameterRequired)\r\n at lambda_method529(Closure , IServiceProvider , Object[] )\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider.<>c__DisplayClass7_0.b__0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/5/29 23:31:07| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 23:31:07| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 23:32:32| +Request Data: + QueryData:/api/Test/TestUseTran + BodyData: + +-------------------------------- +2022/5/29 23:32:32| +Response Data: +{"code":500,"data":null,"message":"An exception was thrown while activating zzz.Services.Sys.Tests.TestServices -> zzz.AOP.zzzLogAOP.","messageDev":" at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)\r\n at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)\r\n at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)\r\n at Autofac.ResolutionExtensions.ResolveOptionalService(IComponentContext context, Service service, IEnumerable`1 parameters)\r\n at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetService(IServiceProvider sp, Type type, Type requiredBy, Boolean isDefaultParameterRequired)\r\n at lambda_method529(Closure , IServiceProvider , Object[] )\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider.<>c__DisplayClass7_0.b__0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/5/29 23:32:39| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 23:32:39| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 23:34:59| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 23:35:00| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 23:35:07| +Request Data: + QueryData:/api/Test/TestUseTran + BodyData: + +-------------------------------- +2022/5/29 23:35:07| +Response Data: +{"code":500,"data":null,"message":"An exception was thrown while activating zzz.Services.Sys.Tests.TestServices -> zzz.AOP.zzzLogAOP.>>>>>堆栈信息: at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)\r\n at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)\r\n at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)\r\n at Autofac.ResolutionExtensions.ResolveOptionalService(IComponentContext context, Service service, IEnumerable`1 parameters)\r\n at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetService(IServiceProvider sp, Type type, Type requiredBy, Boolean isDefaultParameterRequired)\r\n at lambda_method534(Closure , IServiceProvider , Object[] )\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider.<>c__DisplayClass7_0.b__0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/5/29 23:38:31| +Request Data: + QueryData:/api/Test/TestUseTran + BodyData: + +-------------------------------- +2022/5/29 23:39:04| +Response Data: +{"code":500,"data":null,"message":"An exception was thrown while activating zzz.Services.Sys.Tests.TestServices -> zzz.AOP.zzzLogAOP.>>>>>堆栈信息: at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)\r\n at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)\r\n at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)\r\n at Autofac.ResolutionExtensions.ResolveOptionalService(IComponentContext context, Service service, IEnumerable`1 parameters)\r\n at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetService(IServiceProvider sp, Type type, Type requiredBy, Boolean isDefaultParameterRequired)\r\n at lambda_method534(Closure , IServiceProvider , Object[] )\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider.<>c__DisplayClass7_0.b__0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/5/29 23:41:33| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 23:41:33| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 23:41:57| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 23:42:12| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 23:42:24| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/29 23:42:27| +Response Data: +成功调用Api接口 + +-------------------------------- +2022/5/29 23:42:39| +Request Data: + QueryData:/api/Test/TestUseTran + BodyData: + +-------------------------------- +2022/5/29 23:44:16| +Response Data: +{"code":500,"data":null,"message":"An exception was thrown while activating zzz.Services.Sys.Tests.TestServices -> zzz.AOP.zzzLogAOP.>>>>>堆栈信息: at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)\r\n at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)\r\n at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)\r\n at Autofac.ResolutionExtensions.ResolveOptionalService(IComponentContext context, Service service, IEnumerable`1 parameters)\r\n at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetService(IServiceProvider sp, Type type, Type requiredBy, Boolean isDefaultParameterRequired)\r\n at lambda_method532(Closure , IServiceProvider , Object[] )\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider.<>c__DisplayClass7_0.b__0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/5/29 23:44:23| +Request Data: + QueryData:/api/Test/TestUseTran + BodyData: + +-------------------------------- +2022/5/29 23:44:41| +Response Data: +{"code":500,"data":null,"message":"An exception was thrown while activating zzz.Services.Sys.Tests.TestServices -> zzz.AOP.zzzLogAOP.>>>>>堆栈信息: at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)\r\n at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)\r\n at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)\r\n at Autofac.ResolutionExtensions.ResolveOptionalService(IComponentContext context, Service service, IEnumerable`1 parameters)\r\n at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetService(IServiceProvider sp, Type type, Type requiredBy, Boolean isDefaultParameterRequired)\r\n at lambda_method544(Closure , IServiceProvider , Object[] )\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider.<>c__DisplayClass7_0.b__0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/5/29 23:45:15| +Request Data: + QueryData:/api/Test/TestUseTran + BodyData: + +-------------------------------- +2022/5/29 23:46:14| +Response Data: +{"code":500,"data":null,"message":"An exception was thrown while activating zzz.Services.Sys.Tests.TestServices -> zzz.AOP.zzzLogAOP.>>>>>堆栈信息: at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)\r\n at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)\r\n at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)\r\n at Autofac.ResolutionExtensions.ResolveOptionalService(IComponentContext context, Service service, IEnumerable`1 parameters)\r\n at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetService(IServiceProvider sp, Type type, Type requiredBy, Boolean isDefaultParameterRequired)\r\n at lambda_method531(Closure , IServiceProvider , Object[] )\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider.<>c__DisplayClass7_0.b__0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/5/29 23:46:19| +Request Data: + QueryData:/api/Test/TestUseTran + BodyData: + +-------------------------------- +2022/5/29 23:46:39| +Response Data: +{"code":500,"data":null,"message":"An exception was thrown while activating zzz.Services.Sys.Tests.TestServices -> zzz.AOP.zzzLogAOP.>>>>>堆栈信息: at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)\r\n at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)\r\n at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)\r\n at Autofac.ResolutionExtensions.ResolveOptionalService(IComponentContext context, Service service, IEnumerable`1 parameters)\r\n at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetService(IServiceProvider sp, Type type, Type requiredBy, Boolean isDefaultParameterRequired)\r\n at lambda_method531(Closure , IServiceProvider , Object[] )\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider.<>c__DisplayClass7_0.b__0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/5/29 23:47:27| +Request Data: + QueryData:/api/Test/TestUseTran + BodyData: + +-------------------------------- +2022/5/29 23:47:28| +Response Data: +{"code":500,"data":null,"message":"An exception was thrown while activating zzz.Services.Sys.Tests.TestServices -> zzz.AOP.zzzLogAOP.>>>>>堆栈信息: at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)\r\n at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)\r\n at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)\r\n at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)\r\n at Autofac.ResolutionExtensions.ResolveOptionalService(IComponentContext context, Service service, IEnumerable`1 parameters)\r\n at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.GetService(IServiceProvider sp, Type type, Type requiredBy, Boolean isDefaultParameterRequired)\r\n at lambda_method531(Closure , IServiceProvider , Object[] )\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerActivatorProvider.<>c__DisplayClass7_0.b__0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/5/29 23:48:45| +Request Data: + QueryData:/api/Test/TestUseTran + BodyData: + +-------------------------------- +2022/5/29 23:48:54| +Response Data: +看看是否拦截到 + +-------------------------------- +2022/5/29 23:49:03| +Request Data: + QueryData:/api/Test/TestUseTran + BodyData: + +-------------------------------- +2022/5/29 23:49:34| +Response Data: +看看是否拦截到 + +-------------------------------- +2022/5/29 23:49:38| +Request Data: + QueryData:/api/Test/TestUseTran + BodyData: + +-------------------------------- +2022/5/29 23:49:49| +Response Data: +看看是否拦截到 + +-------------------------------- +2022/5/29 23:49:52| +Request Data: + QueryData:/api/Test/TestUseTran + BodyData: + +-------------------------------- +2022/5/29 23:49:57| +Response Data: +看看是否拦截到 + +-------------------------------- +2022/5/29 23:52:00| +Request Data: + QueryData:/api/Test/TestPageIF + BodyData: + +-------------------------------- +2022/5/29 23:52:15| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"rows":[{"Id":291007865581637,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"分"},{"Id":291007803039813,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"18"},{"Id":291007770636357,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"17"},{"Id":290993098797125,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"16"},{"Id":290992647454789,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"15"},{"Id":290980384698437,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"14"},{"Id":290980384137285,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"13"},{"Id":290980383563845,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"12"},{"Id":290980383060037,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"11"},{"Id":290980382494789,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"10"},{"Id":290980381986885,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"9"},{"Id":290980381360197,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"8"},{"Id":290980380774469,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"7"},{"Id":290980378824773,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"6"},{"Id":290980360654917,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"5"},{"Id":290979372113989,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"4"},{"Id":290940609757253,"UpdatedTime":null,"UnitCode":"bb","UnitName":"cc","UnitHelpCode":null,"Sort":null,"Remark":"3"},{"Id":290939162210373,"UpdatedTime":null,"UnitCode":null,"UnitName":null,"UnitHelpCode":"string","Sort":0,"Remark":"2"},{"Id":290938574147653,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"1"}]} + +-------------------------------- +2022/5/29 23:52:19| +Request Data: + QueryData:/api/Test/TestPageIF + BodyData: + +-------------------------------- +2022/5/29 23:52:20| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"rows":[{"Id":291007865581637,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"分"},{"Id":291007803039813,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"18"},{"Id":291007770636357,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"17"},{"Id":290993098797125,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"16"},{"Id":290992647454789,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"15"},{"Id":290980384698437,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"14"},{"Id":290980384137285,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"13"},{"Id":290980383563845,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"12"},{"Id":290980383060037,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"11"},{"Id":290980382494789,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"10"},{"Id":290980381986885,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"9"},{"Id":290980381360197,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"8"},{"Id":290980380774469,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"7"},{"Id":290980378824773,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"6"},{"Id":290980360654917,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"5"},{"Id":290979372113989,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"4"},{"Id":290940609757253,"UpdatedTime":null,"UnitCode":"bb","UnitName":"cc","UnitHelpCode":null,"Sort":null,"Remark":"3"},{"Id":290939162210373,"UpdatedTime":null,"UnitCode":null,"UnitName":null,"UnitHelpCode":"string","Sort":0,"Remark":"2"},{"Id":290938574147653,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"1"}]} + +-------------------------------- +2022/5/29 23:52:22| +Request Data: + QueryData:/api/Test/TestPageIF + BodyData: + +-------------------------------- +2022/5/29 23:52:22| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"rows":[{"Id":291007865581637,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"分"},{"Id":291007803039813,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"18"},{"Id":291007770636357,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"17"},{"Id":290993098797125,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"16"},{"Id":290992647454789,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"15"},{"Id":290980384698437,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"14"},{"Id":290980384137285,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"13"},{"Id":290980383563845,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"12"},{"Id":290980383060037,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"11"},{"Id":290980382494789,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"10"},{"Id":290980381986885,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"9"},{"Id":290980381360197,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"8"},{"Id":290980380774469,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"7"},{"Id":290980378824773,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"6"},{"Id":290980360654917,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"5"},{"Id":290979372113989,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"4"},{"Id":290940609757253,"UpdatedTime":null,"UnitCode":"bb","UnitName":"cc","UnitHelpCode":null,"Sort":null,"Remark":"3"},{"Id":290939162210373,"UpdatedTime":null,"UnitCode":null,"UnitName":null,"UnitHelpCode":"string","Sort":0,"Remark":"2"},{"Id":290938574147653,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"1"}]} + +-------------------------------- +2022/5/29 23:52:30| +Request Data: + QueryData:/api/Test/TestPageIF + BodyData: + +-------------------------------- +2022/5/29 23:57:55| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":20,"totalPages":1,"totalCount":19,"rows":[{"Id":291007865581637,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"分"},{"Id":291007803039813,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"18"},{"Id":291007770636357,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"17"},{"Id":290993098797125,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"16"},{"Id":290992647454789,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"15"},{"Id":290980384698437,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"14"},{"Id":290980384137285,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"13"},{"Id":290980383563845,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"12"},{"Id":290980383060037,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"11"},{"Id":290980382494789,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"10"},{"Id":290980381986885,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"9"},{"Id":290980381360197,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"8"},{"Id":290980380774469,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"7"},{"Id":290980378824773,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"6"},{"Id":290980360654917,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"5"},{"Id":290979372113989,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"4"},{"Id":290940609757253,"UpdatedTime":null,"UnitCode":"bb","UnitName":"cc","UnitHelpCode":null,"Sort":null,"Remark":"3"},{"Id":290939162210373,"UpdatedTime":null,"UnitCode":null,"UnitName":null,"UnitHelpCode":"string","Sort":0,"Remark":"2"},{"Id":290938574147653,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"1"}]} + +-------------------------------- +2022/5/29 23:58:03| +Request Data: + QueryData:/api/ApiActive/KeepActive + BodyData: + +-------------------------------- +2022/5/30 21:19:07| +Request Data: + QueryData:/api/Test/TestPageIF?PageSize=10 + BodyData: + +-------------------------------- +2022/5/30 21:19:10| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"pageIndex":1,"pageSize":10,"totalPages":2,"totalCount":19,"rows":[{"Id":291007865581637,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"分"},{"Id":291007803039813,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"18"},{"Id":291007770636357,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"17"},{"Id":290993098797125,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"16"},{"Id":290992647454789,"UpdatedTime":null,"UnitCode":"string","UnitName":"string","UnitHelpCode":"string","Sort":0,"Remark":"15"},{"Id":290980384698437,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"14"},{"Id":290980384137285,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"13"},{"Id":290980383563845,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"12"},{"Id":290980383060037,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"11"},{"Id":290980382494789,"UpdatedTime":null,"UnitCode":"bbb","UnitName":"ccc","UnitHelpCode":"string","Sort":0,"Remark":"10"}]} + +-------------------------------- +2022/6/1 15:40:22| +Request Data: + QueryData:/api/Test/TestRead13 + BodyData:{ + "eqmt_id": 1, + "ip": "183.129.248.194", + "port": [ + 6010 + ] +} + +-------------------------------- +2022/6/1 15:58:09| +Request Data: + QueryData:/api/Test/TestRead13 + BodyData:{ + "eqmt_id": 1, + "ip": "183.129.248.194", + "port": [ + 6010 + ] +} + +-------------------------------- +2022/6/1 16:08:50| +Request Data: + QueryData:/api/Test/TestRead13 + BodyData:{ + "eqmt_id": 1, + "ip": "183.129.248.194", + "port": [ + 6010 + ] +} + +-------------------------------- +2022/6/1 16:17:42| +Request Data: + QueryData:/api/Test/TestRead13 + BodyData:{ + "eqmt_id": 1, + "ip": "183.129.248.194", + "port": [ + 6010 + ] +} + +-------------------------------- +2022/6/2 8:20:07| +Request Data: + QueryData:/api/Test/TestRead13 + BodyData:{ + "eqmt_id": 1, + "ip": "183.129.248.194", + "port": [ + 6010 + ] +} + +-------------------------------- +2022/6/2 9:10:06| +Request Data: + QueryData:/api/Test/TestRead13 + BodyData:{ + "eqmt_id": 1, + "ip": "183.129.248.194", + "port": [ + 6010 + ] +} + +-------------------------------- +2022/6/2 9:12:19| +Request Data: + QueryData:/api/Test/TestRead13 + BodyData:{ + "eqmt_id": 1, + "ip": "183.129.248.194", + "port": [ + 6010 + ] +} + +-------------------------------- +2022/6/2 9:13:56| +Request Data: + QueryData:/api/Test/TestRead13 + BodyData:{ + "eqmt_id": 1, + "ip": "183.129.248.194", + "port": [ + 6010 + ] +} + +-------------------------------- +2022/6/2 9:16:22| +Request Data: + QueryData:/api/Test/TestRead13 + BodyData:{ + "eqmt_id": 1, + "ip": "183.129.248.194", + "port": [ + 6010 + ] +} + +-------------------------------- +2022/6/2 9:22:40| +Request Data: + QueryData:/api/Test/TestRead13 + BodyData:{ + "eqmt_id": 1, + "ip": "183.129.248.194", + "port": [ + 6010 + ] +} + +-------------------------------- +2022/6/2 9:58:08| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=13 + BodyData: + +-------------------------------- +2022/6/2 9:58:09| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【13线数据采集】成功","data":null} + +-------------------------------- +2022/6/2 9:59:18| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=13 + BodyData: + +-------------------------------- +2022/6/2 9:59:18| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【13线数据采集】成功","data":null} + +-------------------------------- +2022/6/2 10:02:44| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=13 + BodyData: + +-------------------------------- +2022/6/2 10:02:44| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【13线数据采集】成功","data":null} + +-------------------------------- +2022/6/2 10:03:26| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=13 + BodyData: + +-------------------------------- +2022/6/2 10:03:26| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【13线数据采集】成功","data":null} + +-------------------------------- +2022/6/2 13:43:46| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=13 + BodyData: + +-------------------------------- +2022/6/2 13:43:46| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【13线数据采集】成功","data":null} + +-------------------------------- +2022/6/2 13:46:00| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=13 + BodyData: + +-------------------------------- +2022/6/2 13:46:01| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【13线数据采集】成功","data":null} + +-------------------------------- +2022/6/3 14:01:00| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=13 + BodyData: + +-------------------------------- +2022/6/3 14:01:26| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【13线数据采集】成功","data":null} + +-------------------------------- +2022/6/3 14:03:26| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/3 14:03:26| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/3 14:16:22| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/3 14:16:22| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/3 14:21:31| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/3 14:21:31| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/3 14:26:43| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=13 + BodyData: + +-------------------------------- +2022/6/3 14:26:43| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【13线数据采集】成功","data":null} + +-------------------------------- +2022/6/3 14:26:54| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/3 14:26:54| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/3 16:17:14| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/3 16:17:14| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/7 14:03:34| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=13 + BodyData: + +-------------------------------- +2022/6/7 14:03:35| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【13线数据采集】成功","data":null} + +-------------------------------- +2022/6/7 14:05:02| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/7 14:05:02| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/7 14:12:01| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/7 14:12:01| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/7 14:13:34| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=13 + BodyData: + +-------------------------------- +2022/6/7 14:13:34| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【13线数据采集】成功","data":null} + +-------------------------------- +2022/6/7 14:13:39| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=19 + BodyData: + +-------------------------------- +2022/6/7 14:13:39| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【19线数据采集】成功","data":null} + +-------------------------------- +2022/6/7 14:17:11| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/7 14:17:11| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/7 14:21:56| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/7 14:21:56| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/7 14:22:15| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=19 + BodyData: + +-------------------------------- +2022/6/7 14:22:15| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【19线数据采集】成功","data":null} + +-------------------------------- +2022/6/7 14:24:25| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/7 14:24:25| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/7 15:55:46| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=13 + BodyData: + +-------------------------------- +2022/6/7 15:55:46| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【13线数据采集】成功","data":null} + +-------------------------------- +2022/6/7 15:55:49| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=16 + BodyData: + +-------------------------------- +2022/6/7 15:55:49| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【16线数据采集】成功","data":null} + +-------------------------------- +2022/6/7 15:55:52| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=17 + BodyData: + +-------------------------------- +2022/6/7 15:55:52| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【17线数据采集】成功","data":null} + +-------------------------------- +2022/6/7 15:56:04| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/7 15:56:05| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/7 15:56:07| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=19 + BodyData: + +-------------------------------- +2022/6/7 15:56:07| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【19线数据采集】成功","data":null} + +-------------------------------- +2022/6/9 14:34:24| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=13 + BodyData: + +-------------------------------- +2022/6/9 14:34:24| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【13线数据采集】成功","data":null} + +-------------------------------- +2022/6/9 14:34:28| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=16 + BodyData: + +-------------------------------- +2022/6/9 14:34:28| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【16线数据采集】成功","data":null} + +-------------------------------- +2022/6/9 14:34:30| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=17 + BodyData: + +-------------------------------- +2022/6/9 14:34:30| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【17线数据采集】成功","data":null} + +-------------------------------- +2022/6/9 14:34:34| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/9 14:34:35| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/9 14:34:37| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=19 + BodyData: + +-------------------------------- +2022/6/9 14:34:37| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【19线数据采集】成功","data":null} + +-------------------------------- +2022/6/9 14:42:07| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=19 + BodyData: + +-------------------------------- +2022/6/9 14:42:07| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【19线数据采集】成功","data":null} + +-------------------------------- +2022/6/9 14:51:35| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/9 14:51:35| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/9 15:16:41| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=13 + BodyData: + +-------------------------------- +2022/6/9 15:16:42| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【13线数据采集】成功","data":null} + +-------------------------------- +2022/6/9 15:16:46| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=16 + BodyData: + +-------------------------------- +2022/6/9 15:16:46| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【16线数据采集】成功","data":null} + +-------------------------------- +2022/6/9 15:16:49| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=17 + BodyData: + +-------------------------------- +2022/6/9 15:16:49| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【17线数据采集】成功","data":null} + +-------------------------------- +2022/6/9 15:16:53| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/9 15:16:53| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/9 15:17:18| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=19 + BodyData: + +-------------------------------- +2022/6/9 15:17:18| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【19线数据采集】成功","data":null} + +-------------------------------- +2022/6/9 15:17:44| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=19 + BodyData: + +-------------------------------- +2022/6/9 15:17:44| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【19线数据采集】成功","data":null} + +-------------------------------- +2022/6/23 11:32:18| +Request Data: + QueryData:/api/TasksQz/ExecuteJob?jobId=17 + BodyData: + +-------------------------------- +2022/6/23 11:32:18| +Response Data: +{"code":200,"success":false,"message":"任务不存在","data":null} + +-------------------------------- +2022/6/23 11:32:31| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=17 + BodyData: + +-------------------------------- +2022/6/23 11:32:31| +Response Data: +{"code":200,"success":false,"message":"任务不存在","data":null} + +-------------------------------- +2022/6/23 11:33:17| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=17 + BodyData: + +-------------------------------- +2022/6/23 11:33:18| +Response Data: +{"code":200,"success":false,"message":"任务不存在","data":null} + +-------------------------------- +2022/6/23 11:34:29| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/23 11:34:29| +Response Data: +{"code":200,"success":false,"message":"任务不存在","data":null} + +-------------------------------- +2022/6/23 13:39:01| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=17 + BodyData: + +-------------------------------- +2022/6/23 13:39:01| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【17线数据采集】成功","data":null} + +-------------------------------- +2022/6/23 13:39:33| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=17 + BodyData: + +-------------------------------- +2022/6/23 13:39:33| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【17线数据采集】成功","data":null} + +-------------------------------- +2022/6/23 13:54:44| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=17 + BodyData: + +-------------------------------- +2022/6/23 13:54:45| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【17线数据采集】成功","data":null} + +-------------------------------- +2022/6/23 14:20:51| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=16 + BodyData: + +-------------------------------- +2022/6/23 14:20:51| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【16线数据采集】成功","data":null} + +-------------------------------- +2022/6/23 14:20:53| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=17 + BodyData: + +-------------------------------- +2022/6/23 14:20:54| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【17线数据采集】成功","data":null} + +-------------------------------- +2022/6/23 14:21:03| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/23 14:21:03| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/23 14:21:18| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=19 + BodyData: + +-------------------------------- +2022/6/23 14:21:18| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【19线数据采集】成功","data":null} + +-------------------------------- +2022/6/23 14:32:58| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=17 + BodyData: + +-------------------------------- +2022/6/23 14:32:58| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【17线数据采集】成功","data":null} + +-------------------------------- +2022/6/23 14:44:00| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=13 + BodyData: + +-------------------------------- +2022/6/23 14:44:00| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【13线数据采集】成功","data":null} + +-------------------------------- +2022/6/23 14:44:03| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=16 + BodyData: + +-------------------------------- +2022/6/23 14:44:03| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【16线数据采集】成功","data":null} + +-------------------------------- +2022/6/23 14:44:05| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=17 + BodyData: + +-------------------------------- +2022/6/23 14:44:05| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【17线数据采集】成功","data":null} + +-------------------------------- +2022/6/23 14:44:08| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/23 14:44:08| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/6/23 14:44:10| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=19 + BodyData: + +-------------------------------- +2022/6/23 14:44:11| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【19线数据采集】成功","data":null} + +-------------------------------- +2022/6/23 16:05:50| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=17 + BodyData: + +-------------------------------- +2022/6/23 16:05:50| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【17线数据采集】成功","data":null} + +-------------------------------- +2022/6/29 10:47:56| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=16 + BodyData: + +-------------------------------- +2022/6/29 10:47:56| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【16线数据采集】成功","data":null} + +-------------------------------- +2022/6/29 10:48:41| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=17 + BodyData: + +-------------------------------- +2022/6/29 10:48:41| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【17线数据采集】成功","data":null} + +-------------------------------- +2022/6/29 10:52:56| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/6/29 10:52:56| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/7/5 10:01:03| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=13 + BodyData: + +-------------------------------- +2022/7/5 10:01:03| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【13线数据采集】成功","data":null} + +-------------------------------- +2022/7/5 10:02:16| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=16 + BodyData: + +-------------------------------- +2022/7/5 10:02:16| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【16线数据采集】成功","data":null} + +-------------------------------- +2022/7/5 10:02:58| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=17 + BodyData: + +-------------------------------- +2022/7/5 10:02:58| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【17线数据采集】成功","data":null} + +-------------------------------- +2022/7/5 10:04:36| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/7/5 10:04:36| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/7/8 10:20:46| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/7/8 10:20:46| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/7/8 10:26:01| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/7/8 10:26:01| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/7/8 11:12:22| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/7/8 11:12:22| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/7/8 11:24:04| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/7/8 11:24:05| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/7/8 11:26:17| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/7/8 11:26:17| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/7/11 10:59:14| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/7/11 10:59:15| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/7/11 11:02:13| +Request Data: + QueryData:/api/ApiActive/ExecuteJob?jobId=18 + BodyData: + +-------------------------------- +2022/7/11 11:02:14| +Response Data: +{"code":200,"success":true,"message":"立即执行计划任务:【18线数据采集】成功","data":null} + +-------------------------------- +2022/7/11 17:16:49| +Request Data: + QueryData:/api/BigScreen/getPlanOrderList + BodyData: + +-------------------------------- +2022/7/11 17:16:50| +Response Data: +{"code":500,"data":null,"message":"Incorrect number of arguments supplied for call to method 'zzz.Services.ERP.Dtos.plan_order_output get_Item(Int32)' (Parameter 'property')>>>>>堆栈信息: at System.Linq.Expressions.Expression.Property(Expression expression, PropertyInfo property)\r\n at AutoMapper.Execution.TypeMapPlanBuilder.CreatePropertyMapFunc(MemberMap memberMap, Expression destination, MemberInfo destinationMember)\r\n at AutoMapper.Execution.TypeMapPlanBuilder.CreateAssignmentFunc(Expression createDestination)\r\n at AutoMapper.Execution.TypeMapPlanBuilder.CreateMapperLambda(HashSet`1 typeMapsPath)\r\n at AutoMapper.TypeMap.Seal(IGlobalConfiguration configurationProvider, HashSet`1 typeMapsPath)\r\n at AutoMapper.MapperConfiguration.Seal()\r\n at AutoMapper.MapperConfiguration..ctor(MapperConfigurationExpression configurationExpression)\r\n at AutoMapper.MapperConfiguration..ctor(Action`1 configure)\r\n at zzz.Common.Helper.AutoMapperExtension.MapTo[TIn,TOut](TIn source) in D:\\work\\长江云息\\余宏企业\\Src\\YuhongPlcRead\\zzz.Common\\Helper\\AutoMapperHelper.cs:line 22\r\n at zzz.Api.Controllers.BigScreenController.getPlanOrderList() in D:\\work\\长江云息\\余宏企业\\Src\\YuhongPlcRead\\zzz.Api\\Controllers\\BigScreenController.cs:line 45\r\n at lambda_method525(Closure , Object )\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/7/12 8:19:33| +Request Data: + QueryData:/api/BigScreen/getPlanOrderList + BodyData: + +-------------------------------- +2022/7/12 8:19:55| +Response Data: +{"code":500,"data":null,"message":"Incorrect number of arguments supplied for call to method 'zzz.Services.ERP.Dtos.plan_order_output get_Item(Int32)' (Parameter 'property')>>>>>堆栈信息: at System.Linq.Expressions.Expression.Property(Expression expression, PropertyInfo property)\r\n at AutoMapper.Execution.TypeMapPlanBuilder.CreatePropertyMapFunc(MemberMap memberMap, Expression destination, MemberInfo destinationMember)\r\n at AutoMapper.Execution.TypeMapPlanBuilder.CreateAssignmentFunc(Expression createDestination)\r\n at AutoMapper.Execution.TypeMapPlanBuilder.CreateMapperLambda(HashSet`1 typeMapsPath)\r\n at AutoMapper.TypeMap.Seal(IGlobalConfiguration configurationProvider, HashSet`1 typeMapsPath)\r\n at AutoMapper.MapperConfiguration.Seal()\r\n at AutoMapper.MapperConfiguration..ctor(MapperConfigurationExpression configurationExpression)\r\n at AutoMapper.MapperConfiguration..ctor(Action`1 configure)\r\n at zzz.Common.Helper.AutoMapperExtension.MapTo[TIn,TOut](TIn source) in D:\\work\\长江云息\\余宏企业\\Src\\YuhongPlcRead\\zzz.Common\\Helper\\AutoMapperHelper.cs:line 22\r\n at zzz.Api.Controllers.BigScreenController.getPlanOrderList() in D:\\work\\长江云息\\余宏企业\\Src\\YuhongPlcRead\\zzz.Api\\Controllers\\BigScreenController.cs:line 45\r\n at lambda_method525(Closure , Object )\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/7/12 8:26:12| +Request Data: + QueryData:/api/BigScreen/getPlanOrderList + BodyData: + +-------------------------------- +2022/7/12 8:35:49| +Request Data: + QueryData:/api/BigScreen/getPlanOrderList + BodyData: + +-------------------------------- +2022/7/12 8:35:55| +Response Data: +{"code":500,"data":null,"message":"Incorrect number of arguments supplied for call to method 'zzz.Services.ERP.Dtos.plan_order_output get_Item(Int32)' (Parameter 'property')>>>>>堆栈信息: at System.Linq.Expressions.Expression.Property(Expression expression, PropertyInfo property)\r\n at AutoMapper.Execution.TypeMapPlanBuilder.CreatePropertyMapFunc(MemberMap memberMap, Expression destination, MemberInfo destinationMember)\r\n at AutoMapper.Execution.TypeMapPlanBuilder.CreateAssignmentFunc(Expression createDestination)\r\n at AutoMapper.Execution.TypeMapPlanBuilder.CreateMapperLambda(HashSet`1 typeMapsPath)\r\n at AutoMapper.TypeMap.Seal(IGlobalConfiguration configurationProvider, HashSet`1 typeMapsPath)\r\n at AutoMapper.MapperConfiguration.Seal()\r\n at AutoMapper.MapperConfiguration..ctor(MapperConfigurationExpression configurationExpression)\r\n at AutoMapper.MapperConfiguration..ctor(Action`1 configure)\r\n at zzz.Common.Helper.AutoMapperExtension.MapTo[TIn,TOut](TIn source) in D:\\work\\长江云息\\余宏企业\\Src\\YuhongPlcRead\\zzz.Common\\Helper\\AutoMapperHelper.cs:line 22\r\n at zzz.Api.Controllers.BigScreenController.getPlanOrderList() in D:\\work\\长江云息\\余宏企业\\Src\\YuhongPlcRead\\zzz.Api\\Controllers\\BigScreenController.cs:line 45\r\n at lambda_method524(Closure , Object )\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/7/12 8:38:34| +Request Data: + QueryData:/api/BigScreen/getPlanOrderList + BodyData: + +-------------------------------- +2022/7/12 8:38:39| +Response Data: +{"code":500,"data":null,"message":"Incorrect number of arguments supplied for call to method 'zzz.Services.ERP.Dtos.plan_order_output get_Item(Int32)' (Parameter 'property')>>>>>堆栈信息: at System.Linq.Expressions.Expression.Property(Expression expression, PropertyInfo property)\r\n at AutoMapper.Execution.TypeMapPlanBuilder.CreatePropertyMapFunc(MemberMap memberMap, Expression destination, MemberInfo destinationMember)\r\n at AutoMapper.Execution.TypeMapPlanBuilder.CreateAssignmentFunc(Expression createDestination)\r\n at AutoMapper.Execution.TypeMapPlanBuilder.CreateMapperLambda(HashSet`1 typeMapsPath)\r\n at AutoMapper.TypeMap.Seal(IGlobalConfiguration configurationProvider, HashSet`1 typeMapsPath)\r\n at AutoMapper.MapperConfiguration.Seal()\r\n at AutoMapper.MapperConfiguration..ctor(MapperConfigurationExpression configurationExpression)\r\n at AutoMapper.MapperConfiguration..ctor(Action`1 configure)\r\n at zzz.Common.Helper.AutoMapperExtension.MapTo[TIn,TOut](TIn source) in D:\\work\\长江云息\\余宏企业\\Src\\YuhongPlcRead\\zzz.Common\\Helper\\AutoMapperHelper.cs:line 22\r\n at zzz.Api.Controllers.BigScreenController.getPlanOrderList() in D:\\work\\长江云息\\余宏企业\\Src\\YuhongPlcRead\\zzz.Api\\Controllers\\BigScreenController.cs:line 45\r\n at lambda_method524(Closure , Object )\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/7/12 9:36:02| +Request Data: + QueryData:/api/BigScreen/getPlanOrderList + BodyData: + +-------------------------------- +2022/7/12 9:36:08| +Response Data: +{"code":200,"success":true,"message":"成功","data":[{"FBILL_NO":"MO000015","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101762","FNUMBER":"301001020001","FMATERIAL_NAME":"安琦零侧漏150mm护垫20片 LC15201","FSPECIFICATION":"20片/包*30包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-02T00:00:00","FPLAN_FINISH_DATE":"2022-01-02T00:00:00","FSTART_DATE":"2022-01-02T11:11:49","FFINISH_DATE":"2022-01-04T15:34:36"},{"FBILL_NO":"MO000017","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101762","FNUMBER":"301001020001","FMATERIAL_NAME":"安琦零侧漏150mm护垫20片 LC15201","FSPECIFICATION":"20片/包*30包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-25T00:00:00","FPLAN_FINISH_DATE":"2022-01-25T00:00:00","FSTART_DATE":"2022-02-21T13:51:50","FFINISH_DATE":"2022-02-24T14:42:13"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101762","FNUMBER":"301001020001","FMATERIAL_NAME":"安琦零侧漏150mm护垫20片 LC15201","FSPECIFICATION":"20片/包*30包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-21T00:00:00","FPLAN_FINISH_DATE":"2022-02-21T00:00:00","FSTART_DATE":"2022-02-21T13:58:23","FFINISH_DATE":"2022-02-24T14:41:48"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101762","FNUMBER":"301001020001","FMATERIAL_NAME":"安琦零侧漏150mm护垫20片 LC15201","FSPECIFICATION":"20片/包*30包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-30T00:00:00","FPLAN_FINISH_DATE":"2022-03-30T00:00:00","FSTART_DATE":"2022-04-08T12:18:53","FFINISH_DATE":"2022-04-12T19:19:01"},{"FBILL_NO":"MO000013","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101768","FNUMBER":"301001020002","FMATERIAL_NAME":"安琦150mm无香护垫40片 E1014","FSPECIFICATION":"40片/包*30包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-29T00:00:00","FPLAN_FINISH_DATE":"2021-12-29T00:00:00","FSTART_DATE":"2022-01-03T15:46:09","FFINISH_DATE":"2022-02-17T12:34:21"},{"FBILL_NO":"MO000030","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101768","FNUMBER":"301001020002","FMATERIAL_NAME":"安琦150mm无香护垫40片 E1014","FSPECIFICATION":"40片/包*30包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-12T00:00:00","FPLAN_FINISH_DATE":"2022-04-12T00:00:00","FSTART_DATE":"2022-04-08T19:10:51","FFINISH_DATE":"2022-04-13T11:05:12"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101774","FNUMBER":"301001040001","FMATERIAL_NAME":"安琦零侧漏180mm直条迷你巾18片 LC18181","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-18T00:00:00","FPLAN_FINISH_DATE":"2022-02-18T00:00:00","FSTART_DATE":"2022-03-07T08:21:20","FFINISH_DATE":"2022-07-01T13:44:26"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101774","FNUMBER":"301001040001","FMATERIAL_NAME":"安琦零侧漏180mm直条迷你巾18片 LC18181","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-20T07:31:59","FFINISH_DATE":"2022-06-24T12:48:44"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101775","FNUMBER":"301001040002","FMATERIAL_NAME":"安琦零侧漏180mm护翼迷你巾10片 LC18101","FSPECIFICATION":"10片/包*30包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-01T00:00:00","FPLAN_FINISH_DATE":"2022-03-01T00:00:00","FSTART_DATE":"2022-04-02T16:33:17","FFINISH_DATE":"2022-04-19T15:57:31"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101778","FNUMBER":"301001040005","FMATERIAL_NAME":"安琦180mm棉质迷你巾15片 T1860","FSPECIFICATION":"15片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-18T00:00:00","FPLAN_FINISH_DATE":"2022-02-18T00:00:00","FSTART_DATE":"2022-03-12T16:09:58","FFINISH_DATE":"2022-05-26T15:25:39"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101779","FNUMBER":"301001040006","FMATERIAL_NAME":"安琦180mm加长护垫20片 T8028","FSPECIFICATION":"20片/包*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-18T00:00:00","FPLAN_FINISH_DATE":"2022-02-18T00:00:00","FSTART_DATE":"2022-02-25T17:00:09","FFINISH_DATE":"2022-03-15T19:25:42"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101779","FNUMBER":"301001040006","FMATERIAL_NAME":"安琦180mm加长护垫20片 T8028","FSPECIFICATION":"20片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-28T00:00:00","FPLAN_FINISH_DATE":"2022-03-28T00:00:00","FSTART_DATE":"2022-04-06T13:52:25","FFINISH_DATE":"2022-05-26T15:22:12"},{"FBILL_NO":"MO000082","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101779","FNUMBER":"301001040006","FMATERIAL_NAME":"安琦180mm加长护垫20片 T8028","FSPECIFICATION":"20片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-14T12:06:09","FFINISH_DATE":"2022-07-01T13:34:01"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101780","FNUMBER":"301001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾18片 LC24187","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-11T15:55:53","FFINISH_DATE":"2022-07-05T09:29:04"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101781","FNUMBER":"301001050002","FMATERIAL_NAME":"安琦零侧漏240mm丝薄爽棉日用卫生巾18片 LC24188","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-11T15:56:04","FFINISH_DATE":"2022-07-05T09:29:52"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101790","FNUMBER":"301001070006","FMATERIAL_NAME":"安琦零侧漏260mm棉质卫生巾16片 LC26161","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-11T15:56:13","FFINISH_DATE":"2022-06-24T12:57:05"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101794","FNUMBER":"301001060005","FMATERIAL_NAME":"安琦零侧漏纯棉245mm棉质卫生巾16片 LCQ26161","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-23T00:00:00","FPLAN_FINISH_DATE":"2022-04-23T00:00:00","FSTART_DATE":"2022-05-31T17:15:07","FFINISH_DATE":"2022-05-31T17:32:01"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101794","FNUMBER":"301001060005","FMATERIAL_NAME":"安琦零侧漏纯棉245mm棉质卫生巾16片 LCQ26161","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-15T07:34:50","FFINISH_DATE":"2022-06-24T13:15:30"},{"FBILL_NO":"MO000095","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101795","FNUMBER":"301001070007","FMATERIAL_NAME":"安琦清爽纤薄零侧漏260mm爽棉卫生巾16片 LCQ26163","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-28T00:00:00","FPLAN_FINISH_DATE":"2022-06-28T00:00:00","FSTART_DATE":"2022-06-27T14:34:18","FFINISH_DATE":""},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101796","FNUMBER":"301001090001","FMATERIAL_NAME":"安琦云感柔棉舒睡290mm夜用卫生巾18片 CS29181","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-08T00:00:00","FPLAN_FINISH_DATE":"2022-06-08T00:00:00","FSTART_DATE":"2022-06-07T12:13:28","FFINISH_DATE":"2022-06-24T13:21:38"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101798","FNUMBER":"301001100001","FMATERIAL_NAME":"安琦零侧漏300mm棉质夜用卫生巾16片 LC30161","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"2022-06-10T12:08:02","FFINISH_DATE":"2022-06-16T17:05:01"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101799","FNUMBER":"301001090003","FMATERIAL_NAME":"安琦零侧漏290mm棉质夜用卫生巾15片 LC30151","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-06-13T12:15:14","FFINISH_DATE":"2022-06-24T13:02:57"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101800","FNUMBER":"301001100003","FMATERIAL_NAME":"安琦零侧漏300mm爽棉夜用卫生巾15片 LC30152","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-29T00:00:00","FPLAN_FINISH_DATE":"2022-04-29T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101800","FNUMBER":"301001100003","FMATERIAL_NAME":"安琦零侧漏300mm爽棉夜用卫生巾15片 LC30152","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FSTART_DATE":"2022-06-07T12:11:49","FFINISH_DATE":"2022-07-05T09:35:58"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101801","FNUMBER":"301001100004","FMATERIAL_NAME":"安琦清爽纤薄零侧漏300mm棉质夜用卫生巾15片 LCQ30151","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T00:00:00","FPLAN_FINISH_DATE":"2022-04-19T00:00:00","FSTART_DATE":"2022-05-31T17:31:49","FFINISH_DATE":"2022-05-31T17:33:35"},{"FBILL_NO":"MO000085","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101801","FNUMBER":"301001100004","FMATERIAL_NAME":"安琦清爽纤薄零侧漏300mm棉质夜用卫生巾15片 LCQ30151","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-06-09T11:05:51","FFINISH_DATE":"2022-06-16T17:00:53"},{"FBILL_NO":"MO000096","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101802","FNUMBER":"301001100005","FMATERIAL_NAME":"安琦清爽纤薄零侧漏300mm爽棉夜用卫生巾15片 LCQ30152","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-01T00:00:00","FPLAN_FINISH_DATE":"2022-07-01T00:00:00","FSTART_DATE":"2022-06-27T14:35:14","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101803","FNUMBER":"301001090005","FMATERIAL_NAME":"安琦薄柔感3D凸棉290mm夜用卫生巾8片 BR30083","FSPECIFICATION":"8片/包*30包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101806","FNUMBER":"301001110001","FMATERIAL_NAME":"安琦350mm加长夜用棉质卫生巾4片 T3501","FSPECIFICATION":"4片/包*50包/箱","FWORK_SHOP":"8号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-06T00:00:00","FPLAN_FINISH_DATE":"2022-06-06T00:00:00","FSTART_DATE":"2022-06-03T13:53:10","FFINISH_DATE":"2022-07-01T14:10:05"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101809","FNUMBER":"301001120001","FMATERIAL_NAME":"安琦零侧漏410mm超长棉质夜用卫生巾3片 LC41031","FSPECIFICATION":"3片/包*24包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-20T00:00:00","FPLAN_FINISH_DATE":"2022-04-20T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101811","FNUMBER":"301001120003","FMATERIAL_NAME":"安琦云感棉超长夜用420大扇尾8片 CS42081","FSPECIFICATION":"8片/包*30包/箱","FWORK_SHOP":"10号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-30T12:16:16","FFINISH_DATE":"2022-06-14T16:01:31"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101811","FNUMBER":"301001120003","FMATERIAL_NAME":"安琦云感棉超长夜用420大扇尾8片 CS42081","FSPECIFICATION":"8片/包*30包/箱","FWORK_SHOP":"10号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-09T07:49:58","FFINISH_DATE":"2022-07-01T12:38:03"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101812","FNUMBER":"301001120004","FMATERIAL_NAME":"安琦薄柔感3D凸棉410mm超长夜用卫生巾6片 BR41063","FSPECIFICATION":"6片/包*30包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-06T00:00:00","FPLAN_FINISH_DATE":"2022-05-06T00:00:00","FSTART_DATE":"2022-05-20T16:52:35","FFINISH_DATE":"2022-06-14T15:56:06"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101813","FNUMBER":"302001040001","FMATERIAL_NAME":"安琦夜无忧女性卫生裤低腰M-L码5片 DQL05","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101823","FNUMBER":"308001000001","FMATERIAL_NAME":"安琦零侧漏日夜组合丝薄棉质卫生巾 20片 LC23205","FSPECIFICATION":"(15片240mm+5片300mm)/包*30包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-23T00:00:00","FPLAN_FINISH_DATE":"2022-04-23T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101824","FNUMBER":"308001000002","FMATERIAL_NAME":"安琦零侧漏日夜组合丝薄爽棉卫生巾 20片 LC23206","FSPECIFICATION":"(15片240mm+5片300mm)/包*30包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101827","FNUMBER":"308001000005","FMATERIAL_NAME":"安琦日用组合柔棉卫生巾 20片 24201","FSPECIFICATION":"(15片245mm+5片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FSTART_DATE":"2022-06-03T13:51:39","FFINISH_DATE":""},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101828","FNUMBER":"308001000006","FMATERIAL_NAME":"安琦日夜组合柔棉卫生巾 20片 29201","FSPECIFICATION":"(10片245mm+10片290mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-26T11:35:39","FFINISH_DATE":""},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101828","FNUMBER":"308001000006","FMATERIAL_NAME":"安琦日夜组合柔棉卫生巾 20片 29201","FSPECIFICATION":"(10片245mm+10片290mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-06-02T16:10:09","FFINISH_DATE":""},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101830","FNUMBER":"308001000008","FMATERIAL_NAME":"安琦柠檬组合棉质卫生巾 22片 29221","FSPECIFICATION":"(10片245mm+8片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-26T11:33:41","FFINISH_DATE":"2022-07-01T13:12:16"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101830","FNUMBER":"308001000008","FMATERIAL_NAME":"安琦柠檬组合棉质卫生巾 22片 29221","FSPECIFICATION":"(10片245mm+8片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FSTART_DATE":"2022-06-02T08:49:34","FFINISH_DATE":""},{"FBILL_NO":"MO000083","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101832","FNUMBER":"308001000010","FMATERIAL_NAME":"安琦零度清爽清凉组合棉质卫生巾 20片 49201","FSPECIFICATION":"(10片245mm+6片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FSTART_DATE":"2022-06-09T10:15:51","FFINISH_DATE":""},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101833","FNUMBER":"308001000011","FMATERIAL_NAME":"安琦零度清爽清凉组合干爽卫生巾 20片 49202","FSPECIFICATION":"(10片245mm+6片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-28T00:00:00","FPLAN_FINISH_DATE":"2022-05-28T00:00:00","FSTART_DATE":"2022-05-30T12:12:05","FFINISH_DATE":""},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-08T16:38:52","FPLAN_FINISH_DATE":"2022-01-08T16:38:52","FSTART_DATE":"2022-01-09T15:48:15","FFINISH_DATE":"2022-05-26T14:05:02"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-23T13:19:42","FPLAN_FINISH_DATE":"2022-03-23T13:19:42","FSTART_DATE":"2022-04-02T09:36:00","FFINISH_DATE":"2022-04-19T15:31:05"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-13T13:39:13","FPLAN_FINISH_DATE":"2022-04-13T13:39:13","FSTART_DATE":"2022-04-13T12:28:20","FFINISH_DATE":"2022-05-24T19:15:55"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T09:52:29","FPLAN_FINISH_DATE":"2022-05-16T09:52:29","FSTART_DATE":"2022-05-11T12:06:50","FFINISH_DATE":"2022-05-24T19:26:47"},{"FBILL_NO":"MO000193","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:25","FPLAN_FINISH_DATE":"2022-06-29T14:18:25","FSTART_DATE":"2022-07-04T12:28:33","FFINISH_DATE":""},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-25T10:32:39","FPLAN_FINISH_DATE":"2021-12-25T10:32:39","FSTART_DATE":"2021-12-16T08:24:13","FFINISH_DATE":"2022-01-04T15:00:26"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-19T10:32:39","FPLAN_FINISH_DATE":"2021-12-19T10:32:39","FSTART_DATE":"2021-12-18T14:21:20","FFINISH_DATE":"2022-01-04T15:00:12"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-25T10:32:39","FPLAN_FINISH_DATE":"2021-12-25T10:32:39","FSTART_DATE":"2021-12-18T14:24:50","FFINISH_DATE":"2022-01-04T15:00:07"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-08T16:39:22","FPLAN_FINISH_DATE":"2022-01-08T16:39:22","FSTART_DATE":"2022-03-01T15:36:19","FFINISH_DATE":"2022-04-06T19:12:37"},{"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-02T17:10:22","FPLAN_FINISH_DATE":"2022-06-02T17:10:22","FSTART_DATE":"2022-05-30T07:29:12","FFINISH_DATE":"2022-06-14T15:49:13"},{"FBILL_NO":"MO000192","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:43","FPLAN_FINISH_DATE":"2022-06-29T14:18:43","FSTART_DATE":"2022-07-04T12:27:32","FFINISH_DATE":""},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-01T13:19:59","FPLAN_FINISH_DATE":"2022-04-01T13:19:59","FSTART_DATE":"2022-04-02T09:27:46","FFINISH_DATE":"2022-05-24T19:14:06"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102362","FNUMBER":"301100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾10片装 HK52010","FSPECIFICATION":"10片/包*30包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-01T13:20:27","FPLAN_FINISH_DATE":"2022-04-01T13:20:27","FSTART_DATE":"2022-04-08T12:17:42","FFINISH_DATE":"2022-05-26T15:38:12"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102362","FNUMBER":"301100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾10片装 HK52010","FSPECIFICATION":"10片/包*30包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T09:52:45","FPLAN_FINISH_DATE":"2022-05-11T09:52:45","FSTART_DATE":"2022-05-12T12:31:47","FFINISH_DATE":"2022-05-30T12:59:10"},{"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102362","FNUMBER":"301100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾10片装 HK52010","FSPECIFICATION":"10片/包*30包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-30T17:09:45","FPLAN_FINISH_DATE":"2022-05-30T17:09:45","FSTART_DATE":"2022-05-30T07:28:59","FFINISH_DATE":"2022-06-14T15:45:30"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102363","FNUMBER":"301100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾6片装 HK12018","FSPECIFICATION":"6片/小包*3小包/袋*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-02T13:20:11","FPLAN_FINISH_DATE":"2022-04-02T13:20:11","FSTART_DATE":"2022-04-09T14:20:37","FFINISH_DATE":"2022-05-26T15:58:19"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102363","FNUMBER":"301100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾6片装 HK12018","FSPECIFICATION":"6片/小包*3小包/袋*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T09:52:37","FPLAN_FINISH_DATE":"2022-05-09T09:52:37","FSTART_DATE":"2022-05-11T12:09:08","FFINISH_DATE":"2022-05-26T15:10:29"},{"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102363","FNUMBER":"301100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾6片装 HK12018","FSPECIFICATION":"6片/小包*3小包/袋*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-07T17:09:36","FPLAN_FINISH_DATE":"2022-06-07T17:09:36","FSTART_DATE":"2022-05-30T07:29:06","FFINISH_DATE":"2022-06-24T12:33:25"},{"FBILL_NO":"MO000011","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102385","FNUMBER":"308102000001","FMATERIAL_NAME":"佑丽安吉莉卡新组合装","FSPECIFICATION":"(日用8片/包*15包+夜用5片*4包+迷你巾10片*4包+护垫16片*3包+超长夜用4片*3包)/盒*6盒/大箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-24T10:25:10","FPLAN_FINISH_DATE":"2021-12-24T10:25:10","FSTART_DATE":"2021-12-24T16:55:32","FFINISH_DATE":"2022-02-17T12:34:59"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102385","FNUMBER":"308102000001","FMATERIAL_NAME":"佑丽安吉莉卡新组合装","FSPECIFICATION":"(日用8片/包*15包+夜用5片*4包+迷你巾10片*4包+护垫16片*3包+超长夜用4片*3包)/盒*6盒/大箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-22T00:00:00","FPLAN_FINISH_DATE":"2022-02-22T00:00:00","FSTART_DATE":"2022-02-21T18:30:46","FFINISH_DATE":"2022-05-26T15:07:02"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102385","FNUMBER":"308102000001","FMATERIAL_NAME":"佑丽安吉莉卡新组合装","FSPECIFICATION":"(日用8片/包*15包+夜用5片*4包+迷你巾10片*4包+护垫16片*3包+超长夜用4片*3包)/盒*6盒/大箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T13:16:17","FPLAN_FINISH_DATE":"2022-04-06T13:16:17","FSTART_DATE":"2022-04-09T14:24:29","FFINISH_DATE":"2022-05-26T15:07:51"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102385","FNUMBER":"308102000001","FMATERIAL_NAME":"佑丽安吉莉卡新组合装","FSPECIFICATION":"(日用8片/包*15包+夜用5片*4包+迷你巾10片*4包+护垫16片*3包+超长夜用4片*3包)/盒*6盒/大箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T13:25:13","FPLAN_FINISH_DATE":"2022-04-06T13:25:13","FSTART_DATE":"2022-04-09T14:28:25","FFINISH_DATE":"2022-05-06T18:22:07"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102385","FNUMBER":"308102000001","FMATERIAL_NAME":"佑丽安吉莉卡新组合装","FSPECIFICATION":"(日用8片/包*15包+夜用5片*4包+迷你巾10片*4包+护垫16片*3包+超长夜用4片*3包)/盒*6盒/大箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102386","FNUMBER":"301102060002","FMATERIAL_NAME":"佑丽安吉莉卡245mm日用卫生巾8片装","FSPECIFICATION":"8片/包*20包/小箱*2小箱/大箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102386","FNUMBER":"301102060002","FMATERIAL_NAME":"佑丽安吉莉卡245mm日用卫生巾8片装","FSPECIFICATION":"8片/包*20包/小箱*2小箱/大箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000009","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102388","FNUMBER":"301102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫16片装","FSPECIFICATION":"16片/包*30包/小箱*2小箱/大箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-20T10:26:42","FPLAN_FINISH_DATE":"2021-12-30T10:26:42","FSTART_DATE":"2021-12-22T09:24:20","FFINISH_DATE":"2022-01-04T16:22:28"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102394","FNUMBER":"301102020010","FMATERIAL_NAME":"佑丽鲸心之选150mm护垫40片装","FSPECIFICATION":"40片/包*120包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T15:14:15","FPLAN_FINISH_DATE":"2022-04-27T15:14:15","FSTART_DATE":"2022-04-30T10:53:40","FFINISH_DATE":"2022-05-06T17:39:54"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102394","FNUMBER":"301102020010","FMATERIAL_NAME":"佑丽鲸心之选150mm护垫40片装","FSPECIFICATION":"40片/包*120包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T15:35:07","FPLAN_FINISH_DATE":"2022-04-27T15:35:07","FSTART_DATE":"2022-04-29T14:39:08","FFINISH_DATE":"2022-05-06T17:40:24"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102398","FNUMBER":"301102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾30片装","FSPECIFICATION":"30片/包*105包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-25T16:45:48","FPLAN_FINISH_DATE":"2022-02-25T16:45:48","FSTART_DATE":"2022-03-09T14:53:48","FFINISH_DATE":"2022-03-15T19:25:22"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102398","FNUMBER":"301102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾30片装","FSPECIFICATION":"30片/包*105包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T15:13:03","FPLAN_FINISH_DATE":"2022-04-30T15:13:03","FSTART_DATE":"2022-04-25T13:24:54","FFINISH_DATE":"2022-05-06T17:27:26"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102398","FNUMBER":"301102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾30片装","FSPECIFICATION":"30片/包*105包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T15:34:08","FPLAN_FINISH_DATE":"2022-04-30T15:34:08","FSTART_DATE":"2022-05-04T08:10:49","FFINISH_DATE":"2022-05-06T17:32:33"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102399","FNUMBER":"301102040015","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾10片装","FSPECIFICATION":"10片/包*200包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T15:13:34","FPLAN_FINISH_DATE":"2022-04-30T15:13:34","FSTART_DATE":"2022-04-25T13:20:02","FFINISH_DATE":"2022-05-06T17:41:27"},{"FBILL_NO":"MO000051","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102401","FNUMBER":"301103070001","FMATERIAL_NAME":"隆力奇清欣磁动力260mm日用卫生巾 019a","FSPECIFICATION":"10片*4包*24盒","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-26T16:13:28","FFINISH_DATE":"2022-04-26T16:13:28"},{"FBILL_NO":"MO000002","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102402","FNUMBER":"301103020002","FMATERIAL_NAME":"隆力奇清欣磁动力卫生巾150mm护垫套装(英法葡)30片装 jcac015c","FSPECIFICATION":"30片/包*16包/盒*10盒/大箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-24T10:20:54","FPLAN_FINISH_DATE":"2021-12-24T10:20:54","FSTART_DATE":"2021-12-25T16:20:34","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000023","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102405","FNUMBER":"301104040001","FMATERIAL_NAME":"唯尔福180mm护翼迷你巾18片装 1182","FSPECIFICATION":"18片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-22T16:52:35","FPLAN_FINISH_DATE":"2022-02-22T16:52:35","FSTART_DATE":"2022-03-17T08:07:44","FFINISH_DATE":"2022-04-19T15:52:09"},{"FBILL_NO":"MO000033","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102405","FNUMBER":"301104040001","FMATERIAL_NAME":"唯尔福180mm护翼迷你巾18片装 1182","FSPECIFICATION":"18片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-25T16:48:52","FPLAN_FINISH_DATE":"2022-04-25T16:48:52","FSTART_DATE":"2022-04-20T13:00:16","FFINISH_DATE":"2022-05-26T15:54:28"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102414","FNUMBER":"301500110001","FMATERIAL_NAME":"洁婷透气甜睡超薄350mm超长夜用卫生巾6片装 CGT306","FSPECIFICATION":"6片/包*24包/箱","FWORK_SHOP":"10号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102417","FNUMBER":"302500020004","FMATERIAL_NAME":"洁婷21樱肌感透气U裤M-L号低腰M码2片装 SK202","FSPECIFICATION":"2片/包*36包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102418","FNUMBER":"302500020005","FMATERIAL_NAME":"洁婷20樱花透气U裤M-L号低腰M码3片装 SK203","FSPECIFICATION":"3片/包*36包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102420","FNUMBER":"302500020007","FMATERIAL_NAME":"洁婷1013+少女透气U裤低腰M码2片装 NK102","FSPECIFICATION":"2片/包*36包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102420","FNUMBER":"302500020007","FMATERIAL_NAME":"洁婷1013+少女透气U裤低腰M码2片装 NK102","FSPECIFICATION":"2片/包*36包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000065","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102421","FNUMBER":"302500030008","FMATERIAL_NAME":"洁婷透气U裤高腰L码5片装 K105","FSPECIFICATION":"5片/包*16包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102421","FNUMBER":"302500030008","FMATERIAL_NAME":"洁婷透气U裤高腰L码5片装 K105","FSPECIFICATION":"5片/包*16包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102421","FNUMBER":"302500030008","FMATERIAL_NAME":"洁婷透气U裤高腰L码5片装 K105","FSPECIFICATION":"5片/包*16包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102424","FNUMBER":"301501040001","FMATERIAL_NAME":"雨森绿语柔瞬180mm护翼迷你巾20片装 YS5839","FSPECIFICATION":"20片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-28T16:20:58","FPLAN_FINISH_DATE":"2022-02-28T16:20:58","FSTART_DATE":"2022-03-13T15:03:58","FFINISH_DATE":"2022-05-26T15:36:59"},{"FBILL_NO":"MO000088","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102424","FNUMBER":"301501040001","FMATERIAL_NAME":"雨森绿语柔瞬180mm护翼迷你巾20片装 YS5839","FSPECIFICATION":"20片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-03T10:02:23","FPLAN_FINISH_DATE":"2022-06-03T10:02:23","FSTART_DATE":"2022-06-02T08:45:13","FFINISH_DATE":"2022-07-01T13:33:21"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102426","FNUMBER":"301501120003","FMATERIAL_NAME":"雨森绿语柔瞬纤巧410mm特长夜用卫生巾8片装 YS5884","FSPECIFICATION":"8片/包*24包/箱","FWORK_SHOP":"10号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T14:51:13","FPLAN_FINISH_DATE":"2022-05-09T14:51:13","FSTART_DATE":"2022-05-20T12:18:43","FFINISH_DATE":"2022-06-07T14:56:44"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102428","FNUMBER":"301501060005","FMATERIAL_NAME":"雨森百丽至薄无感245mm日用卫生巾10片装 BL9295","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T14:49:46","FPLAN_FINISH_DATE":"2022-05-20T14:49:46","FSTART_DATE":"2022-05-30T12:14:11","FFINISH_DATE":"2022-06-07T14:45:57"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102429","FNUMBER":"301501090006","FMATERIAL_NAME":"雨森百丽至薄无感290mm夜用卫生巾8片装 BL9301","FSPECIFICATION":"8片/包*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-02T14:50:32","FPLAN_FINISH_DATE":"2022-05-02T14:50:32","FSTART_DATE":"2022-05-20T08:04:15","FFINISH_DATE":"2022-06-07T14:56:01"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102431","FNUMBER":"301501110008","FMATERIAL_NAME":"雨森百丽至薄无感350mm超长夜用卫生巾6片装 BL9318","FSPECIFICATION":"6片/包*36包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-15T14:48:45","FPLAN_FINISH_DATE":"2022-05-15T14:48:45","FSTART_DATE":"2022-05-18T14:52:01","FFINISH_DATE":"2022-06-07T14:49:09"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102433","FNUMBER":"301501120010","FMATERIAL_NAME":"雨森百丽纤爽柔绵410mm特长夜用卫生巾8片装 BL5686","FSPECIFICATION":"8片/包*24包/箱","FWORK_SHOP":"10号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-11T14:51:59","FPLAN_FINISH_DATE":"2022-05-11T14:51:59","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000051","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102439","FNUMBER":"301502090003","FMATERIAL_NAME":"千金医用护理垫290mm夜用卫生巾5片装 JY-J-003","FSPECIFICATION":"5片/包*48包/箱","FWORK_SHOP":"11号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-26T16:13:18","FFINISH_DATE":"2022-04-26T16:13:18"},{"FBILL_NO":"MO000107","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102440","FNUMBER":"301502050004","FMATERIAL_NAME":"千金净雅240mm日用卫生巾8片装 JY-J-101","FSPECIFICATION":"8片/包*48包/箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-02T09:48:45","FPLAN_FINISH_DATE":"2022-07-02T09:48:45","FSTART_DATE":"2022-07-01T08:44:34","FFINISH_DATE":""},{"FBILL_NO":"MO000021","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102458","FNUMBER":"301201020002","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫30片装 ZW110","FSPECIFICATION":"30片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-28T11:06:21","FPLAN_FINISH_DATE":"2022-02-28T11:06:21","FSTART_DATE":"2022-02-23T18:52:07","FFINISH_DATE":"2022-04-06T18:53:28"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102458","FNUMBER":"301201020002","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫30片装 ZW110","FSPECIFICATION":"30片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-24T13:55:17","FPLAN_FINISH_DATE":"2022-03-24T13:55:17","FSTART_DATE":"2022-03-23T14:42:47","FFINISH_DATE":"2022-05-24T19:07:07"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102458","FNUMBER":"301201020002","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫30片装 ZW110","FSPECIFICATION":"30片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-29T16:29:48","FPLAN_FINISH_DATE":"2022-04-29T16:29:48","FSTART_DATE":"2022-04-19T15:36:23","FFINISH_DATE":"2022-05-24T19:24:57"},{"FBILL_NO":"MO000021","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102459","FNUMBER":"301201040003","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾18片装 ZW111","FSPECIFICATION":"18片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-02-28T10:40:21","FPLAN_FINISH_DATE":"2022-02-28T10:40:21","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102459","FNUMBER":"301201040003","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾18片装 ZW111","FSPECIFICATION":"18片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-24T13:55:23","FPLAN_FINISH_DATE":"2022-03-24T13:55:23","FSTART_DATE":"2022-03-23T14:42:36","FFINISH_DATE":"2022-05-06T18:11:57"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102459","FNUMBER":"301201040003","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾18片装 ZW111","FSPECIFICATION":"18片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-04-21T00:00:00","FPLAN_FINISH_DATE":"2022-04-21T00:00:00","FSTART_DATE":"2022-04-19T15:36:06","FFINISH_DATE":""},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102460","FNUMBER":"301201060004","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾10片装 ZW108","FSPECIFICATION":"10片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-05T09:09:19","FPLAN_FINISH_DATE":"2022-05-05T09:09:19","FSTART_DATE":"2022-05-11T10:32:55","FFINISH_DATE":"2022-06-08T12:33:18"},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102460","FNUMBER":"301201060004","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾10片装 ZW108","FSPECIFICATION":"10片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-09T09:37:04","FPLAN_FINISH_DATE":"2022-06-09T09:37:04","FSTART_DATE":"2022-06-09T10:08:30","FFINISH_DATE":""},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102461","FNUMBER":"301201080005","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾8片装 ZW109","FSPECIFICATION":"8片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"11号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-04T09:12:21","FPLAN_FINISH_DATE":"2022-05-04T09:12:21","FSTART_DATE":"2022-05-11T10:33:32","FFINISH_DATE":"2022-05-24T19:00:44"},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102461","FNUMBER":"301201080005","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾8片装 ZW109","FSPECIFICATION":"8片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:36","FPLAN_FINISH_DATE":"2022-06-15T15:35:36","FSTART_DATE":"2022-06-09T10:08:37","FFINISH_DATE":""},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102462","FNUMBER":"301201110006","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾6片装 ZW112","FSPECIFICATION":"6片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"8号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-04T09:12:21","FPLAN_FINISH_DATE":"2022-05-04T09:12:21","FSTART_DATE":"2022-05-11T10:34:07","FFINISH_DATE":"2022-06-08T12:34:35"},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102462","FNUMBER":"301201110006","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾6片装 ZW112","FSPECIFICATION":"6片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"8号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:37","FPLAN_FINISH_DATE":"2022-06-15T15:35:37","FSTART_DATE":"2022-06-09T10:08:42","FFINISH_DATE":""},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102463","FNUMBER":"302201030007","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码 2片装 ZW113","FSPECIFICATION":"2片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-14T09:14:48","FPLAN_FINISH_DATE":"2022-05-14T09:14:48","FSTART_DATE":"2022-07-01T08:49:10","FFINISH_DATE":""},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102463","FNUMBER":"302201030007","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码 2片装 ZW113","FSPECIFICATION":"2片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T15:35:37","FPLAN_FINISH_DATE":"2022-06-20T15:35:37","FSTART_DATE":"2022-06-09T10:08:47","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102464","FNUMBER":"301202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm 10片装 贴标","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-20T09:54:53","FPLAN_FINISH_DATE":"2022-04-20T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102465","FNUMBER":"301202060002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm 10片装 不贴标","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-20T09:54:53","FPLAN_FINISH_DATE":"2022-04-20T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102466","FNUMBER":"301202090003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm 8片装 贴标","FSPECIFICATION":"8片/包*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-25T09:54:53","FPLAN_FINISH_DATE":"2022-04-25T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000043","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102466","FNUMBER":"301202090003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm 8片装 贴标","FSPECIFICATION":"8片/包*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T10:28:35","FPLAN_FINISH_DATE":"2022-04-19T10:28:35","FSTART_DATE":"2022-05-12T12:21:19","FFINISH_DATE":"2022-06-22T09:59:22"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102467","FNUMBER":"301202090004","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm 8片装 不贴标","FSPECIFICATION":"8片/包*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-25T09:54:53","FPLAN_FINISH_DATE":"2022-04-25T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102468","FNUMBER":"301202110005","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm 6片装 贴标","FSPECIFICATION":"6片/包*36包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-22T09:54:53","FPLAN_FINISH_DATE":"2022-04-22T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102469","FNUMBER":"301202110006","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm 6片装 不贴标","FSPECIFICATION":"6片/包*36包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-22T09:54:53","FPLAN_FINISH_DATE":"2022-04-22T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000019","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102470","FNUMBER":"301202030007","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm卫生护垫18片装 贴标","FSPECIFICATION":"18片/包*36包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-09T09:58:40","FPLAN_FINISH_DATE":"2022-01-09T09:58:40","FSTART_DATE":"2022-01-08T16:09:07","FFINISH_DATE":"2022-02-16T16:49:01"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102470","FNUMBER":"301202030007","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm卫生护垫18片装 贴标","FSPECIFICATION":"18片/包*36包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-21T16:31:45","FPLAN_FINISH_DATE":"2022-04-21T16:31:45","FSTART_DATE":"2022-04-19T15:32:38","FFINISH_DATE":"2022-07-01T13:01:47"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102479","FNUMBER":"301202120016","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型超长夜用卫生巾410mm 4片装 澳洲版","FSPECIFICATION":"4片/包*36包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-27T10:27:38","FPLAN_FINISH_DATE":"2022-05-27T10:27:38","FSTART_DATE":"2022-05-24T16:36:46","FFINISH_DATE":"2022-05-31T19:29:38"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102480","FNUMBER":"301203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾10片装 WSJ0310","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-04T08:51:58","FPLAN_FINISH_DATE":"2022-05-04T08:51:58","FSTART_DATE":"2022-05-18T16:07:47","FFINISH_DATE":""},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102480","FNUMBER":"301203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾10片装 WSJ0310","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-06T14:17:51","FPLAN_FINISH_DATE":"2022-07-06T14:17:51","FSTART_DATE":"2022-06-27T14:47:54","FFINISH_DATE":""},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102481","FNUMBER":"301203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾8片装 WSJ0308","FSPECIFICATION":"8片/包*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T08:51:58","FPLAN_FINISH_DATE":"2022-05-09T08:51:58","FSTART_DATE":"2022-05-18T16:07:18","FFINISH_DATE":"2022-06-08T13:05:54"},{"FBILL_NO":"MO000055","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102481","FNUMBER":"301203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾8片装 WSJ0308","FSPECIFICATION":"8片/包*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T10:11:37","FPLAN_FINISH_DATE":"2022-04-30T10:11:37","FSTART_DATE":"2022-05-18T16:01:37","FFINISH_DATE":"2022-06-08T12:49:50"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102482","FNUMBER":"301203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾6片装 WSJ0306","FSPECIFICATION":"6片/包*36包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-05T08:51:58","FPLAN_FINISH_DATE":"2022-05-05T08:51:58","FSTART_DATE":"2022-05-18T16:07:26","FFINISH_DATE":"2022-05-26T16:21:34"},{"FBILL_NO":"MO000055","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102482","FNUMBER":"301203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾6片装 WSJ0306","FSPECIFICATION":"6片/包*36包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T10:11:37","FPLAN_FINISH_DATE":"2022-04-30T10:11:37","FSTART_DATE":"2022-05-26T16:18:44","FFINISH_DATE":"2022-05-26T16:22:39"},{"FBILL_NO":"MO000028","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102484","FNUMBER":"301203040005","FMATERIAL_NAME":"上海比芭云霓180mm护翼迷你巾12片装 WSJ0312","FSPECIFICATION":"12片/包*36包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-21T11:12:44","FPLAN_FINISH_DATE":"2022-03-21T11:12:44","FSTART_DATE":"2022-03-22T13:17:06","FFINISH_DATE":"2022-04-02T20:10:26"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102485","FNUMBER":"301203060006","FMATERIAL_NAME":"上海比芭云霓掌心包245mm日用卫生巾12片装 WSJ0412","FSPECIFICATION":"12片/包*36包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T08:51:58","FPLAN_FINISH_DATE":"2022-05-21T08:51:58","FSTART_DATE":"2022-05-18T16:07:09","FFINISH_DATE":"2022-06-08T13:05:20"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102515","FNUMBER":"301101040001","FMATERIAL_NAME":"布派180mm直条迷你巾22片装 BO0107","FSPECIFICATION":"22片/包*48包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-05T16:48:55","FPLAN_FINISH_DATE":"2022-03-05T16:48:55","FSTART_DATE":"2022-03-14T15:15:33","FFINISH_DATE":"2022-04-06T12:25:34"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102515","FNUMBER":"301101040001","FMATERIAL_NAME":"布派180mm直条迷你巾22片装 BO0107","FSPECIFICATION":"22片/包*48包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-11T13:22:23","FPLAN_FINISH_DATE":"2022-04-11T13:22:23","FSTART_DATE":"2022-04-15T15:02:52","FFINISH_DATE":"2022-05-26T15:57:31"},{"FBILL_NO":"MO000032","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102515","FNUMBER":"301101040001","FMATERIAL_NAME":"布派180mm直条迷你巾22片装 BO0107","FSPECIFICATION":"22片/包*48包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-11T11:14:59","FPLAN_FINISH_DATE":"2022-04-11T11:14:59","FSTART_DATE":"2022-04-02T16:38:15","FFINISH_DATE":"2022-04-19T15:38:21"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102516","FNUMBER":"301101040002","FMATERIAL_NAME":"布派180mm护翼迷你巾16片装 BO0135","FSPECIFICATION":"16片/包*48包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-11T00:00:00","FPLAN_FINISH_DATE":"2022-03-11T00:00:00","FSTART_DATE":"2022-03-17T12:13:10","FFINISH_DATE":"2022-04-06T12:23:09"},{"FBILL_NO":"MO000186","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102517","FNUMBER":"301101070003","FMATERIAL_NAME":"布派绿色无感260mm日用卫生巾18片装 BO0128","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-11T14:13:34","FPLAN_FINISH_DATE":"2022-07-11T14:13:34","FSTART_DATE":"2022-07-05T14:36:16","FFINISH_DATE":""},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-27T00:00:00","FPLAN_FINISH_DATE":"2022-02-27T00:00:00","FSTART_DATE":"2022-02-26T16:39:58","FFINISH_DATE":"2022-03-02T19:54:30"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-08T00:00:00","FPLAN_FINISH_DATE":"2022-01-08T00:00:00","FSTART_DATE":"2022-01-07T10:17:44","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-09T00:00:00","FPLAN_FINISH_DATE":"2022-01-09T00:00:00","FSTART_DATE":"2022-01-08T09:48:01","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-17T00:00:00","FPLAN_FINISH_DATE":"2022-01-17T00:00:00","FSTART_DATE":"2022-01-15T09:28:29","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-08T00:00:00","FPLAN_FINISH_DATE":"2022-02-08T00:00:00","FSTART_DATE":"2022-02-07T09:52:58","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-17T00:00:00","FPLAN_FINISH_DATE":"2022-02-17T00:00:00","FSTART_DATE":"2022-02-16T09:56:05","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-20T00:00:00","FPLAN_FINISH_DATE":"2022-01-20T00:00:00","FSTART_DATE":"2022-01-19T09:28:04","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-21T00:00:00","FPLAN_FINISH_DATE":"2022-01-21T00:00:00","FSTART_DATE":"2022-01-20T09:11:34","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-24T00:00:00","FPLAN_FINISH_DATE":"2022-01-24T00:00:00","FSTART_DATE":"2022-01-22T11:05:30","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-25T00:00:00","FPLAN_FINISH_DATE":"2022-01-25T00:00:00","FSTART_DATE":"2022-01-24T09:48:19","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-26T00:00:00","FPLAN_FINISH_DATE":"2022-01-26T00:00:00","FSTART_DATE":"2022-01-25T08:59:27","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-02T19:30:00","FPLAN_FINISH_DATE":"2022-04-02T19:30:00","FSTART_DATE":"2022-04-02T08:49:31","FFINISH_DATE":"2022-04-03T08:09:37"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-09T00:00:00","FPLAN_FINISH_DATE":"2022-02-09T00:00:00","FSTART_DATE":"2022-02-08T09:30:47","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-12T00:00:00","FPLAN_FINISH_DATE":"2022-02-12T00:00:00","FSTART_DATE":"2022-02-11T09:31:57","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-14T00:00:00","FPLAN_FINISH_DATE":"2022-02-14T00:00:00","FSTART_DATE":"2022-02-12T10:06:59","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-15T00:00:00","FPLAN_FINISH_DATE":"2022-02-15T00:00:00","FSTART_DATE":"2022-02-14T09:53:56","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-16T00:00:00","FPLAN_FINISH_DATE":"2022-02-16T00:00:00","FSTART_DATE":"2022-02-15T09:38:11","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-13T19:30:00","FPLAN_FINISH_DATE":"2022-04-13T19:30:00","FSTART_DATE":"2022-04-13T09:25:30","FFINISH_DATE":"2022-04-14T18:36:23"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-18T00:00:00","FPLAN_FINISH_DATE":"2022-02-18T00:00:00","FSTART_DATE":"2022-02-17T09:53:45","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-19T00:00:00","FPLAN_FINISH_DATE":"2022-02-19T00:00:00","FSTART_DATE":"2022-02-18T09:41:48","FFINISH_DATE":"2022-02-21T19:12:58"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-21T00:00:00","FPLAN_FINISH_DATE":"2022-02-21T00:00:00","FSTART_DATE":"2022-02-28T00:00:00","FFINISH_DATE":"2022-05-26T14:04:08"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-07T07:30:00","FPLAN_FINISH_DATE":"2022-04-07T07:30:00","FSTART_DATE":"2022-04-06T10:08:22","FFINISH_DATE":"2022-04-08T14:58:03"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-02T00:00:00","FPLAN_FINISH_DATE":"2022-04-02T00:00:00","FSTART_DATE":"2022-03-30T10:53:57","FFINISH_DATE":"2022-04-02T19:16:02"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T09:51:35","FFINISH_DATE":"2022-05-14T08:57:58"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-03T07:30:00","FPLAN_FINISH_DATE":"2022-04-03T07:30:00","FSTART_DATE":"2022-04-02T08:51:05","FFINISH_DATE":"2022-04-03T19:18:27"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-03T19:30:00","FPLAN_FINISH_DATE":"2022-04-03T19:30:00","FSTART_DATE":"2022-04-03T09:16:17","FFINISH_DATE":"2022-04-04T09:13:12"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T07:30:00","FPLAN_FINISH_DATE":"2022-04-06T07:30:00","FSTART_DATE":"2022-04-03T09:17:52","FFINISH_DATE":"2022-04-06T19:35:52"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T19:30:00","FPLAN_FINISH_DATE":"2022-04-06T19:30:00","FSTART_DATE":"2022-04-06T10:06:42","FFINISH_DATE":"2022-04-07T07:46:10"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-16T19:30:00","FPLAN_FINISH_DATE":"2022-04-16T19:30:00","FSTART_DATE":"2022-04-16T11:17:06","FFINISH_DATE":"2022-04-18T14:22:49"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-05-18T10:15:04","FFINISH_DATE":"2022-05-19T21:04:21"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-14T07:30:00","FPLAN_FINISH_DATE":"2022-04-14T07:30:00","FSTART_DATE":"2022-04-13T09:27:41","FFINISH_DATE":"2022-04-14T08:52:25"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-14T19:30:00","FPLAN_FINISH_DATE":"2022-04-14T19:30:00","FSTART_DATE":"2022-04-14T09:53:19","FFINISH_DATE":"2022-04-18T16:12:40"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-15T07:30:00","FPLAN_FINISH_DATE":"2022-04-15T07:30:00","FSTART_DATE":"2022-04-14T09:54:51","FFINISH_DATE":"2022-04-16T08:17:38"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-16T07:30:00","FPLAN_FINISH_DATE":"2022-04-16T07:30:00","FSTART_DATE":"2022-04-15T09:44:16","FFINISH_DATE":"2022-04-18T08:26:42"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:57:51","FFINISH_DATE":"2022-05-20T19:58:35"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-18T00:00:00","FPLAN_FINISH_DATE":"2022-01-18T00:00:00","FSTART_DATE":"2022-01-17T09:49:21","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-19T00:00:00","FPLAN_FINISH_DATE":"2022-01-19T00:00:00","FSTART_DATE":"2022-01-18T09:25:03","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:07:51","FFINISH_DATE":"2022-05-14T19:14:32"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-05-14T09:49:12","FFINISH_DATE":"2022-05-17T09:41:30"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:26:30","FFINISH_DATE":"2022-05-17T19:46:58"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T10:04:50","FFINISH_DATE":"2022-05-18T19:33:48"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-21T00:00:00","FPLAN_FINISH_DATE":"2021-12-21T00:00:00","FSTART_DATE":"2021-12-20T10:06:17","FFINISH_DATE":"2022-01-04T15:00:26"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-16T00:00:00","FPLAN_FINISH_DATE":"2021-12-16T00:00:00","FSTART_DATE":"2021-12-16T08:22:45","FFINISH_DATE":"2022-01-04T15:00:26"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-17T00:00:00","FPLAN_FINISH_DATE":"2021-12-17T00:00:00","FSTART_DATE":"2021-12-16T08:39:19","FFINISH_DATE":"2021-12-17T12:22:38"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-18T00:00:00","FPLAN_FINISH_DATE":"2021-12-18T00:00:00","FSTART_DATE":"2021-12-17T09:29:24","FFINISH_DATE":"2021-12-17T12:23:06"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-16T00:00:00","FPLAN_FINISH_DATE":"2021-12-16T00:00:00","FSTART_DATE":"2021-12-18T09:27:43","FFINISH_DATE":"2022-01-04T15:00:19"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-21T00:00:00","FPLAN_FINISH_DATE":"2021-12-21T00:00:00","FSTART_DATE":"2021-12-20T10:00:43","FFINISH_DATE":"2021-12-20T10:00:43"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-17T00:00:00","FPLAN_FINISH_DATE":"2021-12-17T00:00:00","FSTART_DATE":"2021-12-20T09:58:40","FFINISH_DATE":"2021-12-20T09:58:40"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-08T00:00:00","FPLAN_FINISH_DATE":"2022-03-08T00:00:00","FSTART_DATE":"2022-03-07T09:43:20","FFINISH_DATE":"2022-05-26T14:04:51"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-02T00:00:00","FPLAN_FINISH_DATE":"2022-03-02T00:00:00","FSTART_DATE":"2022-03-01T09:37:38","FFINISH_DATE":"2022-03-03T20:16:44"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-03T00:00:00","FPLAN_FINISH_DATE":"2022-03-03T00:00:00","FSTART_DATE":"2022-03-02T10:13:23","FFINISH_DATE":"2022-03-05T11:08:14"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-04T00:00:00","FPLAN_FINISH_DATE":"2022-03-04T00:00:00","FSTART_DATE":"2022-03-03T09:50:40","FFINISH_DATE":"2022-03-05T17:28:11"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-05T00:00:00","FPLAN_FINISH_DATE":"2022-03-05T00:00:00","FSTART_DATE":"2022-03-04T10:17:16","FFINISH_DATE":"2022-03-09T19:51:16"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-07T00:00:00","FPLAN_FINISH_DATE":"2022-03-07T00:00:00","FSTART_DATE":"2022-03-05T09:51:01","FFINISH_DATE":"2022-03-10T19:39:14"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-20T19:30:00","FPLAN_FINISH_DATE":"2022-04-20T19:30:00","FSTART_DATE":"2022-04-19T10:26:50","FFINISH_DATE":"2022-05-26T14:08:06"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-07T19:30:00","FPLAN_FINISH_DATE":"2022-04-07T19:30:00","FSTART_DATE":"2022-04-16T11:22:03","FFINISH_DATE":"2022-04-19T19:50:04"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T07:30:00","FPLAN_FINISH_DATE":"2022-04-08T07:30:00","FSTART_DATE":"2022-04-07T10:18:17","FFINISH_DATE":"2022-04-18T19:47:29"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T07:30:00","FPLAN_FINISH_DATE":"2022-04-19T07:30:00","FSTART_DATE":"2022-04-18T10:06:35","FFINISH_DATE":"2022-04-21T19:32:12"},{"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FSTART_DATE":"2022-05-30T14:37:16","FFINISH_DATE":"2022-06-06T08:48:17"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-09T07:30:00","FPLAN_FINISH_DATE":"2022-04-09T07:30:00","FSTART_DATE":"2022-04-08T09:48:05","FFINISH_DATE":"2022-04-19T10:35:15"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T19:30:00","FPLAN_FINISH_DATE":"2022-04-08T19:30:00","FSTART_DATE":"2022-04-08T09:46:35","FFINISH_DATE":"2022-04-09T08:10:58"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-20T07:30:00","FPLAN_FINISH_DATE":"2022-04-20T07:30:00","FSTART_DATE":"2022-04-19T10:35:02","FFINISH_DATE":"2022-04-20T19:47:46"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T10:07:31","FFINISH_DATE":"2022-05-28T09:38:30"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-05-14T09:51:08","FFINISH_DATE":"2022-05-23T19:58:30"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:29:23","FFINISH_DATE":"2022-05-17T20:04:02"},{"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-05-28T14:36:37","FFINISH_DATE":"2022-06-02T08:07:58"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120668","FNUMBER":"401100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾 HK12018","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-02T00:00:00","FPLAN_FINISH_DATE":"2022-04-02T00:00:00","FSTART_DATE":"2022-04-11T09:34:16","FFINISH_DATE":"2022-04-12T19:31:15"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120668","FNUMBER":"401100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾 HK12018","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-09T19:30:00","FPLAN_FINISH_DATE":"2022-04-09T19:30:00","FSTART_DATE":"2022-04-09T10:15:08","FFINISH_DATE":"2022-04-11T08:03:32"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120668","FNUMBER":"401100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾 HK12018","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-11T07:30:00","FPLAN_FINISH_DATE":"2022-04-11T07:30:00","FSTART_DATE":"2022-04-09T10:17:13","FFINISH_DATE":"2022-04-11T19:44:50"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120668","FNUMBER":"401100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾 HK12018","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T10:21:49","FFINISH_DATE":"2022-05-14T19:00:14"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120668","FNUMBER":"401100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾 HK12018","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-10T10:06:36","FFINISH_DATE":"2022-05-12T20:01:32"},{"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120668","FNUMBER":"401100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾 HK12018","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FSTART_DATE":"2022-06-09T08:57:51","FFINISH_DATE":"2022-06-14T19:38:11"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-05T19:30:00","FPLAN_FINISH_DATE":"2022-03-05T19:30:00","FSTART_DATE":"2022-03-05T09:46:19","FFINISH_DATE":"2022-03-07T19:56:21"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-04T19:30:00","FPLAN_FINISH_DATE":"2022-03-04T19:30:00","FSTART_DATE":"2022-03-04T10:28:03","FFINISH_DATE":"2022-03-05T08:42:50"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-05T07:03:00","FPLAN_FINISH_DATE":"2022-03-05T07:03:00","FSTART_DATE":"2022-03-04T10:30:17","FFINISH_DATE":"2022-03-05T17:43:07"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T07:30:00","FPLAN_FINISH_DATE":"2022-04-19T07:30:00","FSTART_DATE":"2022-04-18T10:11:42","FFINISH_DATE":"2022-04-20T19:50:23"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-11T00:00:00","FPLAN_FINISH_DATE":"2022-04-11T00:00:00","FSTART_DATE":"2022-04-11T10:21:42","FFINISH_DATE":"2022-04-11T10:21:42"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-11T00:00:00","FPLAN_FINISH_DATE":"2022-04-11T00:00:00","FSTART_DATE":"2022-04-11T10:21:48","FFINISH_DATE":"2022-04-11T10:21:48"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-16T07:30:00","FPLAN_FINISH_DATE":"2022-04-16T07:30:00","FSTART_DATE":"2022-04-15T09:47:30","FFINISH_DATE":"2022-04-16T19:49:53"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-18T07:30:00","FPLAN_FINISH_DATE":"2022-04-18T07:30:00","FSTART_DATE":"2022-04-16T10:48:16","FFINISH_DATE":"2022-04-18T19:43:50"},{"FBILL_NO":"MO000032","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T07:30:00","FPLAN_FINISH_DATE":"2022-04-06T07:30:00","FSTART_DATE":"2022-04-03T09:20:13","FFINISH_DATE":"2022-04-06T19:56:11"},{"FBILL_NO":"MO000032","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-03T07:30:00","FPLAN_FINISH_DATE":"2022-04-03T07:30:00","FSTART_DATE":"2022-04-02T08:59:46","FFINISH_DATE":"2022-04-03T19:47:36"},{"FBILL_NO":"MO000032","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-03T19:30:00","FPLAN_FINISH_DATE":"2022-04-03T19:30:00","FSTART_DATE":"2022-04-03T09:19:38","FFINISH_DATE":"2022-04-04T09:17:13"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120683","FNUMBER":"401101040002","FMATERIAL_NAME":"布派180mm护翼迷你巾 BO0135","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-18T00:00:00","FPLAN_FINISH_DATE":"2022-03-18T00:00:00","FSTART_DATE":"2022-03-17T09:56:10","FFINISH_DATE":"2022-03-21T19:31:20"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120683","FNUMBER":"401101040002","FMATERIAL_NAME":"布派180mm护翼迷你巾 BO0135","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-17T00:00:00","FPLAN_FINISH_DATE":"2022-03-17T00:00:00","FSTART_DATE":"2022-03-16T10:09:49","FFINISH_DATE":"2022-03-17T19:52:44"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120696","FNUMBER":"401102090001","FMATERIAL_NAME":"佑丽安吉莉卡290mm夜用卫生巾","FSPECIFICATION":" ","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-27T13:42:10","FFINISH_DATE":"2022-04-27T13:42:10"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120696","FNUMBER":"401102090001","FMATERIAL_NAME":"佑丽安吉莉卡290mm夜用卫生巾","FSPECIFICATION":" ","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-27T13:42:10","FFINISH_DATE":"2022-04-27T13:42:10"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120696","FNUMBER":"401102090001","FMATERIAL_NAME":"佑丽安吉莉卡290mm夜用卫生巾","FSPECIFICATION":" ","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-27T13:42:10","FFINISH_DATE":"2022-04-27T13:42:10"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120697","FNUMBER":"401102060002","FMATERIAL_NAME":"佑丽安吉莉卡245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-27T13:42:10","FFINISH_DATE":"2022-04-27T13:42:10"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120697","FNUMBER":"401102060002","FMATERIAL_NAME":"佑丽安吉莉卡245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-27T13:42:10","FFINISH_DATE":"2022-04-27T13:42:10"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120697","FNUMBER":"401102060002","FMATERIAL_NAME":"佑丽安吉莉卡245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-06-16T16:09:00","FFINISH_DATE":"2022-06-16T16:09:00"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120697","FNUMBER":"401102060002","FMATERIAL_NAME":"佑丽安吉莉卡245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-06-16T16:08:48","FFINISH_DATE":"2022-06-16T16:08:48"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-25T19:30:00","FPLAN_FINISH_DATE":"2022-02-25T19:30:00","FSTART_DATE":"2022-02-25T09:57:16","FFINISH_DATE":"2022-02-26T08:14:32"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-24T00:00:00","FPLAN_FINISH_DATE":"2022-02-24T00:00:00","FSTART_DATE":"2022-02-23T09:56:42","FFINISH_DATE":"2022-02-25T10:01:30"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-24T19:30:00","FPLAN_FINISH_DATE":"2022-02-25T07:30:00","FSTART_DATE":"2022-02-24T09:55:31","FFINISH_DATE":"2022-02-25T10:01:30"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-25T07:30:00","FPLAN_FINISH_DATE":"2022-02-25T19:30:00","FSTART_DATE":"2022-02-24T09:57:19","FFINISH_DATE":"2022-02-25T19:51:32"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-15T07:30:00","FPLAN_FINISH_DATE":"2022-04-15T07:30:00","FSTART_DATE":"2022-04-14T09:59:36","FFINISH_DATE":"2022-04-15T19:49:51"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T00:00:00","FPLAN_FINISH_DATE":"2022-04-06T00:00:00","FSTART_DATE":"2022-04-14T09:56:03","FFINISH_DATE":"2022-04-14T09:56:03"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-13T07:30:00","FPLAN_FINISH_DATE":"2022-04-13T07:30:00","FSTART_DATE":"2022-04-12T09:41:36","FFINISH_DATE":"2022-04-13T20:04:07"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-14T00:00:00","FPLAN_FINISH_DATE":"2022-04-14T00:00:00","FSTART_DATE":"2022-04-13T09:22:43","FFINISH_DATE":"2022-04-14T19:42:24"},{"FBILL_NO":"MO000009","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-25T00:00:00","FPLAN_FINISH_DATE":"2021-12-25T00:00:00","FSTART_DATE":"2021-12-24T10:19:34","FFINISH_DATE":"2022-01-25T09:41:37"},{"FBILL_NO":"MO000009","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-22T00:00:00","FPLAN_FINISH_DATE":"2021-12-22T00:00:00","FSTART_DATE":"2021-12-21T12:25:00","FFINISH_DATE":"2022-02-16T10:57:27"},{"FBILL_NO":"MO000009","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-23T00:00:00","FPLAN_FINISH_DATE":"2021-12-23T00:00:00","FSTART_DATE":"2021-12-22T10:30:59","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000009","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-24T00:00:00","FPLAN_FINISH_DATE":"2021-12-24T00:00:00","FSTART_DATE":"2021-12-23T10:22:32","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000011","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-24T00:00:00","FPLAN_FINISH_DATE":"2021-12-24T00:00:00","FSTART_DATE":"2021-12-24T16:55:32","FFINISH_DATE":"2022-01-25T09:48:13"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-23T00:00:00","FPLAN_FINISH_DATE":"2022-02-23T00:00:00","FSTART_DATE":"2022-02-22T09:41:56","FFINISH_DATE":"2022-02-24T07:56:03"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-11T19:30:00","FPLAN_FINISH_DATE":"2022-04-11T19:30:00","FSTART_DATE":"2022-04-11T09:30:55","FFINISH_DATE":"2022-04-12T08:03:44"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-12T07:30:00","FPLAN_FINISH_DATE":"2022-04-12T07:30:00","FSTART_DATE":"2022-04-11T09:33:25","FFINISH_DATE":"2022-04-12T19:35:39"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-29T00:00:00","FPLAN_FINISH_DATE":"2022-04-29T00:00:00","FSTART_DATE":"2022-04-26T10:17:30","FFINISH_DATE":"2022-04-29T19:34:16"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-29T00:00:00","FSTART_DATE":"2022-04-26T10:16:52","FFINISH_DATE":"2022-04-26T10:16:52"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-22T00:00:00","FPLAN_FINISH_DATE":"2022-02-22T00:00:00","FSTART_DATE":"2022-02-21T14:14:22","FFINISH_DATE":"2022-02-23T09:16:45"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-22T00:00:00","FPLAN_FINISH_DATE":"2022-02-22T00:00:00","FSTART_DATE":"2022-02-22T09:40:27","FFINISH_DATE":"2022-02-23T08:13:02"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-12T19:30:00","FPLAN_FINISH_DATE":"2022-04-12T19:30:00","FSTART_DATE":"2022-04-12T09:37:07","FFINISH_DATE":"2022-04-13T07:52:19"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-13T07:30:00","FPLAN_FINISH_DATE":"2022-04-13T07:30:00","FSTART_DATE":"2022-04-12T09:38:45","FFINISH_DATE":"2022-04-26T10:18:34"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120700","FNUMBER":"401102110005","FMATERIAL_NAME":"佑丽安吉莉卡350mm超长夜用卫生巾","FSPECIFICATION":"1*9500片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-27T13:42:10","FFINISH_DATE":"2022-04-27T13:42:10"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120700","FNUMBER":"401102110005","FMATERIAL_NAME":"佑丽安吉莉卡350mm超长夜用卫生巾","FSPECIFICATION":"1*9500片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-27T13:42:10","FFINISH_DATE":"2022-05-07T20:03:43"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120700","FNUMBER":"401102110005","FMATERIAL_NAME":"佑丽安吉莉卡350mm超长夜用卫生巾","FSPECIFICATION":"1*9500片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-06-16T16:08:37","FFINISH_DATE":"2022-06-16T16:08:37"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120705","FNUMBER":"401102020010","FMATERIAL_NAME":"佑丽鲸心之选150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-01T00:00:00","FPLAN_FINISH_DATE":"2022-05-01T00:00:00","FSTART_DATE":"2022-04-30T08:58:53","FFINISH_DATE":"2022-05-02T19:31:14"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120705","FNUMBER":"401102020010","FMATERIAL_NAME":"佑丽鲸心之选150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-29T00:00:00","FPLAN_FINISH_DATE":"2022-04-29T00:00:00","FSTART_DATE":"2022-04-26T09:52:02","FFINISH_DATE":"2022-04-30T19:28:29"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120705","FNUMBER":"401102020010","FMATERIAL_NAME":"佑丽鲸心之选150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-29T09:24:39","FFINISH_DATE":"2022-06-16T15:04:38"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120709","FNUMBER":"401102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-11T00:00:00","FPLAN_FINISH_DATE":"2022-03-11T00:00:00","FSTART_DATE":"2022-03-10T09:33:35","FFINISH_DATE":"2022-03-11T19:53:37"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120709","FNUMBER":"401102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-09T00:00:00","FPLAN_FINISH_DATE":"2022-03-09T00:00:00","FSTART_DATE":"2022-03-08T13:48:54","FFINISH_DATE":"2022-03-12T18:12:05"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120709","FNUMBER":"401102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T00:00:00","FPLAN_FINISH_DATE":"2022-04-30T00:00:00","FSTART_DATE":"2022-04-29T08:24:34","FFINISH_DATE":"2022-05-03T19:54:39"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120709","FNUMBER":"401102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-25T00:00:00","FPLAN_FINISH_DATE":"2022-04-25T00:00:00","FSTART_DATE":"2022-04-22T10:21:31","FFINISH_DATE":"2022-05-01T16:49:18"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120709","FNUMBER":"401102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-25T09:24:08","FFINISH_DATE":"2022-05-02T19:53:56"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120709","FNUMBER":"401102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-03T00:00:00","FPLAN_FINISH_DATE":"2022-05-03T00:00:00","FSTART_DATE":"2022-04-30T09:06:35","FFINISH_DATE":"2022-05-04T19:28:33"},{"FBILL_NO":"MO000002","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120712","FNUMBER":"401103020002","FMATERIAL_NAME":"隆力奇清欣磁动力卫生巾150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-31T00:00:00","FPLAN_FINISH_DATE":"2021-12-31T00:00:00","FSTART_DATE":"2021-12-30T15:32:27","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000002","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120712","FNUMBER":"401103020002","FMATERIAL_NAME":"隆力奇清欣磁动力卫生巾150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-27T00:00:00","FPLAN_FINISH_DATE":"2021-12-27T00:00:00","FSTART_DATE":"2021-12-25T10:36:33","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000002","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120712","FNUMBER":"401103020002","FMATERIAL_NAME":"隆力奇清欣磁动力卫生巾150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-28T00:00:00","FPLAN_FINISH_DATE":"2021-12-28T00:00:00","FSTART_DATE":"2021-12-27T09:08:46","FFINISH_DATE":"2022-02-25T09:47:19"},{"FBILL_NO":"MO000002","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120712","FNUMBER":"401103020002","FMATERIAL_NAME":"隆力奇清欣磁动力卫生巾150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-29T00:00:00","FPLAN_FINISH_DATE":"2021-12-29T00:00:00","FSTART_DATE":"2021-12-28T10:24:04","FFINISH_DATE":"2022-02-25T09:47:19"},{"FBILL_NO":"MO000002","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120712","FNUMBER":"401103020002","FMATERIAL_NAME":"隆力奇清欣磁动力卫生巾150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-30T00:00:00","FPLAN_FINISH_DATE":"2021-12-30T00:00:00","FSTART_DATE":"2021-12-29T09:43:15","FFINISH_DATE":"2022-02-25T09:47:19"},{"FBILL_NO":"MO000023","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120715","FNUMBER":"401104040001","FMATERIAL_NAME":"唯尔福180mm护翼迷你巾 1182","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-26T00:00:00","FPLAN_FINISH_DATE":"2022-02-26T00:00:00","FSTART_DATE":"2022-02-26T10:34:34","FFINISH_DATE":"2022-02-27T07:54:59"},{"FBILL_NO":"MO000023","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120715","FNUMBER":"401104040001","FMATERIAL_NAME":"唯尔福180mm护翼迷你巾 1182","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-22T00:00:00","FPLAN_FINISH_DATE":"2022-02-22T00:00:00","FSTART_DATE":"2022-02-21T14:09:01","FFINISH_DATE":"2022-02-23T08:21:46"},{"FBILL_NO":"MO000023","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120715","FNUMBER":"401104040001","FMATERIAL_NAME":"唯尔福180mm护翼迷你巾 1182","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-23T00:00:00","FPLAN_FINISH_DATE":"2022-02-23T00:00:00","FSTART_DATE":"2022-02-22T09:47:06","FFINISH_DATE":"2022-02-24T07:40:21"},{"FBILL_NO":"MO000033","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120715","FNUMBER":"401104040001","FMATERIAL_NAME":"唯尔福180mm护翼迷你巾 1182","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"2022-04-21T09:19:03","FFINISH_DATE":"2022-04-25T19:42:33"},{"FBILL_NO":"MO000033","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120715","FNUMBER":"401104040001","FMATERIAL_NAME":"唯尔福180mm护翼迷你巾 1182","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-21T00:00:00","FPLAN_FINISH_DATE":"2022-04-21T00:00:00","FSTART_DATE":"2022-04-20T09:58:30","FFINISH_DATE":"2022-04-21T19:40:57"},{"FBILL_NO":"MO000036","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120724","FNUMBER":"402500020001","FMATERIAL_NAME":"洁婷21樱肌裤系列产品低腰M-L号经期裤 SK202&SK203","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-12T00:00:00","FPLAN_FINISH_DATE":"2022-04-12T00:00:00","FSTART_DATE":"2022-04-12T10:44:44","FFINISH_DATE":"2022-06-09T22:51:46"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120724","FNUMBER":"402500020001","FMATERIAL_NAME":"洁婷21樱肌裤系列产品低腰M-L号经期裤 SK202&SK203","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:09:04","FFINISH_DATE":"2022-05-24T16:09:04"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120724","FNUMBER":"402500020001","FMATERIAL_NAME":"洁婷21樱肌裤系列产品低腰M-L号经期裤 SK202&SK203","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:16:11","FFINISH_DATE":"2022-05-24T16:16:11"},{"FBILL_NO":"MO000065","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120725","FNUMBER":"402500020002","FMATERIAL_NAME":"洁婷透气棉透气优裤(M-L)M码经期裤K102&K102+1","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-06-22T11:20:55","FFINISH_DATE":"2022-06-22T11:20:55"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120725","FNUMBER":"402500020002","FMATERIAL_NAME":"洁婷透气棉透气优裤(M-L)M码经期裤K102&K102+1","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:07:01","FFINISH_DATE":"2022-05-24T16:07:01"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120725","FNUMBER":"402500020002","FMATERIAL_NAME":"洁婷透气棉透气优裤(M-L)M码经期裤K102&K102+1","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:07:38","FFINISH_DATE":"2022-05-24T16:07:38"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120726","FNUMBER":"402500020003","FMATERIAL_NAME":"洁婷1013+少女透气U裤系列产品低腰M号经期裤 NK101&NK102","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:07:56","FFINISH_DATE":"2022-05-24T16:07:56"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120726","FNUMBER":"402500020003","FMATERIAL_NAME":"洁婷1013+少女透气U裤系列产品低腰M号经期裤 NK101&NK102","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:08:17","FFINISH_DATE":"2022-05-24T16:08:17"},{"FBILL_NO":"MO000065","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120727","FNUMBER":"402500030004","FMATERIAL_NAME":"洁婷透气U裤系列产品高腰L号经期裤 K105","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120727","FNUMBER":"402500030004","FMATERIAL_NAME":"洁婷透气U裤系列产品高腰L号经期裤 K105","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:21:20","FFINISH_DATE":"2022-05-24T16:21:20"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120727","FNUMBER":"402500030004","FMATERIAL_NAME":"洁婷透气U裤系列产品高腰L号经期裤 K105","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120728","FNUMBER":"401501040001","FMATERIAL_NAME":"雨森绿语柔瞬180mm护翼迷你巾YS5839","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-15T00:00:00","FPLAN_FINISH_DATE":"2022-03-15T00:00:00","FSTART_DATE":"2022-03-15T10:56:06","FFINISH_DATE":"2022-03-17T19:49:10"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120728","FNUMBER":"401501040001","FMATERIAL_NAME":"雨森绿语柔瞬180mm护翼迷你巾YS5839","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-16T00:00:00","FPLAN_FINISH_DATE":"2022-03-16T00:00:00","FSTART_DATE":"2022-03-15T10:43:33","FFINISH_DATE":"2022-05-25T11:51:17"},{"FBILL_NO":"MO000088","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120728","FNUMBER":"401501040001","FMATERIAL_NAME":"雨森绿语柔瞬180mm护翼迷你巾YS5839","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-06-02T08:58:32","FFINISH_DATE":"2022-06-06T20:02:49"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120730","FNUMBER":"401501120003","FMATERIAL_NAME":"雨森绿语柔瞬纤巧410mm特长夜用卫生巾YS5884&BL5686","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-06-16T16:07:27","FFINISH_DATE":"2022-06-16T16:07:27"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120732","FNUMBER":"401501060005","FMATERIAL_NAME":"雨森百丽至薄无感245mm日用卫生巾BL9295&BL1-0338","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-28T09:43:09","FFINISH_DATE":"2022-06-01T19:38:06"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120733","FNUMBER":"401501090006","FMATERIAL_NAME":"雨森百丽至薄无感290mm夜用卫生巾BL9301&BL1-0345&BL-T01","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-20T10:41:45","FFINISH_DATE":"2022-05-20T21:29:39"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120733","FNUMBER":"401501090006","FMATERIAL_NAME":"雨森百丽至薄无感290mm夜用卫生巾BL9301&BL1-0345&BL-T01","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:45:47","FFINISH_DATE":"2022-05-20T21:31:49"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120733","FNUMBER":"401501090006","FMATERIAL_NAME":"雨森百丽至薄无感290mm夜用卫生巾BL9301&BL1-0345&BL-T01","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T09:51:35","FFINISH_DATE":"2022-05-23T17:37:29"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120734","FNUMBER":"401501110007","FMATERIAL_NAME":"雨森百丽至薄无感350mm超长夜用卫生巾 BL9318","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T09:49:45","FFINISH_DATE":"2022-05-31T19:05:41"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120734","FNUMBER":"401501110007","FMATERIAL_NAME":"雨森百丽至薄无感350mm超长夜用卫生巾 BL9318","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-05-18T09:50:13","FFINISH_DATE":"2022-05-19T21:25:36"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120734","FNUMBER":"401501110007","FMATERIAL_NAME":"雨森百丽至薄无感350mm超长夜用卫生巾 BL9318","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:36:06","FFINISH_DATE":"2022-05-20T21:24:26"},{"FBILL_NO":"MO000051","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120742","FNUMBER":"401502090003","FMATERIAL_NAME":"千金净雅290mm夜用卫生巾 JY-J-102&JY-J-003","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-26T16:07:20","FFINISH_DATE":"2022-04-26T16:09:16"},{"FBILL_NO":"MO000021","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-22T00:00:00","FPLAN_FINISH_DATE":"2022-03-22T00:00:00","FSTART_DATE":"2022-03-21T09:40:23","FFINISH_DATE":"2022-03-23T19:44:52"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-27T00:00:00","FPLAN_FINISH_DATE":"2022-03-27T00:00:00","FSTART_DATE":"2022-03-26T09:15:50","FFINISH_DATE":"2022-03-28T19:43:45"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-28T00:00:00","FPLAN_FINISH_DATE":"2022-03-28T00:00:00","FSTART_DATE":"2022-03-26T10:01:25","FFINISH_DATE":"2022-03-30T13:14:48"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-29T07:30:00","FPLAN_FINISH_DATE":"2022-03-29T07:30:00","FSTART_DATE":"2022-03-29T09:32:14","FFINISH_DATE":"2022-03-29T09:32:14"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-30T00:00:00","FPLAN_FINISH_DATE":"2022-03-30T00:00:00","FSTART_DATE":"2022-03-29T10:16:54","FFINISH_DATE":"2022-03-29T12:24:02"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-03T00:00:00","FPLAN_FINISH_DATE":"2022-05-03T00:00:00","FSTART_DATE":"2022-04-30T09:57:38","FFINISH_DATE":"2022-05-06T20:11:37"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-04-30T09:58:41","FFINISH_DATE":"2022-05-05T19:34:08"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-06T09:02:28","FFINISH_DATE":"2022-05-07T19:29:28"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T10:14:55","FFINISH_DATE":"2022-05-08T17:30:31"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-24T00:00:00","FPLAN_FINISH_DATE":"2022-03-24T00:00:00","FSTART_DATE":"2022-03-23T11:02:43","FFINISH_DATE":"2022-03-27T17:52:27"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-29T07:30:00","FPLAN_FINISH_DATE":"2022-03-29T07:30:00","FSTART_DATE":"2022-03-28T10:06:13","FFINISH_DATE":"2022-03-30T20:22:03"},{"FBILL_NO":"MO000021","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-24T00:00:00","FPLAN_FINISH_DATE":"2022-02-24T00:00:00","FSTART_DATE":"2022-02-23T10:02:55","FFINISH_DATE":"2022-02-26T17:52:56"},{"FBILL_NO":"MO000021","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-24T19:30:00","FPLAN_FINISH_DATE":"2022-02-24T19:30:00","FSTART_DATE":"2022-02-24T09:52:35","FFINISH_DATE":"2022-03-14T19:45:56"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-30T00:00:00","FPLAN_FINISH_DATE":"2022-03-30T00:00:00","FSTART_DATE":"2022-03-29T12:25:08","FFINISH_DATE":"2022-06-16T15:02:24"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-07T10:17:03","FFINISH_DATE":"2022-05-10T08:40:57"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T09:43:00","FFINISH_DATE":"2022-05-12T19:44:13"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-02T00:00:00","FPLAN_FINISH_DATE":"2022-05-02T00:00:00","FSTART_DATE":"2022-04-30T09:54:57","FFINISH_DATE":"2022-05-05T07:56:48"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-24T00:00:00","FPLAN_FINISH_DATE":"2022-03-24T00:00:00","FSTART_DATE":"2022-03-23T11:06:51","FFINISH_DATE":"2022-03-25T19:58:31"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-25T00:00:00","FPLAN_FINISH_DATE":"2022-03-25T00:00:00","FSTART_DATE":"2022-03-24T09:57:17","FFINISH_DATE":"2022-03-29T20:06:23"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-27T00:00:00","FPLAN_FINISH_DATE":"2022-03-27T00:00:00","FSTART_DATE":"2022-03-26T09:23:34","FFINISH_DATE":"2022-06-16T15:32:13"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-28T00:00:00","FPLAN_FINISH_DATE":"2022-03-28T00:00:00","FSTART_DATE":"2022-03-26T10:00:02","FFINISH_DATE":"2022-03-30T20:08:35"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-04-30T10:00:12","FFINISH_DATE":"2022-05-05T19:54:16"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T00:00:00","FPLAN_FINISH_DATE":"2022-04-06T00:00:00","FSTART_DATE":"2022-05-05T09:41:10","FFINISH_DATE":"2022-05-06T20:15:13"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-06T09:06:02","FFINISH_DATE":"2022-05-07T19:48:46"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T10:17:50","FFINISH_DATE":"2022-05-08T17:52:29"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-07T10:20:21","FFINISH_DATE":"2022-05-10T08:49:16"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-30T00:00:00","FPLAN_FINISH_DATE":"2022-03-30T00:00:00","FSTART_DATE":"2022-03-30T09:37:19","FFINISH_DATE":"2022-03-31T08:26:00"},{"FBILL_NO":"MO000021","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-28T00:00:00","FPLAN_FINISH_DATE":"2022-02-28T00:00:00","FSTART_DATE":"2022-05-05T09:46:42","FFINISH_DATE":"2022-05-05T09:46:42"},{"FBILL_NO":"MO000021","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-02T00:00:00","FPLAN_FINISH_DATE":"2022-04-02T00:00:00","FSTART_DATE":"2022-03-30T09:45:41","FFINISH_DATE":"2022-04-02T19:09:39"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T09:56:52","FFINISH_DATE":"2022-05-11T20:21:36"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-25T09:20:09","FFINISH_DATE":"2022-06-16T16:04:00"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-07T14:06:14","FFINISH_DATE":"2022-05-11T20:30:39"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T09:46:03","FFINISH_DATE":"2022-05-12T20:12:39"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T10:13:00","FFINISH_DATE":"2022-05-14T09:01:48"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:11:55","FFINISH_DATE":"2022-05-14T19:24:16"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-05-14T09:53:47","FFINISH_DATE":"2022-05-17T09:32:19"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-18T08:42:52","FFINISH_DATE":"2022-06-16T16:03:46"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-05-18T09:44:47","FFINISH_DATE":"2022-05-19T21:20:31"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T10:33:35","FFINISH_DATE":"2022-05-20T21:16:39"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T09:43:17","FFINISH_DATE":"2022-05-21T18:19:54"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-23T00:00:00","FPLAN_FINISH_DATE":"2022-05-23T00:00:00","FSTART_DATE":"2022-05-21T09:15:21","FFINISH_DATE":"2022-05-23T19:44:01"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-23T14:39:57","FFINISH_DATE":"2022-05-24T19:59:27"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-25T00:00:00","FPLAN_FINISH_DATE":"2022-05-25T00:00:00","FSTART_DATE":"2022-05-24T09:41:17","FFINISH_DATE":"2022-05-26T07:50:15"},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-09T00:00:00","FPLAN_FINISH_DATE":"2022-06-09T00:00:00","FSTART_DATE":"2022-06-08T09:17:54","FFINISH_DATE":"2022-07-05T08:07:23"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:31:35","FFINISH_DATE":"2022-05-17T21:25:19"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T10:13:36","FFINISH_DATE":"2022-05-18T20:02:08"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-05T00:00:00","FPLAN_FINISH_DATE":"2022-05-05T00:00:00","FSTART_DATE":"2022-06-16T16:04:13","FFINISH_DATE":"2022-06-16T16:04:13"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-06T00:00:00","FPLAN_FINISH_DATE":"2022-05-06T00:00:00","FSTART_DATE":"2022-05-05T10:07:32","FFINISH_DATE":"2022-05-06T20:08:52"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-06T09:08:18","FFINISH_DATE":"2022-05-07T20:04:19"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T10:22:46","FFINISH_DATE":"2022-05-09T07:52:45"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-07T10:25:06","FFINISH_DATE":"2022-05-10T09:00:45"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T09:59:48","FFINISH_DATE":"2022-05-11T20:03:18"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-10T10:14:15","FFINISH_DATE":"2022-05-12T20:08:15"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T10:15:33","FFINISH_DATE":"2022-05-14T08:38:04"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:21:40","FFINISH_DATE":"2022-05-14T18:52:03"},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-14T09:27:30","FFINISH_DATE":"2022-07-02T07:36:14"},{"FBILL_NO":"MO000048","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:24:31","FFINISH_DATE":"2022-05-16T08:31:47"},{"FBILL_NO":"MO000048","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-02T00:00:00","FPLAN_FINISH_DATE":"2022-05-02T00:00:00","FSTART_DATE":"2022-04-30T10:21:24","FFINISH_DATE":"2022-05-10T08:53:24"},{"FBILL_NO":"MO000048","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T10:01:40","FFINISH_DATE":"2022-05-11T20:15:56"},{"FBILL_NO":"MO000048","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-10T10:11:46","FFINISH_DATE":"2022-05-14T08:45:22"},{"FBILL_NO":"MO000048","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T10:18:54","FFINISH_DATE":"2022-06-16T16:05:30"},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-11T09:29:42","FFINISH_DATE":"2022-06-25T08:18:36"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120758","FNUMBER":"402201030006","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-06-28T09:00:03","FFINISH_DATE":""},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120758","FNUMBER":"402201030006","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-07-01T10:38:07","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-03T00:00:00","FPLAN_FINISH_DATE":"2022-05-03T00:00:00","FSTART_DATE":"2022-04-30T10:07:06","FFINISH_DATE":"2022-05-06T19:51:45"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"2022-04-21T09:12:20","FFINISH_DATE":"2022-06-16T15:53:38"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-20T00:00:00","FPLAN_FINISH_DATE":"2022-04-20T00:00:00","FSTART_DATE":"2022-04-19T13:45:00","FFINISH_DATE":"2022-04-20T19:31:05"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-21T00:00:00","FPLAN_FINISH_DATE":"2022-04-21T00:00:00","FSTART_DATE":"2022-04-20T10:03:11","FFINISH_DATE":"2022-04-21T19:44:10"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-25T00:00:00","FPLAN_FINISH_DATE":"2022-04-25T00:00:00","FSTART_DATE":"2022-04-22T10:25:45","FFINISH_DATE":"2022-04-27T08:16:11"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-25T19:30:00","FPLAN_FINISH_DATE":"2022-04-25T19:30:00","FSTART_DATE":"2022-04-25T09:17:21","FFINISH_DATE":"2022-04-27T08:21:37"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T07:30:00","FPLAN_FINISH_DATE":"2022-04-30T07:30:00","FSTART_DATE":"2022-04-29T09:28:32","FFINISH_DATE":"2022-05-03T19:57:19"},{"FBILL_NO":"MO000053","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-26T16:07:59","FFINISH_DATE":"2022-04-26T16:21:22"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-06-02T10:45:16","FFINISH_DATE":"2022-06-16T16:13:21"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T19:30:00","FPLAN_FINISH_DATE":"2022-05-17T19:30:00","FSTART_DATE":"2022-05-17T09:53:40","FFINISH_DATE":"2022-05-18T07:48:56"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T09:55:01","FFINISH_DATE":"2022-05-18T07:54:16"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-18T08:23:27","FFINISH_DATE":"2022-05-18T19:13:50"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T07:30:00","FPLAN_FINISH_DATE":"2022-04-27T07:30:00","FSTART_DATE":"2022-04-25T09:20:29","FFINISH_DATE":"2022-04-29T18:51:00"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-29T07:30:00","FPLAN_FINISH_DATE":"2022-04-29T07:30:00","FSTART_DATE":"2022-04-26T09:28:57","FFINISH_DATE":"2022-05-02T19:46:12"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-29T04:19:30","FPLAN_FINISH_DATE":"2022-04-29T04:19:30","FSTART_DATE":"2022-04-29T09:27:00","FFINISH_DATE":"2022-05-05T19:53:07"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:23:08","FFINISH_DATE":"2022-05-20T20:14:51"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T19:30:00","FPLAN_FINISH_DATE":"2022-05-20T19:30:00","FSTART_DATE":"2022-05-20T09:29:53","FFINISH_DATE":"2022-05-21T07:46:24"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T07:30:00","FPLAN_FINISH_DATE":"2022-05-21T07:30:00","FSTART_DATE":"2022-05-20T09:31:04","FFINISH_DATE":"2022-05-23T08:10:39"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T07:30:00","FPLAN_FINISH_DATE":"2022-05-16T07:30:00","FSTART_DATE":"2022-05-14T09:38:47","FFINISH_DATE":"2022-05-17T09:11:08"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:22:56","FFINISH_DATE":"2022-05-17T19:20:28"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T19:30:00","FPLAN_FINISH_DATE":"2022-05-16T19:30:00","FSTART_DATE":"2022-05-16T09:24:31","FFINISH_DATE":"2022-05-17T08:51:55"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T07:30:00","FPLAN_FINISH_DATE":"2022-05-24T07:30:00","FSTART_DATE":"2022-05-23T09:51:44","FFINISH_DATE":"2022-05-24T19:15:27"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T09:28:08","FFINISH_DATE":"2022-05-25T07:38:10"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-25T00:00:00","FPLAN_FINISH_DATE":"2022-05-25T00:00:00","FSTART_DATE":"2022-05-24T09:37:45","FFINISH_DATE":"2022-05-25T19:54:09"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T19:30:00","FPLAN_FINISH_DATE":"2022-05-18T19:30:00","FSTART_DATE":"2022-05-18T10:03:01","FFINISH_DATE":"2022-05-19T07:37:41"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-05-18T10:04:45","FFINISH_DATE":"2022-05-19T19:12:13"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T19:30:00","FPLAN_FINISH_DATE":"2022-05-19T19:30:00","FSTART_DATE":"2022-05-19T09:23:19","FFINISH_DATE":"2022-05-20T08:11:56"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-27T07:30:00","FPLAN_FINISH_DATE":"2022-05-27T07:30:00","FSTART_DATE":"2022-05-26T09:53:11","FFINISH_DATE":"2022-05-27T20:04:44"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-27T19:30:00","FPLAN_FINISH_DATE":"2022-05-27T19:30:00","FSTART_DATE":"2022-05-27T09:38:14","FFINISH_DATE":"2022-05-28T07:56:34"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-28T07:30:00","FPLAN_FINISH_DATE":"2022-05-28T07:30:00","FSTART_DATE":"2022-05-27T09:45:54","FFINISH_DATE":"2022-05-28T19:28:49"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T19:30:00","FPLAN_FINISH_DATE":"2022-05-21T19:30:00","FSTART_DATE":"2022-05-21T09:07:16","FFINISH_DATE":"2022-05-23T08:05:40"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-23T07:30:00","FPLAN_FINISH_DATE":"2022-05-23T07:30:00","FSTART_DATE":"2022-05-21T09:08:58","FFINISH_DATE":"2022-05-23T19:27:00"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-23T19:30:00","FPLAN_FINISH_DATE":"2022-05-23T19:30:00","FSTART_DATE":"2022-05-23T09:50:42","FFINISH_DATE":"2022-05-24T07:40:12"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-27T07:30:00","FPLAN_FINISH_DATE":"2022-05-27T07:30:00","FSTART_DATE":"2022-05-27T09:47:44","FFINISH_DATE":"2022-05-28T07:59:12"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-28T19:30:00","FPLAN_FINISH_DATE":"2022-05-28T19:30:00","FSTART_DATE":"2022-05-28T09:34:04","FFINISH_DATE":"2022-05-31T07:35:40"},{"FBILL_NO":"MO000080","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-06T00:00:00","FPLAN_FINISH_DATE":"2022-06-06T00:00:00","FSTART_DATE":"2022-06-08T09:30:11","FFINISH_DATE":"2022-06-10T19:53:58"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-25T19:30:00","FPLAN_FINISH_DATE":"2022-05-25T19:30:00","FSTART_DATE":"2022-05-25T09:12:34","FFINISH_DATE":"2022-05-26T07:44:26"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T07:30:00","FPLAN_FINISH_DATE":"2022-05-26T07:30:00","FSTART_DATE":"2022-05-25T09:14:44","FFINISH_DATE":"2022-05-26T20:02:35"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T19:30:00","FPLAN_FINISH_DATE":"2022-05-26T19:30:00","FSTART_DATE":"2022-05-26T09:45:57","FFINISH_DATE":"2022-05-27T08:47:56"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-02T00:00:00","FPLAN_FINISH_DATE":"2022-05-02T00:00:00","FSTART_DATE":"2022-04-30T09:36:29","FFINISH_DATE":"2022-05-09T10:28:43"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-29T00:00:00","FPLAN_FINISH_DATE":"2022-04-29T00:00:00","FSTART_DATE":"2022-04-26T09:33:05","FFINISH_DATE":"2022-04-29T19:56:20"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T00:00:00","FPLAN_FINISH_DATE":"2022-04-30T00:00:00","FSTART_DATE":"2022-04-29T09:30:04","FFINISH_DATE":"2022-05-02T19:42:09"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T10:28:22","FFINISH_DATE":"2022-05-14T08:26:49"},{"FBILL_NO":"MO000043","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T00:00:00","FPLAN_FINISH_DATE":"2022-04-19T00:00:00","FSTART_DATE":"2022-06-16T15:56:55","FFINISH_DATE":"2022-06-16T15:56:55"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-06-16T16:13:30","FFINISH_DATE":"2022-06-16T16:13:30"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:54:28","FFINISH_DATE":"2022-05-14T19:05:21"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-05-14T09:45:01","FFINISH_DATE":"2022-05-17T09:19:53"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:18:22","FFINISH_DATE":"2022-05-17T20:54:55"},{"FBILL_NO":"MO000043","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T00:00:00","FPLAN_FINISH_DATE":"2022-04-19T00:00:00","FSTART_DATE":"2022-04-19T11:15:28","FFINISH_DATE":"2022-04-19T19:39:33"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T09:58:26","FFINISH_DATE":"2022-05-18T19:49:13"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-05-18T10:06:57","FFINISH_DATE":"2022-05-19T20:50:48"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:27:55","FFINISH_DATE":"2022-06-16T16:12:54"},{"FBILL_NO":"MO000043","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-20T00:00:00","FPLAN_FINISH_DATE":"2022-04-20T00:00:00","FSTART_DATE":"2022-04-19T11:15:35","FFINISH_DATE":"2022-04-20T19:43:46"},{"FBILL_NO":"MO000043","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-20T00:00:00","FPLAN_FINISH_DATE":"2022-04-20T00:00:00","FSTART_DATE":"2022-04-20T10:06:44","FFINISH_DATE":"2022-04-21T19:20:37"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-04-30T09:24:34","FFINISH_DATE":"2022-06-28T16:19:41"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"2022-04-21T14:47:34","FFINISH_DATE":"2022-04-22T19:24:26"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-25T00:00:00","FPLAN_FINISH_DATE":"2022-04-25T00:00:00","FSTART_DATE":"2022-04-22T10:32:49","FFINISH_DATE":"2022-04-26T20:19:13"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-25T09:13:12","FFINISH_DATE":"2022-04-30T10:36:08"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T00:00:00","FPLAN_FINISH_DATE":"2022-04-30T00:00:00","FSTART_DATE":"2022-04-29T09:32:01","FFINISH_DATE":"2022-04-30T19:22:29"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T09:57:03","FFINISH_DATE":"2022-05-24T15:34:52"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T19:30:00","FPLAN_FINISH_DATE":"2022-05-13T19:30:00","FSTART_DATE":"2022-05-13T09:50:53","FFINISH_DATE":"2022-05-14T09:08:20"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:52:34","FFINISH_DATE":"2022-05-14T19:09:01"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-01T00:00:00","FPLAN_FINISH_DATE":"2022-05-01T00:00:00","FSTART_DATE":"2022-04-30T09:10:24","FFINISH_DATE":"2022-05-05T07:43:03"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T19:30:00","FPLAN_FINISH_DATE":"2022-05-14T19:30:00","FSTART_DATE":"2022-05-14T09:33:41","FFINISH_DATE":"2022-05-16T08:26:25"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-05-14T09:36:34","FFINISH_DATE":"2022-05-17T09:51:52"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:20:07","FFINISH_DATE":"2022-05-17T21:29:33"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-06T09:12:15","FFINISH_DATE":"2022-05-08T17:29:16"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-07T09:16:03","FFINISH_DATE":"2022-05-07T19:58:24"},{"FBILL_NO":"MO000020","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-09T00:00:00","FPLAN_FINISH_DATE":"2022-01-09T00:00:00","FSTART_DATE":"2022-02-16T16:42:32","FFINISH_DATE":"2022-02-16T16:46:59"},{"FBILL_NO":"MO000020","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-09T00:00:00","FPLAN_FINISH_DATE":"2022-01-09T00:00:00","FSTART_DATE":"2022-01-08T15:22:43","FFINISH_DATE":"2022-02-16T16:49:12"},{"FBILL_NO":"MO000020","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-10T00:00:00","FPLAN_FINISH_DATE":"2022-01-10T00:00:00","FSTART_DATE":"2022-01-08T15:25:43","FFINISH_DATE":"2022-02-16T16:49:24"},{"FBILL_NO":"MO000020","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-12T00:00:00","FPLAN_FINISH_DATE":"2022-01-12T00:00:00","FSTART_DATE":"2022-01-11T09:32:43","FFINISH_DATE":"2022-02-16T16:49:24"},{"FBILL_NO":"MO000020","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-13T00:00:00","FPLAN_FINISH_DATE":"2022-01-13T00:00:00","FSTART_DATE":"2022-01-12T09:25:41","FFINISH_DATE":"2022-02-16T16:49:24"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-25T09:10:38","FFINISH_DATE":"2022-04-26T19:56:12"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-21T00:00:00","FPLAN_FINISH_DATE":"2022-04-21T00:00:00","FSTART_DATE":"2022-04-20T09:54:11","FFINISH_DATE":"2022-04-21T19:37:12"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"2022-04-21T09:16:32","FFINISH_DATE":"2022-04-22T19:39:03"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-06-16T16:14:09","FFINISH_DATE":"2022-06-16T16:14:09"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:30:34","FFINISH_DATE":"2022-05-20T20:04:09"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-20T08:53:16","FFINISH_DATE":"2022-05-21T18:26:50"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T09:36:39","FFINISH_DATE":"2022-05-23T19:55:29"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-23T00:00:00","FPLAN_FINISH_DATE":"2022-05-23T00:00:00","FSTART_DATE":"2022-05-21T09:10:45","FFINISH_DATE":"2022-05-24T19:38:44"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-23T09:48:43","FFINISH_DATE":"2022-06-16T15:08:01"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-25T00:00:00","FPLAN_FINISH_DATE":"2022-05-25T00:00:00","FSTART_DATE":"2022-05-24T09:39:19","FFINISH_DATE":"2022-05-25T20:22:05"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-25T09:17:22","FFINISH_DATE":"2022-05-26T20:14:57"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-25T07:30:00","FPLAN_FINISH_DATE":"2022-04-25T07:30:00","FSTART_DATE":"2022-04-22T10:16:26","FFINISH_DATE":"2022-04-25T19:37:02"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120763","FNUMBER":"402202020005","FMATERIAL_NAME":"沐歆澳棉经期裤低腰M码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000042","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T00:00:00","FPLAN_FINISH_DATE":"2022-04-19T00:00:00","FSTART_DATE":"2022-06-16T15:56:21","FFINISH_DATE":"2022-06-16T15:56:21"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-05-28T10:02:19","FFINISH_DATE":"2022-05-30T19:39:16"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T15:35:52","FFINISH_DATE":"2022-05-24T20:02:22"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-23T00:00:00","FPLAN_FINISH_DATE":"2022-05-23T00:00:00","FSTART_DATE":"2022-05-21T09:04:51","FFINISH_DATE":"2022-05-26T19:48:21"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-27T00:00:00","FPLAN_FINISH_DATE":"2022-05-27T00:00:00","FSTART_DATE":"2022-05-26T09:54:53","FFINISH_DATE":"2022-05-27T19:23:35"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-28T00:00:00","FPLAN_FINISH_DATE":"2022-05-28T00:00:00","FSTART_DATE":"2022-05-27T09:49:30","FFINISH_DATE":"2022-05-28T19:35:41"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-27T19:30:00","FPLAN_FINISH_DATE":"2022-05-27T19:30:00","FSTART_DATE":"2022-05-27T13:33:00","FFINISH_DATE":"2022-05-28T07:49:35"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120765","FNUMBER":"401202090007","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-06-16T16:13:54","FFINISH_DATE":"2022-06-16T16:13:54"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120765","FNUMBER":"401202090007","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-05-14T09:46:27","FFINISH_DATE":"2022-05-19T09:21:30"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120765","FNUMBER":"401202090007","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:16:29","FFINISH_DATE":"2022-05-20T21:10:22"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120765","FNUMBER":"401202090007","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T09:39:02","FFINISH_DATE":"2022-05-21T18:20:43"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120766","FNUMBER":"401202120008","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型超长夜用卫生巾410mm","FSPECIFICATION":"1*1200片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-27T00:00:00","FPLAN_FINISH_DATE":"2022-05-27T00:00:00","FSTART_DATE":"2022-05-23T09:44:06","FFINISH_DATE":"2022-05-31T19:01:07"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-06-01T09:36:19","FFINISH_DATE":"2022-06-13T07:51:41"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-05T00:00:00","FPLAN_FINISH_DATE":"2022-05-05T00:00:00","FSTART_DATE":"2022-05-04T10:20:08","FFINISH_DATE":"2022-05-06T19:55:58"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-06T09:15:43","FFINISH_DATE":"2022-05-07T19:13:51"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T09:47:03","FFINISH_DATE":"2022-06-16T16:02:00"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-07T09:52:11","FFINISH_DATE":"2022-05-10T09:12:43"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T10:03:39","FFINISH_DATE":"2022-05-12T19:36:07"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T10:24:31","FFINISH_DATE":"2022-05-14T08:17:41"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T19:30:00","FPLAN_FINISH_DATE":"2022-05-13T19:30:00","FSTART_DATE":"2022-05-13T09:30:32","FFINISH_DATE":"2022-05-14T09:17:44"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:32:00","FFINISH_DATE":"2022-06-16T16:01:43"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-06-01T00:00:00","FFINISH_DATE":"2022-06-01T19:43:38"},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T00:00:00","FPLAN_FINISH_DATE":"2022-07-05T00:00:00","FSTART_DATE":"2022-06-27T09:49:28","FFINISH_DATE":""},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-07-06T00:00:00","FPLAN_FINISH_DATE":"2022-07-06T00:00:00","FSTART_DATE":"2022-06-28T08:50:45","FFINISH_DATE":"2022-07-05T19:57:41"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120768","FNUMBER":"401203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-06-16T16:03:10","FFINISH_DATE":"2022-06-16T16:03:10"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120768","FNUMBER":"401203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-04-30T11:43:37","FFINISH_DATE":"2022-06-16T16:02:28"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120768","FNUMBER":"401203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-05-04T08:56:31","FFINISH_DATE":"2022-06-16T16:02:16"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120768","FNUMBER":"401203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-05T00:00:00","FPLAN_FINISH_DATE":"2022-05-05T00:00:00","FSTART_DATE":"2022-05-04T10:31:26","FFINISH_DATE":"2022-05-06T20:35:32"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120768","FNUMBER":"401203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-06T00:00:00","FPLAN_FINISH_DATE":"2022-05-06T00:00:00","FSTART_DATE":"2022-05-05T09:49:31","FFINISH_DATE":"2022-05-06T20:50:17"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120768","FNUMBER":"401203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-06T09:18:11","FFINISH_DATE":"2022-05-07T19:24:27"},{"FBILL_NO":"MO000055","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120768","FNUMBER":"401203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T00:00:00","FPLAN_FINISH_DATE":"2022-04-30T00:00:00","FSTART_DATE":"2022-04-27T13:43:01","FFINISH_DATE":"2022-04-27T13:43:01"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120769","FNUMBER":"401203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾 WSJ0306","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T10:25:50","FFINISH_DATE":"2022-05-14T08:33:03"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120769","FNUMBER":"401203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾 WSJ0306","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T09:53:49","FFINISH_DATE":"2022-05-10T08:45:15"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120769","FNUMBER":"401203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾 WSJ0306","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-07T09:55:47","FFINISH_DATE":"2022-05-11T19:40:03"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120769","FNUMBER":"401203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾 WSJ0306","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-10T10:09:41","FFINISH_DATE":"2022-05-12T07:46:04"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120769","FNUMBER":"401203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾 WSJ0306","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-10T19:30:00","FPLAN_FINISH_DATE":"2022-05-10T19:30:00","FSTART_DATE":"2022-05-11T09:19:57","FFINISH_DATE":"2022-05-18T16:34:08"},{"FBILL_NO":"MO000055","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120769","FNUMBER":"401203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾 WSJ0306","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T00:00:00","FPLAN_FINISH_DATE":"2022-04-30T00:00:00","FSTART_DATE":"2022-04-27T13:43:01","FFINISH_DATE":"2022-04-27T13:43:01"},{"FBILL_NO":"MO000028","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120771","FNUMBER":"401203040005","FMATERIAL_NAME":"上海比芭云霓180mm护翼迷你巾 WSJ0312","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-21T00:00:00","FPLAN_FINISH_DATE":"2022-03-21T00:00:00","FSTART_DATE":"2022-03-23T10:46:35","FFINISH_DATE":"2022-03-24T19:50:09"},{"FBILL_NO":"MO000028","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120771","FNUMBER":"401203040005","FMATERIAL_NAME":"上海比芭云霓180mm护翼迷你巾 WSJ0312","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-21T00:00:00","FPLAN_FINISH_DATE":"2022-03-21T00:00:00","FSTART_DATE":"2022-03-19T09:54:06","FFINISH_DATE":"2022-03-22T19:41:52"},{"FBILL_NO":"MO000028","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120771","FNUMBER":"401203040005","FMATERIAL_NAME":"上海比芭云霓180mm护翼迷你巾 WSJ0312","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-23T00:00:00","FPLAN_FINISH_DATE":"2022-03-23T00:00:00","FSTART_DATE":"2022-03-23T10:46:23","FFINISH_DATE":"2022-03-23T10:46:23"},{"FBILL_NO":"MO000028","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120771","FNUMBER":"401203040005","FMATERIAL_NAME":"上海比芭云霓180mm护翼迷你巾 WSJ0312","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-23T00:00:00","FPLAN_FINISH_DATE":"2022-03-23T00:00:00","FSTART_DATE":"2022-03-22T10:51:40","FFINISH_DATE":"2022-03-23T19:50:41"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120772","FNUMBER":"401203060006","FMATERIAL_NAME":"上海比芭云霓掌心包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-25T09:57:11","FFINISH_DATE":"2022-05-26T20:08:37"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120772","FNUMBER":"401203060006","FMATERIAL_NAME":"上海比芭云霓掌心包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:52:30","FFINISH_DATE":"2022-05-21T18:37:52"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120772","FNUMBER":"401203060006","FMATERIAL_NAME":"上海比芭云霓掌心包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T09:57:10","FFINISH_DATE":"2022-05-23T19:48:42"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120772","FNUMBER":"401203060006","FMATERIAL_NAME":"上海比芭云霓掌心包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-23T09:56:43","FFINISH_DATE":"2022-05-24T19:47:57"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120772","FNUMBER":"401203060006","FMATERIAL_NAME":"上海比芭云霓掌心包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T09:45:35","FFINISH_DATE":"2022-06-16T16:01:03"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120772","FNUMBER":"401203060006","FMATERIAL_NAME":"上海比芭云霓掌心包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-25T00:00:00","FPLAN_FINISH_DATE":"2022-05-25T00:00:00","FSTART_DATE":"2022-05-24T09:46:32","FFINISH_DATE":"2022-05-25T20:27:10"},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120774","FNUMBER":"402203020008","FMATERIAL_NAME":"上海比芭云霓经期裤低腰M码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-07-15T00:00:00","FPLAN_FINISH_DATE":"2022-07-15T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120789","FNUMBER":"408001000001","FMATERIAL_NAME":"安琦零侧漏300mm夜用丝薄棉质卫生巾 LC23205","FSPECIFICATION":"1*2000片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-23T00:00:00","FPLAN_FINISH_DATE":"2022-04-23T00:00:00","FSTART_DATE":"2022-06-08T14:31:44","FFINISH_DATE":"2022-06-08T14:31:44"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120790","FNUMBER":"408001000002","FMATERIAL_NAME":"安琦零侧漏300mm夜用丝薄爽棉卫生巾 LC23206","FSPECIFICATION":"1*2000片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-06-08T14:32:34","FFINISH_DATE":"2022-06-08T14:32:34"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120793","FNUMBER":"408001000005","FMATERIAL_NAME":"安琦245mm日用柔棉卫生巾 24201/29201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-25T09:28:15","FFINISH_DATE":"2022-05-28T17:48:24"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120793","FNUMBER":"408001000005","FMATERIAL_NAME":"安琦245mm日用柔棉卫生巾 24201/29201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FSTART_DATE":"2022-06-03T09:30:35","FFINISH_DATE":"2022-06-09T08:08:59"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120793","FNUMBER":"408001000005","FMATERIAL_NAME":"安琦245mm日用柔棉卫生巾 24201/29201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-06-02T09:45:34","FFINISH_DATE":"2022-06-07T20:10:20"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120794","FNUMBER":"408001000006","FMATERIAL_NAME":"安琦290mm夜用柔棉卫生巾 29201","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-23T00:00:00","FPLAN_FINISH_DATE":"2022-05-23T00:00:00","FSTART_DATE":"2022-05-21T09:31:50","FFINISH_DATE":"2022-05-26T14:18:19"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120794","FNUMBER":"408001000006","FMATERIAL_NAME":"安琦290mm夜用柔棉卫生巾 29201","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T09:54:16","FFINISH_DATE":"2022-05-23T17:42:56"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120794","FNUMBER":"408001000006","FMATERIAL_NAME":"安琦290mm夜用柔棉卫生巾 29201","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-06-02T09:49:06","FFINISH_DATE":"2022-06-07T21:05:23"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120797","FNUMBER":"408001000009","FMATERIAL_NAME":"安琦柠檬245mm日用棉柔卫生巾 29221","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-25T09:44:12","FFINISH_DATE":"2022-05-30T20:22:32"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120797","FNUMBER":"408001000009","FMATERIAL_NAME":"安琦柠檬245mm日用棉柔卫生巾 29221","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FSTART_DATE":"2022-06-02T09:43:05","FFINISH_DATE":"2022-06-06T19:56:38"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120798","FNUMBER":"408001000010","FMATERIAL_NAME":"安琦柠檬290mm夜用棉柔卫生巾 29221","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-26T09:37:01","FFINISH_DATE":"2022-05-30T19:50:06"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120798","FNUMBER":"408001000010","FMATERIAL_NAME":"安琦柠檬290mm夜用棉柔卫生巾 29221","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FSTART_DATE":"2022-06-01T10:50:37","FFINISH_DATE":"2022-06-06T19:44:10"},{"FBILL_NO":"MO000083","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120802","FNUMBER":"408001000014","FMATERIAL_NAME":"安琦零度清爽清凉290mm夜用棉柔卫生巾 49201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FSTART_DATE":"2022-06-01T08:36:03","FFINISH_DATE":"2022-06-02T19:25:15"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120803","FNUMBER":"408001000015","FMATERIAL_NAME":"安琦零度清爽清凉245mm日用干爽卫生巾 49202","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-28T00:00:00","FPLAN_FINISH_DATE":"2022-05-31T00:00:00","FSTART_DATE":"2022-05-31T10:24:27","FFINISH_DATE":"2022-06-16T16:11:55"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120803","FNUMBER":"408001000015","FMATERIAL_NAME":"安琦零度清爽清凉245mm日用干爽卫生巾 49202","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-31T00:00:00","FPLAN_FINISH_DATE":"2022-05-31T00:00:00","FSTART_DATE":"2022-05-31T10:37:52","FFINISH_DATE":"2022-06-01T20:08:37"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120804","FNUMBER":"408001000016","FMATERIAL_NAME":"安琦零度清爽清凉290mm夜用干爽卫生巾 49202","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-28T00:00:00","FPLAN_FINISH_DATE":"2022-05-28T00:00:00","FSTART_DATE":"2022-05-28T09:51:24","FFINISH_DATE":"2022-06-01T19:21:09"},{"FBILL_NO":"MO000012","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-08T00:00:00","FPLAN_FINISH_DATE":"2022-01-08T00:00:00","FSTART_DATE":"2022-01-07T10:07:43","FFINISH_DATE":"2022-02-16T17:09:52"},{"FBILL_NO":"MO000012","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-03T00:00:00","FPLAN_FINISH_DATE":"2022-01-03T00:00:00","FSTART_DATE":"2021-12-31T11:03:06","FFINISH_DATE":"2022-01-11T16:09:17"},{"FBILL_NO":"MO000012","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-04T00:00:00","FPLAN_FINISH_DATE":"2022-01-04T00:00:00","FSTART_DATE":"2022-01-03T10:04:16","FFINISH_DATE":"2022-01-11T16:09:17"},{"FBILL_NO":"MO000012","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-05T00:00:00","FPLAN_FINISH_DATE":"2022-01-05T00:00:00","FSTART_DATE":"2022-01-05T09:43:52","FFINISH_DATE":"2022-01-11T16:09:17"},{"FBILL_NO":"MO000016","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-22T00:00:00","FPLAN_FINISH_DATE":"2022-02-22T00:00:00","FSTART_DATE":"2022-02-21T16:01:23","FFINISH_DATE":"2022-02-23T12:41:42"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-22T00:00:00","FPLAN_FINISH_DATE":"2022-02-22T00:00:00","FSTART_DATE":"2022-02-21T16:44:18","FFINISH_DATE":"2022-02-22T08:02:12"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T19:30:00","FPLAN_FINISH_DATE":"2022-04-08T19:30:00","FSTART_DATE":"2022-04-08T10:53:39","FFINISH_DATE":"2022-04-09T19:27:16"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T07:30:00","FPLAN_FINISH_DATE":"2022-04-08T07:30:00","FSTART_DATE":"2022-04-08T09:26:36","FFINISH_DATE":"2022-04-08T09:26:36"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T07:30:00","FPLAN_FINISH_DATE":"2022-04-08T07:30:00","FSTART_DATE":"2022-04-08T10:51:52","FFINISH_DATE":"2022-04-09T08:03:10"},{"FBILL_NO":"MO000012","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-06T00:00:00","FPLAN_FINISH_DATE":"2022-01-06T00:00:00","FSTART_DATE":"2022-01-05T09:47:44","FFINISH_DATE":"2022-01-11T16:09:17"},{"FBILL_NO":"MO000012","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-07T00:00:00","FPLAN_FINISH_DATE":"2022-01-07T00:00:00","FSTART_DATE":"2022-01-06T10:21:29","FFINISH_DATE":"2022-01-11T16:09:06"},{"FBILL_NO":"MO000030","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-12T00:00:00","FPLAN_FINISH_DATE":"2022-04-12T00:00:00","FSTART_DATE":"2022-04-09T10:18:18","FFINISH_DATE":"2022-06-08T14:29:28"},{"FBILL_NO":"MO000030","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T19:30:00","FPLAN_FINISH_DATE":"2022-04-08T19:30:00","FSTART_DATE":"2022-04-08T09:42:47","FFINISH_DATE":"2022-04-11T08:14:05"},{"FBILL_NO":"MO000030","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-09T07:30:00","FPLAN_FINISH_DATE":"2022-04-09T07:30:00","FSTART_DATE":"2022-04-08T09:44:45","FFINISH_DATE":"2022-06-08T14:29:11"},{"FBILL_NO":"MO000014","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-02T00:00:00","FPLAN_FINISH_DATE":"2022-01-07T00:00:00","FSTART_DATE":"2021-12-31T10:54:46","FFINISH_DATE":"2022-01-04T15:35:19"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120807","FNUMBER":"401001040001","FMATERIAL_NAME":"安琦零侧漏180mm直条迷你巾 LC18181","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-07T00:00:00","FPLAN_FINISH_DATE":"2022-03-07T00:00:00","FSTART_DATE":"2022-03-05T09:49:16","FFINISH_DATE":"2022-03-09T20:37:42"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120807","FNUMBER":"401001040001","FMATERIAL_NAME":"安琦零侧漏180mm直条迷你巾 LC18181","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-18T09:06:28","FFINISH_DATE":"2022-06-23T07:44:38"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120808","FNUMBER":"401001040002","FMATERIAL_NAME":"安琦零侧漏180mm护翼迷你巾 LC18101","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-02T19:30:00","FPLAN_FINISH_DATE":"2022-04-02T19:30:00","FSTART_DATE":"2022-04-02T08:53:43","FFINISH_DATE":"2022-04-03T09:49:48"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120810","FNUMBER":"401001040004","FMATERIAL_NAME":"安琦180mm清爽棉质迷你巾 48121&49201/49202赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:27:16","FFINISH_DATE":"2022-05-17T08:20:25"},{"FBILL_NO":"MO000083","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120810","FNUMBER":"401001040004","FMATERIAL_NAME":"安琦180mm清爽棉质迷你巾 48121&49201/49202赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FSTART_DATE":"2022-06-03T09:31:49","FFINISH_DATE":"2022-06-07T20:17:14"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120811","FNUMBER":"401001040005","FMATERIAL_NAME":"安琦180mm棉质迷你巾 T1860","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-04T19:30:00","FPLAN_FINISH_DATE":"2022-03-04T19:30:00","FSTART_DATE":"2022-03-04T10:13:17","FFINISH_DATE":"2022-03-05T09:06:16"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-03T19:30:00","FPLAN_FINISH_DATE":"2022-03-03T19:30:00","FSTART_DATE":"2022-03-03T09:46:41","FFINISH_DATE":"2022-03-04T08:29:08"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-26T07:30:00","FPLAN_FINISH_DATE":"2022-02-26T07:30:00","FSTART_DATE":"2022-02-25T14:08:16","FFINISH_DATE":"2022-02-28T19:59:36"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-26T19:30:00","FPLAN_FINISH_DATE":"2022-02-26T19:30:00","FSTART_DATE":"2022-02-26T09:55:40","FFINISH_DATE":"2022-02-27T08:00:31"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-27T07:30:00","FPLAN_FINISH_DATE":"2022-02-27T07:30:00","FSTART_DATE":"2022-02-26T09:59:03","FFINISH_DATE":"2022-02-27T17:31:36"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-28T07:30:00","FPLAN_FINISH_DATE":"2022-02-28T07:30:00","FSTART_DATE":"2022-02-26T15:00:22","FFINISH_DATE":"2022-03-03T07:41:53"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-01T07:30:00","FPLAN_FINISH_DATE":"2022-03-01T07:30:00","FSTART_DATE":"2022-02-28T10:25:51","FFINISH_DATE":"2022-03-03T20:21:34"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-07T19:30:00","FPLAN_FINISH_DATE":"2022-04-07T19:30:00","FSTART_DATE":"2022-04-07T09:39:29","FFINISH_DATE":"2022-04-08T07:31:34"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T07:30:00","FPLAN_FINISH_DATE":"2022-04-08T07:30:00","FSTART_DATE":"2022-04-07T09:45:25","FFINISH_DATE":"2022-04-08T19:33:44"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-05-18T10:09:43","FFINISH_DATE":"2022-05-19T18:44:41"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FSTART_DATE":"2022-06-01T10:43:41","FFINISH_DATE":"2022-06-03T08:30:19"},{"FBILL_NO":"MO000082","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-14T09:23:57","FFINISH_DATE":"2022-06-20T20:14:15"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FSTART_DATE":"2022-06-01T10:42:13","FFINISH_DATE":"2022-06-01T10:42:13"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T07:30:00","FPLAN_FINISH_DATE":"2022-04-08T07:30:00","FSTART_DATE":"2022-06-08T14:28:39","FFINISH_DATE":"2022-06-08T14:28:39"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T00:00:00","FPLAN_FINISH_DATE":"2022-04-06T00:00:00","FSTART_DATE":"2022-04-03T09:49:06","FFINISH_DATE":"2022-04-07T07:50:38"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-07T07:30:00","FPLAN_FINISH_DATE":"2022-04-07T07:30:00","FSTART_DATE":"2022-04-06T10:10:17","FFINISH_DATE":"2022-04-07T20:00:23"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-23T00:00:00","FPLAN_FINISH_DATE":"2022-04-23T00:00:00","FSTART_DATE":"2022-06-16T15:52:18","FFINISH_DATE":"2022-06-16T15:52:18"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-06T00:00:00","FPLAN_FINISH_DATE":"2022-05-06T00:00:00","FSTART_DATE":"2022-05-08T08:28:53","FFINISH_DATE":"2022-05-08T17:34:48"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-06-08T14:31:20","FFINISH_DATE":"2022-06-08T14:31:20"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T11:07:46","FFINISH_DATE":"2022-06-08T14:31:31"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-11T15:54:52","FFINISH_DATE":"2022-06-24T17:56:32"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120814","FNUMBER":"401001050002","FMATERIAL_NAME":"安琦零侧漏240mm丝薄爽棉日用卫生巾 LC24188","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-11T09:31:41","FFINISH_DATE":"2022-06-20T19:58:52"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120821","FNUMBER":"401001070001","FMATERIAL_NAME":"安琦零侧漏260mm棉质卫生巾 LC26181/LC26161/LC26201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-17T08:55:03","FFINISH_DATE":"2022-06-23T18:03:11"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120823","FNUMBER":"401001060002","FMATERIAL_NAME":"安琦零侧漏纯棉245mm棉质卫生巾 LCQ26161","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T10:06:05","FFINISH_DATE":"2022-05-11T19:52:48"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120823","FNUMBER":"401001060002","FMATERIAL_NAME":"安琦零侧漏纯棉245mm棉质卫生巾 LCQ26161","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-07T10:55:47","FFINISH_DATE":"2022-05-08T17:40:10"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120823","FNUMBER":"401001060002","FMATERIAL_NAME":"安琦零侧漏纯棉245mm棉质卫生巾 LCQ26161","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-07T14:18:57","FFINISH_DATE":"2022-05-10T10:09:41"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120823","FNUMBER":"401001060002","FMATERIAL_NAME":"安琦零侧漏纯棉245mm棉质卫生巾 LCQ26161","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-14T13:58:23","FFINISH_DATE":"2022-06-17T19:22:11"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120825","FNUMBER":"401001090001","FMATERIAL_NAME":"安琦云感柔棉舒睡290mm夜用卫生巾 CS29181/YR2201/YR3201/YR2181","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-08T00:00:00","FPLAN_FINISH_DATE":"2022-06-08T00:00:00","FSTART_DATE":"2022-06-06T08:59:39","FFINISH_DATE":"2022-06-09T18:56:53"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120827","FNUMBER":"401001100001","FMATERIAL_NAME":"安琦零侧漏300mm棉质夜用卫生巾LC30161&LC30151","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"2022-06-09T09:05:57","FFINISH_DATE":"2022-06-18T17:15:23"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120827","FNUMBER":"401001100001","FMATERIAL_NAME":"安琦零侧漏300mm棉质夜用卫生巾LC30161&LC30151","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-06-11T09:27:47","FFINISH_DATE":"2022-06-16T20:06:00"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120828","FNUMBER":"401001100002","FMATERIAL_NAME":"安琦零侧漏300mm爽棉夜用卫生巾 LC30152","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-29T00:00:00","FPLAN_FINISH_DATE":"2022-04-29T00:00:00","FSTART_DATE":"2022-06-03T09:27:47","FFINISH_DATE":"2022-06-16T15:40:50"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120828","FNUMBER":"401001100002","FMATERIAL_NAME":"安琦零侧漏300mm爽棉夜用卫生巾 LC30152","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FSTART_DATE":"2022-06-06T08:53:02","FFINISH_DATE":"2022-06-10T19:28:15"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120829","FNUMBER":"401001090003","FMATERIAL_NAME":"安琦零侧漏纯棉290mm棉质夜用卫生巾 LCQ30151","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T00:00:00","FPLAN_FINISH_DATE":"2022-04-19T00:00:00","FSTART_DATE":"2022-06-08T14:32:45","FFINISH_DATE":"2022-06-08T14:32:45"},{"FBILL_NO":"MO000085","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120829","FNUMBER":"401001090003","FMATERIAL_NAME":"安琦零侧漏纯棉290mm棉质夜用卫生巾 LCQ30151","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-06-13T09:31:50","FFINISH_DATE":"2022-06-15T19:45:42"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120831","FNUMBER":"401001090005","FMATERIAL_NAME":"安琦薄柔感3D凸棉290mm夜用卫生巾 BR30083&BR24303","FSPECIFICATION":"1*2200片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"2022-04-20T10:13:40","FFINISH_DATE":"2022-04-26T19:41:43"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120834","FNUMBER":"401001110001","FMATERIAL_NAME":"安琦350mm加长夜用棉质卫生巾 T3501","FSPECIFICATION":"1*1000片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-06T00:00:00","FPLAN_FINISH_DATE":"2022-06-06T00:00:00","FSTART_DATE":"2022-06-03T09:29:21","FFINISH_DATE":"2022-06-07T19:53:15"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120838","FNUMBER":"401001120002","FMATERIAL_NAME":"安琦云感棉超长夜用420大扇尾 CS42081","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-28T10:39:00","FFINISH_DATE":""},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120838","FNUMBER":"401001120002","FMATERIAL_NAME":"安琦云感棉超长夜用420大扇尾 CS42081","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-07T17:06:49","FFINISH_DATE":"2022-06-24T17:53:41"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120839","FNUMBER":"401001120003","FMATERIAL_NAME":"安琦薄柔感3D凸棉410mm超长夜用卫生巾 BR41063","FSPECIFICATION":"1*1200片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-23T00:00:00","FPLAN_FINISH_DATE":"2022-05-27T00:00:00","FSTART_DATE":"2022-05-21T09:20:57","FFINISH_DATE":"2022-06-02T17:19:39"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120840","FNUMBER":"402001040001","FMATERIAL_NAME":"安琦夜无忧低腰M-L码经期裤 DQL03&DQL05","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"121767","FNUMBER":"301207040001","FMATERIAL_NAME":"小姐妹180护垫迷你巾 #1180 白片","FSPECIFICATION":" ","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-21T14:07:25","FPLAN_FINISH_DATE":"2022-04-21T14:07:25","FSTART_DATE":"2022-06-03T09:35:14","FFINISH_DATE":"2022-06-09T19:28:46"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"121767","FNUMBER":"301207040001","FMATERIAL_NAME":"小姐妹180护垫迷你巾 #1180 白片","FSPECIFICATION":" ","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T14:07:25","FPLAN_FINISH_DATE":"2022-05-07T14:07:25","FSTART_DATE":"2022-06-03T09:32:43","FFINISH_DATE":"2022-06-03T09:32:43"},{"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156916","FNUMBER":"401003050003","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气240mm日用卫生巾O24005&OH2405","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:46:37","FFINISH_DATE":"2022-05-24T16:46:37"},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156916","FNUMBER":"401003050003","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气240mm日用卫生巾O24005&OH2405","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-05-28T14:52:11","FFINISH_DATE":"2022-06-02T17:28:01"},{"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156917","FNUMBER":"401003090004","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气290mm夜用卫生巾O29505&OH2905","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:46:11","FFINISH_DATE":"2022-05-24T16:46:11"},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156917","FNUMBER":"401003090004","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气290mm夜用卫生巾O29505&OH2905","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-05-31T09:43:46","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156919","FNUMBER":"402003020007","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气M-L号低腰经期裤OM0002&OM02&OHK-M02&HXK02","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156919","FNUMBER":"402003020007","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气M-L号低腰经期裤OM0002&OM02&OHK-M02&HXK02","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156920","FNUMBER":"402003040006","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气L-XL号低腰经期裤OL0002&OL02&OHK-L02","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156920","FNUMBER":"402003040006","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气L-XL号低腰经期裤OL0002&OL02&OHK-L02","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156925","FNUMBER":"302003020007","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气M-L号低腰经期裤OM0002","FSPECIFICATION":"2片/包*48包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T10:37:39","FPLAN_FINISH_DATE":"2022-06-15T10:37:39","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156926","FNUMBER":"302003040006","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气L-XL号低腰经期裤OL0002","FSPECIFICATION":"2片/包*48包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T10:37:39","FPLAN_FINISH_DATE":"2022-06-15T10:37:39","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000076","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161234","FNUMBER":"401109060004","FMATERIAL_NAME":"云集心悦24悦薄无感蚕丝245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-06-11T09:26:22","FFINISH_DATE":""},{"FBILL_NO":"MO000076","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161234","FNUMBER":"401109060004","FMATERIAL_NAME":"云集心悦24悦薄无感蚕丝245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-06-13T09:13:52","FFINISH_DATE":"2022-06-18T07:55:04"},{"FBILL_NO":"MO000076","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161237","FNUMBER":"301109060004","FMATERIAL_NAME":"云集心悦24悦薄无感蚕丝245mm日用卫生巾","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-30T16:54:41","FPLAN_FINISH_DATE":"2022-05-30T16:54:41","FSTART_DATE":"2022-06-11T15:19:15","FFINISH_DATE":"2022-06-24T13:33:10"},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161245","FNUMBER":"402003020008","FMATERIAL_NAME":"呼吸时代轻呼吸系列低腰(M-L)M码经期裤 QK-M03","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-09T09:16:54","FFINISH_DATE":""},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161438","FNUMBER":"401201060008","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华245mm日用卫生巾 ZW114","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161438","FNUMBER":"401201060008","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华245mm日用卫生巾 ZW114","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-10T10:23:30","FFINISH_DATE":"2022-06-16T16:06:22"},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161438","FNUMBER":"401201060008","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华245mm日用卫生巾 ZW114","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T10:36:10","FFINISH_DATE":"2022-05-17T09:26:40"},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161438","FNUMBER":"401201060008","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华245mm日用卫生巾 ZW114","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:34:35","FFINISH_DATE":"2022-05-17T19:30:40"},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161439","FNUMBER":"401201080009","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华285mm夜用卫生巾ZW115","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161439","FNUMBER":"401201080009","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华285mm夜用卫生巾ZW115","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-02T00:00:00","FPLAN_FINISH_DATE":"2022-05-02T00:00:00","FSTART_DATE":"2022-04-30T10:33:51","FFINISH_DATE":"2022-05-20T20:09:00"},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161439","FNUMBER":"401201080009","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华285mm夜用卫生巾ZW115","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-03T00:00:00","FPLAN_FINISH_DATE":"2022-05-03T00:00:00","FSTART_DATE":"2022-05-18T00:00:00","FFINISH_DATE":"2022-05-19T19:57:34"},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161439","FNUMBER":"401201080009","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华285mm夜用卫生巾ZW115","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-04-30T10:44:36","FFINISH_DATE":"2022-06-16T16:06:36"},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161440","FNUMBER":"301201060008","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华245mm日用卫生巾 ZW114","FSPECIFICATION":"8片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-07T09:18:52","FPLAN_FINISH_DATE":"2022-05-07T09:18:52","FSTART_DATE":"2022-05-11T16:55:25","FFINISH_DATE":""},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161442","FNUMBER":"301201080009","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华285mm夜用卫生巾 ZW115","FSPECIFICATION":"6片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-14T09:18:58","FPLAN_FINISH_DATE":"2022-05-14T09:18:58","FSTART_DATE":"2022-05-11T16:55:02","FFINISH_DATE":""},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161450","FNUMBER":"301501040014","FMATERIAL_NAME":"雨森百丽纤爽180mm护翼迷你巾20片装 BL5631","FSPECIFICATION":"20片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-28T10:41:40","FPLAN_FINISH_DATE":"2022-02-28T10:41:40","FSTART_DATE":"2022-03-13T15:02:40","FFINISH_DATE":"2022-04-06T18:54:29"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161451","FNUMBER":"401501040008","FMATERIAL_NAME":"雨森百丽纤爽180mm护翼迷你巾BL5631","FSPECIFICATION":"1*300片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-10T00:00:00","FPLAN_FINISH_DATE":"2022-03-11T00:00:00","FSTART_DATE":"2022-03-11T09:37:42","FFINISH_DATE":"2022-05-25T11:08:39"},{"FBILL_NO":"MO000028","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161710","FNUMBER":"301210020001","FMATERIAL_NAME":"印度M.O. 系列150mm护垫白片装","FSPECIFICATION":"4000","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-19T11:20:12","FPLAN_FINISH_DATE":"2022-03-19T11:20:12","FSTART_DATE":"2022-03-18T14:36:49","FFINISH_DATE":"2022-06-16T15:02:54"},{"FBILL_NO":"MO000083","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161792","FNUMBER":"401001060008","FMATERIAL_NAME":"安琦零度清爽系列245mm日用卫生巾 49201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FSTART_DATE":"2022-06-01T12:57:09","FFINISH_DATE":"2022-06-02T19:43:20"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161796","FNUMBER":"401001050006","FMATERIAL_NAME":"安琦零侧漏240mm丝薄爽棉日用卫生巾 LC23206","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-07T14:23:51","FFINISH_DATE":"2022-05-10T09:16:17"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161796","FNUMBER":"401001050006","FMATERIAL_NAME":"安琦零侧漏240mm丝薄爽棉日用卫生巾 LC23206","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T10:34:13","FFINISH_DATE":"2022-05-10T08:56:58"},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161829","FNUMBER":"401001090006","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列290mm夜用卫生巾 DC2905","FSPECIFICATION":"1*2200片","FWORK_SHOP":"14号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161830","FNUMBER":"401001090007","FMATERIAL_NAME":"安琦有机纯棉系列290mm夜用卫生巾 BC2908C","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-18T00:00:00","FPLAN_FINISH_DATE":"2022-04-18T00:00:00","FSTART_DATE":"2022-06-08T14:33:24","FFINISH_DATE":"2022-06-08T14:33:24"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161831","FNUMBER":"401001060005","FMATERIAL_NAME":"安琦有机纯棉系列245mm日用卫生巾 BC2410C","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-06T00:00:00","FPLAN_FINISH_DATE":"2022-05-06T00:00:00","FSTART_DATE":"2022-05-06T08:01:21","FFINISH_DATE":"2022-05-07T19:17:54"},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161832","FNUMBER":"401001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列245mm夜用卫生巾 DC2407","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"2022-06-08T09:32:44","FFINISH_DATE":"2022-06-20T20:25:41"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161857","FNUMBER":"401001060006","FMATERIAL_NAME":"安琦掌心包系列245mm日用卫生巾 MN24161","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:50:40","FFINISH_DATE":"2022-05-20T19:40:01"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161857","FNUMBER":"401001060006","FMATERIAL_NAME":"安琦掌心包系列245mm日用卫生巾 MN24161","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-05-18T10:11:49","FFINISH_DATE":"2022-05-19T21:09:34"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161858","FNUMBER":"401001090008","FMATERIAL_NAME":"安琦掌心包系列290mm夜用卫生巾 MN29141","FSPECIFICATION":"1*2200片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-28T09:58:47","FFINISH_DATE":"2022-05-31T17:17:52"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161917","FNUMBER":"401001120004","FMATERIAL_NAME":"安琦零侧漏410mm超长夜用直条卫生巾 LC41031&LC41061","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-20T00:00:00","FPLAN_FINISH_DATE":"2022-04-20T00:00:00","FSTART_DATE":"2022-06-08T14:33:07","FFINISH_DATE":"2022-06-08T14:33:07"},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161918","FNUMBER":"401001120005","FMATERIAL_NAME":"安琦电商薄羽蚕丝410mm超长夜用直条卫生巾 DC4204","FSPECIFICATION":"1*1200片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162471","FNUMBER":"401301040001","FMATERIAL_NAME":"恋呼吸全透气180mm迷你卫生巾","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-21T09:09:16","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162471","FNUMBER":"401301040001","FMATERIAL_NAME":"恋呼吸全透气180mm迷你卫生巾","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-06-28T17:13:27","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162472","FNUMBER":"401301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-28T17:13:27","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162472","FNUMBER":"401301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-28T17:13:27","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162472","FNUMBER":"401301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-27T00:00:00","FPLAN_FINISH_DATE":"2022-05-27T00:00:00","FSTART_DATE":"2022-05-26T15:32:55","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162473","FNUMBER":"401301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-28T17:13:27","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162473","FNUMBER":"401301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-05-30T09:46:28","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162474","FNUMBER":"401301120001","FMATERIAL_NAME":"恋呼吸全透气410mm超长夜用卫生巾","FSPECIFICATION":"1*1200片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-02T09:53:25","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162474","FNUMBER":"401301120001","FMATERIAL_NAME":"恋呼吸全透气410mm超长夜用卫生巾","FSPECIFICATION":"1*1200片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-06-28T17:13:27","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162475","FNUMBER":"402301020001","FMATERIAL_NAME":"恋呼吸全透气M-L号低腰M经期裤","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-28T17:13:27","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162475","FNUMBER":"402301020001","FMATERIAL_NAME":"恋呼吸全透气M-L号低腰M经期裤","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-06-28T17:13:27","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000051","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162492","FNUMBER":"401103070001","FMATERIAL_NAME":"隆力奇清欣磁动力日用卫生巾260mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-26T16:07:08","FFINISH_DATE":"2022-04-26T16:09:31"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162565","FNUMBER":"301104110002","FMATERIAL_NAME":"唯尔福345mm超长夜用卫生巾 白片","FSPECIFICATION":"白片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-06-16T16:09:11","FFINISH_DATE":"2022-06-16T16:09:11"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162565","FNUMBER":"301104110002","FMATERIAL_NAME":"唯尔福345mm超长夜用卫生巾 白片","FSPECIFICATION":"白片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-07T08:20:26","FFINISH_DATE":"2022-06-16T16:08:01"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162638","FNUMBER":"401100060022","FMATERIAL_NAME":"倍舒特掌心魔力包245mm日用卫生巾 ML14510","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-10T10:31:50","FFINISH_DATE":"2022-05-10T10:31:50"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162638","FNUMBER":"401100060022","FMATERIAL_NAME":"倍舒特掌心魔力包245mm日用卫生巾 ML14510","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-26T14:09:52","FFINISH_DATE":"2022-05-26T14:09:52"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162638","FNUMBER":"401100060022","FMATERIAL_NAME":"倍舒特掌心魔力包245mm日用卫生巾 ML14510","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-10T10:35:04","FFINISH_DATE":"2022-05-12T20:20:27"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162638","FNUMBER":"401100060022","FMATERIAL_NAME":"倍舒特掌心魔力包245mm日用卫生巾 ML14510","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T09:54:50","FFINISH_DATE":"2022-05-17T09:48:02"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162638","FNUMBER":"401100060022","FMATERIAL_NAME":"倍舒特掌心魔力包245mm日用卫生巾 ML14510","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-05-14T09:56:15","FFINISH_DATE":"2022-05-17T21:13:35"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162638","FNUMBER":"401100060022","FMATERIAL_NAME":"倍舒特掌心魔力包245mm日用卫生巾 ML14510","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T10:16:13","FFINISH_DATE":"2022-05-17T21:18:41"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162638","FNUMBER":"401100060022","FMATERIAL_NAME":"倍舒特掌心魔力包245mm日用卫生巾 ML14510","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T15:45:30","FFINISH_DATE":"2022-05-18T19:11:14"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162639","FNUMBER":"401100090023","FMATERIAL_NAME":"倍舒特掌心魔力包290mm日用卫生巾 ML16509","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-10T10:32:20","FFINISH_DATE":"2022-05-10T10:32:20"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162639","FNUMBER":"401100090023","FMATERIAL_NAME":"倍舒特掌心魔力包290mm日用卫生巾 ML16509","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-23T10:04:46","FFINISH_DATE":"2022-05-30T19:59:19"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162754","FNUMBER":"401515060001","FMATERIAL_NAME":"金博士纤薄240mm日用卫生巾 JBJ-8500","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-03T08:38:47","FFINISH_DATE":"2022-05-05T19:27:54"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162755","FNUMBER":"401515060002","FMATERIAL_NAME":"金博士丝薄240mm日用卫生巾 JBJ-8548","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-10T00:00:00","FPLAN_FINISH_DATE":"2022-05-10T00:00:00","FSTART_DATE":"2022-06-16T16:09:42","FFINISH_DATE":"2022-06-16T16:09:42"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162756","FNUMBER":"401515090001","FMATERIAL_NAME":"金博士丝薄290mm夜用卫生巾 JBJ-8555","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T10:28:54","FFINISH_DATE":"2022-05-12T18:39:02"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162757","FNUMBER":"401515090002","FMATERIAL_NAME":"金博士纤薄290mm夜用卫生巾JBJ-8517","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-01T00:00:00","FPLAN_FINISH_DATE":"2022-05-01T00:00:00","FSTART_DATE":"2022-04-30T09:29:18","FFINISH_DATE":"2022-05-02T19:27:51"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162757","FNUMBER":"401515090002","FMATERIAL_NAME":"金博士纤薄290mm夜用卫生巾JBJ-8517","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T00:00:00","FPLAN_FINISH_DATE":"2022-04-30T00:00:00","FSTART_DATE":"2022-04-29T13:44:17","FFINISH_DATE":"2022-05-03T17:31:17"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162758","FNUMBER":"401515110001","FMATERIAL_NAME":"金博士350mm纤薄夜用卫生巾JBJ-8524","FSPECIFICATION":"1*1000片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-02T00:00:00","FPLAN_FINISH_DATE":"2022-05-02T00:00:00","FSTART_DATE":"2022-04-30T09:27:57","FFINISH_DATE":"2022-05-18T15:42:15"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162758","FNUMBER":"401515110001","FMATERIAL_NAME":"金博士350mm纤薄夜用卫生巾JBJ-8524","FSPECIFICATION":"1*1000片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T00:00:00","FPLAN_FINISH_DATE":"2022-04-30T00:00:00","FSTART_DATE":"2022-04-29T13:41:22","FFINISH_DATE":"2022-05-02T19:48:50"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162758","FNUMBER":"401515110001","FMATERIAL_NAME":"金博士350mm纤薄夜用卫生巾JBJ-8524","FSPECIFICATION":"1*1000片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-01T00:00:00","FPLAN_FINISH_DATE":"2022-05-01T00:00:00","FSTART_DATE":"2022-04-30T09:26:15","FFINISH_DATE":"2022-05-05T07:30:08"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162759","FNUMBER":"401515120001","FMATERIAL_NAME":"金博士410mm纤薄超长夜用卫生巾JBJ-8531","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-03T00:00:00","FPLAN_FINISH_DATE":"2022-05-03T00:00:00","FSTART_DATE":"2022-06-16T16:10:42","FFINISH_DATE":"2022-06-16T16:10:42"},{"FBILL_NO":"MO000094","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162769","FNUMBER":"301210090002","FMATERIAL_NAME":"印度M.O. 系列290mm夜用卫生巾 白片装","FSPECIFICATION":"1000","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-06T00:00:00","FPLAN_FINISH_DATE":"2022-06-06T00:00:00","FSTART_DATE":"2022-06-06T12:04:12","FFINISH_DATE":"2022-06-09T22:51:46"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163002","FNUMBER":"301001060006","FMATERIAL_NAME":"安琦掌心包245mm卫生巾16片 MN24161","FSPECIFICATION":"16片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-06T00:00:00","FPLAN_FINISH_DATE":"2022-05-06T00:00:00","FSTART_DATE":"2022-05-18T19:23:23","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163003","FNUMBER":"301001090006","FMATERIAL_NAME":"安琦掌心包290mm夜用卫生巾14片 MN29141","FSPECIFICATION":"14片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-18T19:28:21","FFINISH_DATE":"2022-07-01T15:37:49"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163004","FNUMBER":"301001090007","FMATERIAL_NAME":"安琦有机纯棉棉柔纤巧夜用卫生巾(285mm)BC2908C","FSPECIFICATION":"8片×30包","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-18T00:00:00","FPLAN_FINISH_DATE":"2022-04-18T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163005","FNUMBER":"301001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列丝薄日用卫生巾(245mm)","FSPECIFICATION":"7片/包×100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"2022-06-16T12:39:51","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163006","FNUMBER":"301001060008","FMATERIAL_NAME":"安琦有机纯棉系列棉柔纤巧日用卫生巾(245mm)BC2410C","FSPECIFICATION":"10片×30包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163007","FNUMBER":"301001090008","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列夜用丝薄卫生巾(290mm)DC2905","FSPECIFICATION":"5片/包×100包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163008","FNUMBER":"301001120005","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列棉质丝薄超长夜用卫生巾(410mm)DC4204","FSPECIFICATION":"4片/包*100包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163042","FNUMBER":"302500020011","FMATERIAL_NAME":"丝宝洁婷透气棉透气优裤系列经期裤M-L号低腰M码K102","FSPECIFICATION":"2片/包*48包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-06-22T11:27:41","FFINISH_DATE":"2022-06-22T11:27:41"},{"FBILL_NO":"MO000065","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163043","FNUMBER":"302500020012","FMATERIAL_NAME":"丝宝洁婷透气棉透气优裤系列经期裤M-L号低腰M码K102+1","FSPECIFICATION":"3片/包*48包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-06-22T11:29:13","FFINISH_DATE":"2022-06-22T11:29:13"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163043","FNUMBER":"302500020012","FMATERIAL_NAME":"丝宝洁婷透气棉透气优裤系列经期裤M-L号低腰M码K102+1","FSPECIFICATION":"3片/包*48包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-06-22T11:28:34","FFINISH_DATE":"2022-06-22T11:28:34"},{"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-27T12:21:48","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"13号机","FUNIT_ID":"包","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T10:37:39","FPLAN_FINISH_DATE":"2022-06-03T10:37:39","FSTART_DATE":"2022-06-02T09:06:22","FFINISH_DATE":""},{"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-27T12:21:39","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"包","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T10:37:39","FPLAN_FINISH_DATE":"2022-05-30T10:37:39","FSTART_DATE":"2022-06-02T09:07:52","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163208","FNUMBER":"301515060001","FMATERIAL_NAME":"金博士纤薄240mm日用卫生巾JBJ-8500","FSPECIFICATION":"10片*36包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-13T13:18:35","FPLAN_FINISH_DATE":"2022-05-13T13:18:35","FSTART_DATE":"2022-05-18T14:56:51","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163209","FNUMBER":"301515060002","FMATERIAL_NAME":"金博士丝薄240mm日用卫生巾JBJ-8548","FSPECIFICATION":"10片*36包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-10T13:18:35","FPLAN_FINISH_DATE":"2022-05-10T13:18:35","FSTART_DATE":"2022-05-18T14:56:39","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163210","FNUMBER":"301515060003","FMATERIAL_NAME":"金博士丝薄240mm日用卫生巾JBJ-8548-1","FSPECIFICATION":"1片/包","FWORK_SHOP":"15号机","FUNIT_ID":"包","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-10T13:18:35","FPLAN_FINISH_DATE":"2022-05-10T13:18:35","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163211","FNUMBER":"301515090002","FMATERIAL_NAME":"金博士纤薄290mm夜用卫生巾JBJ-8517","FSPECIFICATION":"8片*36包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T13:18:35","FPLAN_FINISH_DATE":"2022-05-13T13:18:35","FSTART_DATE":"2022-05-18T14:57:21","FFINISH_DATE":"2022-05-26T10:27:06"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163212","FNUMBER":"301515090001","FMATERIAL_NAME":"金博士丝薄290mm夜用卫生巾JBJ-8555","FSPECIFICATION":"8片*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-07T13:18:35","FPLAN_FINISH_DATE":"2022-05-07T13:18:35","FSTART_DATE":"2022-05-18T14:57:35","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163213","FNUMBER":"301515110001","FMATERIAL_NAME":"金博士纤薄350mm夜用卫生巾JBJ-8524","FSPECIFICATION":"6片*36包/箱","FWORK_SHOP":"8号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-04-30T13:18:35","FPLAN_FINISH_DATE":"2022-04-30T13:18:35","FSTART_DATE":"2022-05-18T14:57:45","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163214","FNUMBER":"301515120001","FMATERIAL_NAME":"金博士纤薄410mm超长夜用卫生巾JBJ-8531","FSPECIFICATION":"4片*36包/箱","FWORK_SHOP":"10号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-03T13:18:35","FPLAN_FINISH_DATE":"2022-05-03T13:18:35","FSTART_DATE":"2022-05-18T14:57:58","FFINISH_DATE":""},{"FBILL_NO":"MO000042","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163413","FNUMBER":"301202060018","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm 3片装*200包 中国版","FSPECIFICATION":"3片/包*200包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-19T10:01:25","FPLAN_FINISH_DATE":"2022-04-19T10:01:25","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163413","FNUMBER":"301202060018","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm 3片装*200包 中国版","FSPECIFICATION":"3片/包*200包/箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T10:39:56","FPLAN_FINISH_DATE":"2022-05-19T10:39:56","FSTART_DATE":"2022-05-20T16:46:25","FFINISH_DATE":"2022-05-31T19:13:27"},{"FBILL_NO":"MO000053","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163415","FNUMBER":"301202060017","FMATERIAL_NAME":"沐歆澳棉系列产品超薄型日用卫生巾245mm 3片装*200 贴标","FSPECIFICATION":"3片/包*200包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-26T16:20:59","FFINISH_DATE":"2022-04-26T16:20:59"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163419","FNUMBER":"301203060012","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾2片装 体验装 WSJ0202","FSPECIFICATION":"2片/包*100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-18T08:51:58","FPLAN_FINISH_DATE":"2022-05-18T08:51:58","FSTART_DATE":"2022-05-18T16:07:34","FFINISH_DATE":""},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163419","FNUMBER":"301203060012","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾2片装 体验装 WSJ0202","FSPECIFICATION":"2片/包*100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T14:17:51","FPLAN_FINISH_DATE":"2022-07-05T14:17:51","FSTART_DATE":"2022-06-28T12:03:34","FFINISH_DATE":""},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163601","FNUMBER":"301100090027","FMATERIAL_NAME":"倍舒特掌心包290mm夜用卫生巾9片装 ML16509","FSPECIFICATION":"9片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-05-17T14:23:30","FFINISH_DATE":"2022-07-01T14:22:49"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163601","FNUMBER":"301100090027","FMATERIAL_NAME":"倍舒特掌心包290mm夜用卫生巾9片装 ML16509","FSPECIFICATION":"9片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-11T13:13:49","FPLAN_FINISH_DATE":"2022-06-03T13:13:49","FSTART_DATE":"2022-05-17T14:23:44","FFINISH_DATE":""},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163602","FNUMBER":"301100060026","FMATERIAL_NAME":"倍舒特掌心包245mm日用卫生巾10片装 ML14510","FSPECIFICATION":"10片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-17T14:22:47","FFINISH_DATE":""},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163602","FNUMBER":"301100060026","FMATERIAL_NAME":"倍舒特掌心包245mm日用卫生巾10片装 ML14510","FSPECIFICATION":"10片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T13:13:39","FPLAN_FINISH_DATE":"2022-05-20T13:13:39","FSTART_DATE":"2022-05-17T14:23:04","FFINISH_DATE":"2022-05-20T16:11:48"},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163791","FNUMBER":"302203020011","FMATERIAL_NAME":"上海比芭云霓经期裤低腰M码 4片装 WSJ0504","FSPECIFICATION":"4片/包*24包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-07-15T14:17:51","FPLAN_FINISH_DATE":"2022-07-15T14:17:51","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163898","FNUMBER":"301202030001","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm卫生护垫18片*100包 贴标","FSPECIFICATION":"18片/包*100包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T10:27:37","FPLAN_FINISH_DATE":"2022-05-20T10:27:37","FSTART_DATE":"2022-05-19T12:03:42","FFINISH_DATE":"2022-07-01T13:01:18"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163899","FNUMBER":"301202060003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm 10片装*60包 贴标","FSPECIFICATION":"10片/包*60包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T10:27:37","FPLAN_FINISH_DATE":"2022-05-20T10:27:37","FSTART_DATE":"2022-05-16T08:19:47","FFINISH_DATE":"2022-07-01T13:50:51"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163900","FNUMBER":"301202060004","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm 8片装*60包 中国版","FSPECIFICATION":"8片/包*60包/箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T10:27:37","FPLAN_FINISH_DATE":"2022-05-19T10:27:37","FSTART_DATE":"2022-05-20T16:44:25","FFINISH_DATE":"2022-07-01T14:20:21"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163902","FNUMBER":"301202090001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm 8片装*60包 贴标","FSPECIFICATION":"8片/包*60包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T10:27:38","FPLAN_FINISH_DATE":"2022-05-14T10:27:38","FSTART_DATE":"2022-05-13T12:07:52","FFINISH_DATE":"2022-05-31T18:58:21"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164435","FNUMBER":"301202090002","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型夜用卫生巾290mm 6片装*60 中国版","FSPECIFICATION":"6片/包*60包/箱","FWORK_SHOP":"11号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T10:27:38","FPLAN_FINISH_DATE":"2022-05-16T10:27:38","FSTART_DATE":"2022-05-13T14:27:48","FFINISH_DATE":"2022-05-31T19:21:55"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164437","FNUMBER":"301202110007","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm 6片装*60包 贴标","FSPECIFICATION":"6片/包*60包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T10:32:16","FPLAN_FINISH_DATE":"2022-05-16T10:32:16","FSTART_DATE":"2022-05-13T11:15:15","FFINISH_DATE":"2022-05-31T13:34:01"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164439","FNUMBER":"301202120017","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型超长夜用卫生巾410mm 4片装*60包 中国版","FSPECIFICATION":"4片/包*60包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-27T10:27:38","FPLAN_FINISH_DATE":"2022-05-27T10:27:38","FSTART_DATE":"2022-05-24T16:34:24","FFINISH_DATE":"2022-05-31T19:30:12"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164441","FNUMBER":"302202020011","FMATERIAL_NAME":"沐歆澳棉经期裤低腰M码 2片装*54包 贴标","FSPECIFICATION":"2片/包*54包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T10:27:38","FPLAN_FINISH_DATE":"2022-05-26T10:27:38","FSTART_DATE":"2022-05-21T09:31:11","FFINISH_DATE":""},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164443","FNUMBER":"302202020012","FMATERIAL_NAME":"沐歆澳棉经期裤低腰M码 2片装*54包 不贴标","FSPECIFICATION":"2片/包*54包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T10:34:49","FPLAN_FINISH_DATE":"2022-05-26T10:34:49","FSTART_DATE":"2022-05-21T09:31:27","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164560","FNUMBER":"302003020001","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气M-L号低腰经期裤OM0212","FSPECIFICATION":"2片/包*12包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-01T10:37:39","FPLAN_FINISH_DATE":"2022-06-01T10:37:39","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164561","FNUMBER":"302003040001","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气L-XL号低腰经期裤OL0212","FSPECIFICATION":"2片/包*12包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T10:37:39","FPLAN_FINISH_DATE":"2022-06-15T10:37:39","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164562","FNUMBER":"302003020010","FMATERIAL_NAME":"呼吸时代轻呼吸系列女性卫生裤产品低腰(M-L)M码 QK-M0312","FSPECIFICATION":"3片/包*12包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T10:52:33","FPLAN_FINISH_DATE":"2022-06-15T10:52:33","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000062","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164810","FNUMBER":"301111020001","FMATERIAL_NAME":"南通荷塘催月150mm护垫 白片","FSPECIFICATION":"10000片/箱","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-02T15:51:05.187","FPLAN_FINISH_DATE":"2022-05-02T15:51:05.187","FSTART_DATE":"2022-05-03T08:43:04","FFINISH_DATE":"2022-05-03T19:53:00"},{"FBILL_NO":"MO000070","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175314","FNUMBER":"308003000001","FMATERIAL_NAME":"呼吸时代焕芯小裤 36包 HX0836","FSPECIFICATION":"(2片经期裤+2包350mm*3片/包)/包*36包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-30T10:28:40","FPLAN_FINISH_DATE":"2022-05-30T10:28:40","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000070","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175316","FNUMBER":"402003020009","FMATERIAL_NAME":"呼吸时代焕芯小裤系列低腰(M-L)M码经期裤 HX0836&HX0804","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-05-24T21:28:01","FFINISH_DATE":"2022-06-16T16:16:48"},{"FBILL_NO":"MO000070","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175316","FNUMBER":"402003020009","FMATERIAL_NAME":"呼吸时代焕芯小裤系列低腰(M-L)M码经期裤 HX0836&HX0804","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-05-24T21:28:01","FFINISH_DATE":"2022-06-16T16:16:34"},{"FBILL_NO":"MO000070","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175317","FNUMBER":"401003110001","FMATERIAL_NAME":"呼吸时代焕芯小裤系列350卫生巾 HX0836&HX0804","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T10:50:24","FFINISH_DATE":"2022-05-24T11:26:22"},{"FBILL_NO":"MO000070","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175317","FNUMBER":"401003110001","FMATERIAL_NAME":"呼吸时代焕芯小裤系列350卫生巾 HX0836&HX0804","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T10:50:24","FFINISH_DATE":"2022-05-27T19:38:06"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175652","FNUMBER":"301003010001","FMATERIAL_NAME":"恋呼吸全透气180mm迷你卫生巾LHX-180","FSPECIFICATION":"10片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-22T09:30:56","FFINISH_DATE":"2022-07-01T13:40:46"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175652","FNUMBER":"301003010001","FMATERIAL_NAME":"恋呼吸全透气180mm迷你卫生巾LHX-180","FSPECIFICATION":"10片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"2022-06-22T09:30:47","FFINISH_DATE":"2022-07-01T13:41:10"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175653","FNUMBER":"301301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾LHX-245","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175653","FNUMBER":"301301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾LHX-245","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"2022-05-27T12:23:00","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-01T12:51:53","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"2022-06-01T12:52:11","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175655","FNUMBER":"301301120001","FMATERIAL_NAME":"恋呼吸全透气410mm超长夜用卫生巾LHX-410","FSPECIFICATION":"4片/包*24包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-15T13:13:51","FSTART_DATE":"2022-06-01T12:07:02","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175655","FNUMBER":"301301120001","FMATERIAL_NAME":"恋呼吸全透气410mm超长夜用卫生巾LHX-410","FSPECIFICATION":"4片/包*24包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-01T12:06:44","FFINISH_DATE":"2022-07-01T13:57:29"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175658","FNUMBER":"302301020001","FMATERIAL_NAME":"恋呼吸全透气M-L号低腰M经期裤LHX-JM","FSPECIFICATION":"2片/包*24包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175658","FNUMBER":"302301020001","FMATERIAL_NAME":"恋呼吸全透气M-L号低腰M经期裤LHX-JM","FSPECIFICATION":"2片/包*24包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-27T12:22:29","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"2022-05-27T12:25:23","FFINISH_DATE":""},{"FBILL_NO":"MO000070","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175680","FNUMBER":"308003000003","FMATERIAL_NAME":"呼吸时代焕芯小裤 4包 HX0804","FSPECIFICATION":"(2片经期裤+2包350mm*3片/包)/包*4包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-30T10:28:40","FPLAN_FINISH_DATE":"2022-05-30T10:28:40","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000076","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175987","FNUMBER":"301109060001","FMATERIAL_NAME":"云集心悦24悦薄无感蚕丝245mm日用卫生巾2片装","FSPECIFICATION":"2片/包*100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-30T11:18:32","FPLAN_FINISH_DATE":"2022-05-30T11:18:32","FSTART_DATE":"2022-06-11T15:19:21","FFINISH_DATE":"2022-06-24T13:32:46"},{"FBILL_NO":"MO000080","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"176323","FNUMBER":"301202060006","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm 10片装*60包 不贴标","FSPECIFICATION":"10片/包*60包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-06T16:26:19","FPLAN_FINISH_DATE":"2022-06-06T16:26:19","FSTART_DATE":"2022-06-09T10:20:01","FFINISH_DATE":"2022-06-14T16:08:50"}]} + +-------------------------------- +2022/7/12 9:37:07| +Request Data: + QueryData:/api/BigScreen/getPlanOrderList + BodyData: + +-------------------------------- +2022/7/12 9:37:15| +Response Data: +{"code":200,"success":true,"message":"成功","data":[{"FBILL_NO":"MO000015","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101762","FNUMBER":"301001020001","FMATERIAL_NAME":"安琦零侧漏150mm护垫20片 LC15201","FSPECIFICATION":"20片/包*30包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-02T00:00:00","FPLAN_FINISH_DATE":"2022-01-02T00:00:00","FSTART_DATE":"2022-01-02T11:11:49","FFINISH_DATE":"2022-01-04T15:34:36"},{"FBILL_NO":"MO000017","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101762","FNUMBER":"301001020001","FMATERIAL_NAME":"安琦零侧漏150mm护垫20片 LC15201","FSPECIFICATION":"20片/包*30包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-25T00:00:00","FPLAN_FINISH_DATE":"2022-01-25T00:00:00","FSTART_DATE":"2022-02-21T13:51:50","FFINISH_DATE":"2022-02-24T14:42:13"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101762","FNUMBER":"301001020001","FMATERIAL_NAME":"安琦零侧漏150mm护垫20片 LC15201","FSPECIFICATION":"20片/包*30包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-21T00:00:00","FPLAN_FINISH_DATE":"2022-02-21T00:00:00","FSTART_DATE":"2022-02-21T13:58:23","FFINISH_DATE":"2022-02-24T14:41:48"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101762","FNUMBER":"301001020001","FMATERIAL_NAME":"安琦零侧漏150mm护垫20片 LC15201","FSPECIFICATION":"20片/包*30包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-30T00:00:00","FPLAN_FINISH_DATE":"2022-03-30T00:00:00","FSTART_DATE":"2022-04-08T12:18:53","FFINISH_DATE":"2022-04-12T19:19:01"},{"FBILL_NO":"MO000013","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101768","FNUMBER":"301001020002","FMATERIAL_NAME":"安琦150mm无香护垫40片 E1014","FSPECIFICATION":"40片/包*30包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-29T00:00:00","FPLAN_FINISH_DATE":"2021-12-29T00:00:00","FSTART_DATE":"2022-01-03T15:46:09","FFINISH_DATE":"2022-02-17T12:34:21"},{"FBILL_NO":"MO000030","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101768","FNUMBER":"301001020002","FMATERIAL_NAME":"安琦150mm无香护垫40片 E1014","FSPECIFICATION":"40片/包*30包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-12T00:00:00","FPLAN_FINISH_DATE":"2022-04-12T00:00:00","FSTART_DATE":"2022-04-08T19:10:51","FFINISH_DATE":"2022-04-13T11:05:12"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101774","FNUMBER":"301001040001","FMATERIAL_NAME":"安琦零侧漏180mm直条迷你巾18片 LC18181","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-18T00:00:00","FPLAN_FINISH_DATE":"2022-02-18T00:00:00","FSTART_DATE":"2022-03-07T08:21:20","FFINISH_DATE":"2022-07-01T13:44:26"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101774","FNUMBER":"301001040001","FMATERIAL_NAME":"安琦零侧漏180mm直条迷你巾18片 LC18181","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-20T07:31:59","FFINISH_DATE":"2022-06-24T12:48:44"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101775","FNUMBER":"301001040002","FMATERIAL_NAME":"安琦零侧漏180mm护翼迷你巾10片 LC18101","FSPECIFICATION":"10片/包*30包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-01T00:00:00","FPLAN_FINISH_DATE":"2022-03-01T00:00:00","FSTART_DATE":"2022-04-02T16:33:17","FFINISH_DATE":"2022-04-19T15:57:31"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101778","FNUMBER":"301001040005","FMATERIAL_NAME":"安琦180mm棉质迷你巾15片 T1860","FSPECIFICATION":"15片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-18T00:00:00","FPLAN_FINISH_DATE":"2022-02-18T00:00:00","FSTART_DATE":"2022-03-12T16:09:58","FFINISH_DATE":"2022-05-26T15:25:39"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101779","FNUMBER":"301001040006","FMATERIAL_NAME":"安琦180mm加长护垫20片 T8028","FSPECIFICATION":"20片/包*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-18T00:00:00","FPLAN_FINISH_DATE":"2022-02-18T00:00:00","FSTART_DATE":"2022-02-25T17:00:09","FFINISH_DATE":"2022-03-15T19:25:42"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101779","FNUMBER":"301001040006","FMATERIAL_NAME":"安琦180mm加长护垫20片 T8028","FSPECIFICATION":"20片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-28T00:00:00","FPLAN_FINISH_DATE":"2022-03-28T00:00:00","FSTART_DATE":"2022-04-06T13:52:25","FFINISH_DATE":"2022-05-26T15:22:12"},{"FBILL_NO":"MO000082","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101779","FNUMBER":"301001040006","FMATERIAL_NAME":"安琦180mm加长护垫20片 T8028","FSPECIFICATION":"20片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-14T12:06:09","FFINISH_DATE":"2022-07-01T13:34:01"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101780","FNUMBER":"301001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾18片 LC24187","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-11T15:55:53","FFINISH_DATE":"2022-07-05T09:29:04"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101781","FNUMBER":"301001050002","FMATERIAL_NAME":"安琦零侧漏240mm丝薄爽棉日用卫生巾18片 LC24188","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-11T15:56:04","FFINISH_DATE":"2022-07-05T09:29:52"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101790","FNUMBER":"301001070006","FMATERIAL_NAME":"安琦零侧漏260mm棉质卫生巾16片 LC26161","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-11T15:56:13","FFINISH_DATE":"2022-06-24T12:57:05"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101794","FNUMBER":"301001060005","FMATERIAL_NAME":"安琦零侧漏纯棉245mm棉质卫生巾16片 LCQ26161","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-23T00:00:00","FPLAN_FINISH_DATE":"2022-04-23T00:00:00","FSTART_DATE":"2022-05-31T17:15:07","FFINISH_DATE":"2022-05-31T17:32:01"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101794","FNUMBER":"301001060005","FMATERIAL_NAME":"安琦零侧漏纯棉245mm棉质卫生巾16片 LCQ26161","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-15T07:34:50","FFINISH_DATE":"2022-06-24T13:15:30"},{"FBILL_NO":"MO000095","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101795","FNUMBER":"301001070007","FMATERIAL_NAME":"安琦清爽纤薄零侧漏260mm爽棉卫生巾16片 LCQ26163","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-28T00:00:00","FPLAN_FINISH_DATE":"2022-06-28T00:00:00","FSTART_DATE":"2022-06-27T14:34:18","FFINISH_DATE":""},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101796","FNUMBER":"301001090001","FMATERIAL_NAME":"安琦云感柔棉舒睡290mm夜用卫生巾18片 CS29181","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-08T00:00:00","FPLAN_FINISH_DATE":"2022-06-08T00:00:00","FSTART_DATE":"2022-06-07T12:13:28","FFINISH_DATE":"2022-06-24T13:21:38"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101798","FNUMBER":"301001100001","FMATERIAL_NAME":"安琦零侧漏300mm棉质夜用卫生巾16片 LC30161","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"2022-06-10T12:08:02","FFINISH_DATE":"2022-06-16T17:05:01"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101799","FNUMBER":"301001090003","FMATERIAL_NAME":"安琦零侧漏290mm棉质夜用卫生巾15片 LC30151","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-06-13T12:15:14","FFINISH_DATE":"2022-06-24T13:02:57"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101800","FNUMBER":"301001100003","FMATERIAL_NAME":"安琦零侧漏300mm爽棉夜用卫生巾15片 LC30152","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-29T00:00:00","FPLAN_FINISH_DATE":"2022-04-29T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101800","FNUMBER":"301001100003","FMATERIAL_NAME":"安琦零侧漏300mm爽棉夜用卫生巾15片 LC30152","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FSTART_DATE":"2022-06-07T12:11:49","FFINISH_DATE":"2022-07-05T09:35:58"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101801","FNUMBER":"301001100004","FMATERIAL_NAME":"安琦清爽纤薄零侧漏300mm棉质夜用卫生巾15片 LCQ30151","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T00:00:00","FPLAN_FINISH_DATE":"2022-04-19T00:00:00","FSTART_DATE":"2022-05-31T17:31:49","FFINISH_DATE":"2022-05-31T17:33:35"},{"FBILL_NO":"MO000085","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101801","FNUMBER":"301001100004","FMATERIAL_NAME":"安琦清爽纤薄零侧漏300mm棉质夜用卫生巾15片 LCQ30151","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-06-09T11:05:51","FFINISH_DATE":"2022-06-16T17:00:53"},{"FBILL_NO":"MO000096","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101802","FNUMBER":"301001100005","FMATERIAL_NAME":"安琦清爽纤薄零侧漏300mm爽棉夜用卫生巾15片 LCQ30152","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-01T00:00:00","FPLAN_FINISH_DATE":"2022-07-01T00:00:00","FSTART_DATE":"2022-06-27T14:35:14","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101803","FNUMBER":"301001090005","FMATERIAL_NAME":"安琦薄柔感3D凸棉290mm夜用卫生巾8片 BR30083","FSPECIFICATION":"8片/包*30包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101806","FNUMBER":"301001110001","FMATERIAL_NAME":"安琦350mm加长夜用棉质卫生巾4片 T3501","FSPECIFICATION":"4片/包*50包/箱","FWORK_SHOP":"8号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-06T00:00:00","FPLAN_FINISH_DATE":"2022-06-06T00:00:00","FSTART_DATE":"2022-06-03T13:53:10","FFINISH_DATE":"2022-07-01T14:10:05"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101809","FNUMBER":"301001120001","FMATERIAL_NAME":"安琦零侧漏410mm超长棉质夜用卫生巾3片 LC41031","FSPECIFICATION":"3片/包*24包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-20T00:00:00","FPLAN_FINISH_DATE":"2022-04-20T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101811","FNUMBER":"301001120003","FMATERIAL_NAME":"安琦云感棉超长夜用420大扇尾8片 CS42081","FSPECIFICATION":"8片/包*30包/箱","FWORK_SHOP":"10号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-30T12:16:16","FFINISH_DATE":"2022-06-14T16:01:31"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101811","FNUMBER":"301001120003","FMATERIAL_NAME":"安琦云感棉超长夜用420大扇尾8片 CS42081","FSPECIFICATION":"8片/包*30包/箱","FWORK_SHOP":"10号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-09T07:49:58","FFINISH_DATE":"2022-07-01T12:38:03"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101812","FNUMBER":"301001120004","FMATERIAL_NAME":"安琦薄柔感3D凸棉410mm超长夜用卫生巾6片 BR41063","FSPECIFICATION":"6片/包*30包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-06T00:00:00","FPLAN_FINISH_DATE":"2022-05-06T00:00:00","FSTART_DATE":"2022-05-20T16:52:35","FFINISH_DATE":"2022-06-14T15:56:06"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101813","FNUMBER":"302001040001","FMATERIAL_NAME":"安琦夜无忧女性卫生裤低腰M-L码5片 DQL05","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101823","FNUMBER":"308001000001","FMATERIAL_NAME":"安琦零侧漏日夜组合丝薄棉质卫生巾 20片 LC23205","FSPECIFICATION":"(15片240mm+5片300mm)/包*30包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-23T00:00:00","FPLAN_FINISH_DATE":"2022-04-23T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101824","FNUMBER":"308001000002","FMATERIAL_NAME":"安琦零侧漏日夜组合丝薄爽棉卫生巾 20片 LC23206","FSPECIFICATION":"(15片240mm+5片300mm)/包*30包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101827","FNUMBER":"308001000005","FMATERIAL_NAME":"安琦日用组合柔棉卫生巾 20片 24201","FSPECIFICATION":"(15片245mm+5片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FSTART_DATE":"2022-06-03T13:51:39","FFINISH_DATE":""},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101828","FNUMBER":"308001000006","FMATERIAL_NAME":"安琦日夜组合柔棉卫生巾 20片 29201","FSPECIFICATION":"(10片245mm+10片290mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-26T11:35:39","FFINISH_DATE":""},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101828","FNUMBER":"308001000006","FMATERIAL_NAME":"安琦日夜组合柔棉卫生巾 20片 29201","FSPECIFICATION":"(10片245mm+10片290mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-06-02T16:10:09","FFINISH_DATE":""},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101830","FNUMBER":"308001000008","FMATERIAL_NAME":"安琦柠檬组合棉质卫生巾 22片 29221","FSPECIFICATION":"(10片245mm+8片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-26T11:33:41","FFINISH_DATE":"2022-07-01T13:12:16"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101830","FNUMBER":"308001000008","FMATERIAL_NAME":"安琦柠檬组合棉质卫生巾 22片 29221","FSPECIFICATION":"(10片245mm+8片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FSTART_DATE":"2022-06-02T08:49:34","FFINISH_DATE":""},{"FBILL_NO":"MO000083","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101832","FNUMBER":"308001000010","FMATERIAL_NAME":"安琦零度清爽清凉组合棉质卫生巾 20片 49201","FSPECIFICATION":"(10片245mm+6片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FSTART_DATE":"2022-06-09T10:15:51","FFINISH_DATE":""},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101833","FNUMBER":"308001000011","FMATERIAL_NAME":"安琦零度清爽清凉组合干爽卫生巾 20片 49202","FSPECIFICATION":"(10片245mm+6片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-28T00:00:00","FPLAN_FINISH_DATE":"2022-05-28T00:00:00","FSTART_DATE":"2022-05-30T12:12:05","FFINISH_DATE":""},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-08T16:38:52","FPLAN_FINISH_DATE":"2022-01-08T16:38:52","FSTART_DATE":"2022-01-09T15:48:15","FFINISH_DATE":"2022-05-26T14:05:02"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-23T13:19:42","FPLAN_FINISH_DATE":"2022-03-23T13:19:42","FSTART_DATE":"2022-04-02T09:36:00","FFINISH_DATE":"2022-04-19T15:31:05"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-13T13:39:13","FPLAN_FINISH_DATE":"2022-04-13T13:39:13","FSTART_DATE":"2022-04-13T12:28:20","FFINISH_DATE":"2022-05-24T19:15:55"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T09:52:29","FPLAN_FINISH_DATE":"2022-05-16T09:52:29","FSTART_DATE":"2022-05-11T12:06:50","FFINISH_DATE":"2022-05-24T19:26:47"},{"FBILL_NO":"MO000193","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:25","FPLAN_FINISH_DATE":"2022-06-29T14:18:25","FSTART_DATE":"2022-07-04T12:28:33","FFINISH_DATE":""},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-25T10:32:39","FPLAN_FINISH_DATE":"2021-12-25T10:32:39","FSTART_DATE":"2021-12-16T08:24:13","FFINISH_DATE":"2022-01-04T15:00:26"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-19T10:32:39","FPLAN_FINISH_DATE":"2021-12-19T10:32:39","FSTART_DATE":"2021-12-18T14:21:20","FFINISH_DATE":"2022-01-04T15:00:12"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-25T10:32:39","FPLAN_FINISH_DATE":"2021-12-25T10:32:39","FSTART_DATE":"2021-12-18T14:24:50","FFINISH_DATE":"2022-01-04T15:00:07"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-08T16:39:22","FPLAN_FINISH_DATE":"2022-01-08T16:39:22","FSTART_DATE":"2022-03-01T15:36:19","FFINISH_DATE":"2022-04-06T19:12:37"},{"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-02T17:10:22","FPLAN_FINISH_DATE":"2022-06-02T17:10:22","FSTART_DATE":"2022-05-30T07:29:12","FFINISH_DATE":"2022-06-14T15:49:13"},{"FBILL_NO":"MO000192","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:43","FPLAN_FINISH_DATE":"2022-06-29T14:18:43","FSTART_DATE":"2022-07-04T12:27:32","FFINISH_DATE":""},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-01T13:19:59","FPLAN_FINISH_DATE":"2022-04-01T13:19:59","FSTART_DATE":"2022-04-02T09:27:46","FFINISH_DATE":"2022-05-24T19:14:06"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102362","FNUMBER":"301100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾10片装 HK52010","FSPECIFICATION":"10片/包*30包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-01T13:20:27","FPLAN_FINISH_DATE":"2022-04-01T13:20:27","FSTART_DATE":"2022-04-08T12:17:42","FFINISH_DATE":"2022-05-26T15:38:12"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102362","FNUMBER":"301100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾10片装 HK52010","FSPECIFICATION":"10片/包*30包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T09:52:45","FPLAN_FINISH_DATE":"2022-05-11T09:52:45","FSTART_DATE":"2022-05-12T12:31:47","FFINISH_DATE":"2022-05-30T12:59:10"},{"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102362","FNUMBER":"301100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾10片装 HK52010","FSPECIFICATION":"10片/包*30包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-30T17:09:45","FPLAN_FINISH_DATE":"2022-05-30T17:09:45","FSTART_DATE":"2022-05-30T07:28:59","FFINISH_DATE":"2022-06-14T15:45:30"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102363","FNUMBER":"301100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾6片装 HK12018","FSPECIFICATION":"6片/小包*3小包/袋*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-02T13:20:11","FPLAN_FINISH_DATE":"2022-04-02T13:20:11","FSTART_DATE":"2022-04-09T14:20:37","FFINISH_DATE":"2022-05-26T15:58:19"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102363","FNUMBER":"301100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾6片装 HK12018","FSPECIFICATION":"6片/小包*3小包/袋*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T09:52:37","FPLAN_FINISH_DATE":"2022-05-09T09:52:37","FSTART_DATE":"2022-05-11T12:09:08","FFINISH_DATE":"2022-05-26T15:10:29"},{"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102363","FNUMBER":"301100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾6片装 HK12018","FSPECIFICATION":"6片/小包*3小包/袋*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-07T17:09:36","FPLAN_FINISH_DATE":"2022-06-07T17:09:36","FSTART_DATE":"2022-05-30T07:29:06","FFINISH_DATE":"2022-06-24T12:33:25"},{"FBILL_NO":"MO000011","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102385","FNUMBER":"308102000001","FMATERIAL_NAME":"佑丽安吉莉卡新组合装","FSPECIFICATION":"(日用8片/包*15包+夜用5片*4包+迷你巾10片*4包+护垫16片*3包+超长夜用4片*3包)/盒*6盒/大箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-24T10:25:10","FPLAN_FINISH_DATE":"2021-12-24T10:25:10","FSTART_DATE":"2021-12-24T16:55:32","FFINISH_DATE":"2022-02-17T12:34:59"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102385","FNUMBER":"308102000001","FMATERIAL_NAME":"佑丽安吉莉卡新组合装","FSPECIFICATION":"(日用8片/包*15包+夜用5片*4包+迷你巾10片*4包+护垫16片*3包+超长夜用4片*3包)/盒*6盒/大箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-22T00:00:00","FPLAN_FINISH_DATE":"2022-02-22T00:00:00","FSTART_DATE":"2022-02-21T18:30:46","FFINISH_DATE":"2022-05-26T15:07:02"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102385","FNUMBER":"308102000001","FMATERIAL_NAME":"佑丽安吉莉卡新组合装","FSPECIFICATION":"(日用8片/包*15包+夜用5片*4包+迷你巾10片*4包+护垫16片*3包+超长夜用4片*3包)/盒*6盒/大箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T13:16:17","FPLAN_FINISH_DATE":"2022-04-06T13:16:17","FSTART_DATE":"2022-04-09T14:24:29","FFINISH_DATE":"2022-05-26T15:07:51"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102385","FNUMBER":"308102000001","FMATERIAL_NAME":"佑丽安吉莉卡新组合装","FSPECIFICATION":"(日用8片/包*15包+夜用5片*4包+迷你巾10片*4包+护垫16片*3包+超长夜用4片*3包)/盒*6盒/大箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T13:25:13","FPLAN_FINISH_DATE":"2022-04-06T13:25:13","FSTART_DATE":"2022-04-09T14:28:25","FFINISH_DATE":"2022-05-06T18:22:07"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102385","FNUMBER":"308102000001","FMATERIAL_NAME":"佑丽安吉莉卡新组合装","FSPECIFICATION":"(日用8片/包*15包+夜用5片*4包+迷你巾10片*4包+护垫16片*3包+超长夜用4片*3包)/盒*6盒/大箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102386","FNUMBER":"301102060002","FMATERIAL_NAME":"佑丽安吉莉卡245mm日用卫生巾8片装","FSPECIFICATION":"8片/包*20包/小箱*2小箱/大箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102386","FNUMBER":"301102060002","FMATERIAL_NAME":"佑丽安吉莉卡245mm日用卫生巾8片装","FSPECIFICATION":"8片/包*20包/小箱*2小箱/大箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000009","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102388","FNUMBER":"301102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫16片装","FSPECIFICATION":"16片/包*30包/小箱*2小箱/大箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-20T10:26:42","FPLAN_FINISH_DATE":"2021-12-30T10:26:42","FSTART_DATE":"2021-12-22T09:24:20","FFINISH_DATE":"2022-01-04T16:22:28"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102394","FNUMBER":"301102020010","FMATERIAL_NAME":"佑丽鲸心之选150mm护垫40片装","FSPECIFICATION":"40片/包*120包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T15:14:15","FPLAN_FINISH_DATE":"2022-04-27T15:14:15","FSTART_DATE":"2022-04-30T10:53:40","FFINISH_DATE":"2022-05-06T17:39:54"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102394","FNUMBER":"301102020010","FMATERIAL_NAME":"佑丽鲸心之选150mm护垫40片装","FSPECIFICATION":"40片/包*120包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T15:35:07","FPLAN_FINISH_DATE":"2022-04-27T15:35:07","FSTART_DATE":"2022-04-29T14:39:08","FFINISH_DATE":"2022-05-06T17:40:24"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102398","FNUMBER":"301102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾30片装","FSPECIFICATION":"30片/包*105包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-25T16:45:48","FPLAN_FINISH_DATE":"2022-02-25T16:45:48","FSTART_DATE":"2022-03-09T14:53:48","FFINISH_DATE":"2022-03-15T19:25:22"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102398","FNUMBER":"301102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾30片装","FSPECIFICATION":"30片/包*105包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T15:13:03","FPLAN_FINISH_DATE":"2022-04-30T15:13:03","FSTART_DATE":"2022-04-25T13:24:54","FFINISH_DATE":"2022-05-06T17:27:26"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102398","FNUMBER":"301102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾30片装","FSPECIFICATION":"30片/包*105包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T15:34:08","FPLAN_FINISH_DATE":"2022-04-30T15:34:08","FSTART_DATE":"2022-05-04T08:10:49","FFINISH_DATE":"2022-05-06T17:32:33"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102399","FNUMBER":"301102040015","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾10片装","FSPECIFICATION":"10片/包*200包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T15:13:34","FPLAN_FINISH_DATE":"2022-04-30T15:13:34","FSTART_DATE":"2022-04-25T13:20:02","FFINISH_DATE":"2022-05-06T17:41:27"},{"FBILL_NO":"MO000051","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102401","FNUMBER":"301103070001","FMATERIAL_NAME":"隆力奇清欣磁动力260mm日用卫生巾 019a","FSPECIFICATION":"10片*4包*24盒","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-26T16:13:28","FFINISH_DATE":"2022-04-26T16:13:28"},{"FBILL_NO":"MO000002","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102402","FNUMBER":"301103020002","FMATERIAL_NAME":"隆力奇清欣磁动力卫生巾150mm护垫套装(英法葡)30片装 jcac015c","FSPECIFICATION":"30片/包*16包/盒*10盒/大箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-24T10:20:54","FPLAN_FINISH_DATE":"2021-12-24T10:20:54","FSTART_DATE":"2021-12-25T16:20:34","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000023","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102405","FNUMBER":"301104040001","FMATERIAL_NAME":"唯尔福180mm护翼迷你巾18片装 1182","FSPECIFICATION":"18片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-22T16:52:35","FPLAN_FINISH_DATE":"2022-02-22T16:52:35","FSTART_DATE":"2022-03-17T08:07:44","FFINISH_DATE":"2022-04-19T15:52:09"},{"FBILL_NO":"MO000033","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102405","FNUMBER":"301104040001","FMATERIAL_NAME":"唯尔福180mm护翼迷你巾18片装 1182","FSPECIFICATION":"18片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-25T16:48:52","FPLAN_FINISH_DATE":"2022-04-25T16:48:52","FSTART_DATE":"2022-04-20T13:00:16","FFINISH_DATE":"2022-05-26T15:54:28"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102414","FNUMBER":"301500110001","FMATERIAL_NAME":"洁婷透气甜睡超薄350mm超长夜用卫生巾6片装 CGT306","FSPECIFICATION":"6片/包*24包/箱","FWORK_SHOP":"10号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102417","FNUMBER":"302500020004","FMATERIAL_NAME":"洁婷21樱肌感透气U裤M-L号低腰M码2片装 SK202","FSPECIFICATION":"2片/包*36包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102418","FNUMBER":"302500020005","FMATERIAL_NAME":"洁婷20樱花透气U裤M-L号低腰M码3片装 SK203","FSPECIFICATION":"3片/包*36包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102420","FNUMBER":"302500020007","FMATERIAL_NAME":"洁婷1013+少女透气U裤低腰M码2片装 NK102","FSPECIFICATION":"2片/包*36包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102420","FNUMBER":"302500020007","FMATERIAL_NAME":"洁婷1013+少女透气U裤低腰M码2片装 NK102","FSPECIFICATION":"2片/包*36包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000065","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102421","FNUMBER":"302500030008","FMATERIAL_NAME":"洁婷透气U裤高腰L码5片装 K105","FSPECIFICATION":"5片/包*16包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102421","FNUMBER":"302500030008","FMATERIAL_NAME":"洁婷透气U裤高腰L码5片装 K105","FSPECIFICATION":"5片/包*16包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102421","FNUMBER":"302500030008","FMATERIAL_NAME":"洁婷透气U裤高腰L码5片装 K105","FSPECIFICATION":"5片/包*16包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102424","FNUMBER":"301501040001","FMATERIAL_NAME":"雨森绿语柔瞬180mm护翼迷你巾20片装 YS5839","FSPECIFICATION":"20片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-28T16:20:58","FPLAN_FINISH_DATE":"2022-02-28T16:20:58","FSTART_DATE":"2022-03-13T15:03:58","FFINISH_DATE":"2022-05-26T15:36:59"},{"FBILL_NO":"MO000088","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102424","FNUMBER":"301501040001","FMATERIAL_NAME":"雨森绿语柔瞬180mm护翼迷你巾20片装 YS5839","FSPECIFICATION":"20片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-03T10:02:23","FPLAN_FINISH_DATE":"2022-06-03T10:02:23","FSTART_DATE":"2022-06-02T08:45:13","FFINISH_DATE":"2022-07-01T13:33:21"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102426","FNUMBER":"301501120003","FMATERIAL_NAME":"雨森绿语柔瞬纤巧410mm特长夜用卫生巾8片装 YS5884","FSPECIFICATION":"8片/包*24包/箱","FWORK_SHOP":"10号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T14:51:13","FPLAN_FINISH_DATE":"2022-05-09T14:51:13","FSTART_DATE":"2022-05-20T12:18:43","FFINISH_DATE":"2022-06-07T14:56:44"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102428","FNUMBER":"301501060005","FMATERIAL_NAME":"雨森百丽至薄无感245mm日用卫生巾10片装 BL9295","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T14:49:46","FPLAN_FINISH_DATE":"2022-05-20T14:49:46","FSTART_DATE":"2022-05-30T12:14:11","FFINISH_DATE":"2022-06-07T14:45:57"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102429","FNUMBER":"301501090006","FMATERIAL_NAME":"雨森百丽至薄无感290mm夜用卫生巾8片装 BL9301","FSPECIFICATION":"8片/包*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-02T14:50:32","FPLAN_FINISH_DATE":"2022-05-02T14:50:32","FSTART_DATE":"2022-05-20T08:04:15","FFINISH_DATE":"2022-06-07T14:56:01"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102431","FNUMBER":"301501110008","FMATERIAL_NAME":"雨森百丽至薄无感350mm超长夜用卫生巾6片装 BL9318","FSPECIFICATION":"6片/包*36包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-15T14:48:45","FPLAN_FINISH_DATE":"2022-05-15T14:48:45","FSTART_DATE":"2022-05-18T14:52:01","FFINISH_DATE":"2022-06-07T14:49:09"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102433","FNUMBER":"301501120010","FMATERIAL_NAME":"雨森百丽纤爽柔绵410mm特长夜用卫生巾8片装 BL5686","FSPECIFICATION":"8片/包*24包/箱","FWORK_SHOP":"10号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-11T14:51:59","FPLAN_FINISH_DATE":"2022-05-11T14:51:59","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000051","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102439","FNUMBER":"301502090003","FMATERIAL_NAME":"千金医用护理垫290mm夜用卫生巾5片装 JY-J-003","FSPECIFICATION":"5片/包*48包/箱","FWORK_SHOP":"11号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-26T16:13:18","FFINISH_DATE":"2022-04-26T16:13:18"},{"FBILL_NO":"MO000107","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102440","FNUMBER":"301502050004","FMATERIAL_NAME":"千金净雅240mm日用卫生巾8片装 JY-J-101","FSPECIFICATION":"8片/包*48包/箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-02T09:48:45","FPLAN_FINISH_DATE":"2022-07-02T09:48:45","FSTART_DATE":"2022-07-01T08:44:34","FFINISH_DATE":""},{"FBILL_NO":"MO000021","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102458","FNUMBER":"301201020002","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫30片装 ZW110","FSPECIFICATION":"30片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-28T11:06:21","FPLAN_FINISH_DATE":"2022-02-28T11:06:21","FSTART_DATE":"2022-02-23T18:52:07","FFINISH_DATE":"2022-04-06T18:53:28"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102458","FNUMBER":"301201020002","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫30片装 ZW110","FSPECIFICATION":"30片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-24T13:55:17","FPLAN_FINISH_DATE":"2022-03-24T13:55:17","FSTART_DATE":"2022-03-23T14:42:47","FFINISH_DATE":"2022-05-24T19:07:07"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102458","FNUMBER":"301201020002","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫30片装 ZW110","FSPECIFICATION":"30片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-29T16:29:48","FPLAN_FINISH_DATE":"2022-04-29T16:29:48","FSTART_DATE":"2022-04-19T15:36:23","FFINISH_DATE":"2022-05-24T19:24:57"},{"FBILL_NO":"MO000021","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102459","FNUMBER":"301201040003","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾18片装 ZW111","FSPECIFICATION":"18片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-02-28T10:40:21","FPLAN_FINISH_DATE":"2022-02-28T10:40:21","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102459","FNUMBER":"301201040003","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾18片装 ZW111","FSPECIFICATION":"18片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-24T13:55:23","FPLAN_FINISH_DATE":"2022-03-24T13:55:23","FSTART_DATE":"2022-03-23T14:42:36","FFINISH_DATE":"2022-05-06T18:11:57"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102459","FNUMBER":"301201040003","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾18片装 ZW111","FSPECIFICATION":"18片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-04-21T00:00:00","FPLAN_FINISH_DATE":"2022-04-21T00:00:00","FSTART_DATE":"2022-04-19T15:36:06","FFINISH_DATE":""},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102460","FNUMBER":"301201060004","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾10片装 ZW108","FSPECIFICATION":"10片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-05T09:09:19","FPLAN_FINISH_DATE":"2022-05-05T09:09:19","FSTART_DATE":"2022-05-11T10:32:55","FFINISH_DATE":"2022-06-08T12:33:18"},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102460","FNUMBER":"301201060004","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾10片装 ZW108","FSPECIFICATION":"10片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-09T09:37:04","FPLAN_FINISH_DATE":"2022-06-09T09:37:04","FSTART_DATE":"2022-06-09T10:08:30","FFINISH_DATE":""},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102461","FNUMBER":"301201080005","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾8片装 ZW109","FSPECIFICATION":"8片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"11号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-04T09:12:21","FPLAN_FINISH_DATE":"2022-05-04T09:12:21","FSTART_DATE":"2022-05-11T10:33:32","FFINISH_DATE":"2022-05-24T19:00:44"},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102461","FNUMBER":"301201080005","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾8片装 ZW109","FSPECIFICATION":"8片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:36","FPLAN_FINISH_DATE":"2022-06-15T15:35:36","FSTART_DATE":"2022-06-09T10:08:37","FFINISH_DATE":""},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102462","FNUMBER":"301201110006","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾6片装 ZW112","FSPECIFICATION":"6片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"8号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-04T09:12:21","FPLAN_FINISH_DATE":"2022-05-04T09:12:21","FSTART_DATE":"2022-05-11T10:34:07","FFINISH_DATE":"2022-06-08T12:34:35"},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102462","FNUMBER":"301201110006","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾6片装 ZW112","FSPECIFICATION":"6片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"8号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:37","FPLAN_FINISH_DATE":"2022-06-15T15:35:37","FSTART_DATE":"2022-06-09T10:08:42","FFINISH_DATE":""},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102463","FNUMBER":"302201030007","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码 2片装 ZW113","FSPECIFICATION":"2片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-14T09:14:48","FPLAN_FINISH_DATE":"2022-05-14T09:14:48","FSTART_DATE":"2022-07-01T08:49:10","FFINISH_DATE":""},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102463","FNUMBER":"302201030007","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码 2片装 ZW113","FSPECIFICATION":"2片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T15:35:37","FPLAN_FINISH_DATE":"2022-06-20T15:35:37","FSTART_DATE":"2022-06-09T10:08:47","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102464","FNUMBER":"301202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm 10片装 贴标","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-20T09:54:53","FPLAN_FINISH_DATE":"2022-04-20T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102465","FNUMBER":"301202060002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm 10片装 不贴标","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-20T09:54:53","FPLAN_FINISH_DATE":"2022-04-20T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102466","FNUMBER":"301202090003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm 8片装 贴标","FSPECIFICATION":"8片/包*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-25T09:54:53","FPLAN_FINISH_DATE":"2022-04-25T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000043","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102466","FNUMBER":"301202090003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm 8片装 贴标","FSPECIFICATION":"8片/包*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T10:28:35","FPLAN_FINISH_DATE":"2022-04-19T10:28:35","FSTART_DATE":"2022-05-12T12:21:19","FFINISH_DATE":"2022-06-22T09:59:22"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102467","FNUMBER":"301202090004","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm 8片装 不贴标","FSPECIFICATION":"8片/包*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-25T09:54:53","FPLAN_FINISH_DATE":"2022-04-25T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102468","FNUMBER":"301202110005","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm 6片装 贴标","FSPECIFICATION":"6片/包*36包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-22T09:54:53","FPLAN_FINISH_DATE":"2022-04-22T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102469","FNUMBER":"301202110006","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm 6片装 不贴标","FSPECIFICATION":"6片/包*36包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-22T09:54:53","FPLAN_FINISH_DATE":"2022-04-22T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000019","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102470","FNUMBER":"301202030007","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm卫生护垫18片装 贴标","FSPECIFICATION":"18片/包*36包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-09T09:58:40","FPLAN_FINISH_DATE":"2022-01-09T09:58:40","FSTART_DATE":"2022-01-08T16:09:07","FFINISH_DATE":"2022-02-16T16:49:01"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102470","FNUMBER":"301202030007","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm卫生护垫18片装 贴标","FSPECIFICATION":"18片/包*36包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-21T16:31:45","FPLAN_FINISH_DATE":"2022-04-21T16:31:45","FSTART_DATE":"2022-04-19T15:32:38","FFINISH_DATE":"2022-07-01T13:01:47"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102479","FNUMBER":"301202120016","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型超长夜用卫生巾410mm 4片装 澳洲版","FSPECIFICATION":"4片/包*36包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-27T10:27:38","FPLAN_FINISH_DATE":"2022-05-27T10:27:38","FSTART_DATE":"2022-05-24T16:36:46","FFINISH_DATE":"2022-05-31T19:29:38"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102480","FNUMBER":"301203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾10片装 WSJ0310","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-04T08:51:58","FPLAN_FINISH_DATE":"2022-05-04T08:51:58","FSTART_DATE":"2022-05-18T16:07:47","FFINISH_DATE":""},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102480","FNUMBER":"301203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾10片装 WSJ0310","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-06T14:17:51","FPLAN_FINISH_DATE":"2022-07-06T14:17:51","FSTART_DATE":"2022-06-27T14:47:54","FFINISH_DATE":""},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102481","FNUMBER":"301203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾8片装 WSJ0308","FSPECIFICATION":"8片/包*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T08:51:58","FPLAN_FINISH_DATE":"2022-05-09T08:51:58","FSTART_DATE":"2022-05-18T16:07:18","FFINISH_DATE":"2022-06-08T13:05:54"},{"FBILL_NO":"MO000055","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102481","FNUMBER":"301203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾8片装 WSJ0308","FSPECIFICATION":"8片/包*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T10:11:37","FPLAN_FINISH_DATE":"2022-04-30T10:11:37","FSTART_DATE":"2022-05-18T16:01:37","FFINISH_DATE":"2022-06-08T12:49:50"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102482","FNUMBER":"301203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾6片装 WSJ0306","FSPECIFICATION":"6片/包*36包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-05T08:51:58","FPLAN_FINISH_DATE":"2022-05-05T08:51:58","FSTART_DATE":"2022-05-18T16:07:26","FFINISH_DATE":"2022-05-26T16:21:34"},{"FBILL_NO":"MO000055","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102482","FNUMBER":"301203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾6片装 WSJ0306","FSPECIFICATION":"6片/包*36包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T10:11:37","FPLAN_FINISH_DATE":"2022-04-30T10:11:37","FSTART_DATE":"2022-05-26T16:18:44","FFINISH_DATE":"2022-05-26T16:22:39"},{"FBILL_NO":"MO000028","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102484","FNUMBER":"301203040005","FMATERIAL_NAME":"上海比芭云霓180mm护翼迷你巾12片装 WSJ0312","FSPECIFICATION":"12片/包*36包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-21T11:12:44","FPLAN_FINISH_DATE":"2022-03-21T11:12:44","FSTART_DATE":"2022-03-22T13:17:06","FFINISH_DATE":"2022-04-02T20:10:26"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102485","FNUMBER":"301203060006","FMATERIAL_NAME":"上海比芭云霓掌心包245mm日用卫生巾12片装 WSJ0412","FSPECIFICATION":"12片/包*36包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T08:51:58","FPLAN_FINISH_DATE":"2022-05-21T08:51:58","FSTART_DATE":"2022-05-18T16:07:09","FFINISH_DATE":"2022-06-08T13:05:20"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102515","FNUMBER":"301101040001","FMATERIAL_NAME":"布派180mm直条迷你巾22片装 BO0107","FSPECIFICATION":"22片/包*48包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-05T16:48:55","FPLAN_FINISH_DATE":"2022-03-05T16:48:55","FSTART_DATE":"2022-03-14T15:15:33","FFINISH_DATE":"2022-04-06T12:25:34"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102515","FNUMBER":"301101040001","FMATERIAL_NAME":"布派180mm直条迷你巾22片装 BO0107","FSPECIFICATION":"22片/包*48包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-11T13:22:23","FPLAN_FINISH_DATE":"2022-04-11T13:22:23","FSTART_DATE":"2022-04-15T15:02:52","FFINISH_DATE":"2022-05-26T15:57:31"},{"FBILL_NO":"MO000032","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102515","FNUMBER":"301101040001","FMATERIAL_NAME":"布派180mm直条迷你巾22片装 BO0107","FSPECIFICATION":"22片/包*48包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-11T11:14:59","FPLAN_FINISH_DATE":"2022-04-11T11:14:59","FSTART_DATE":"2022-04-02T16:38:15","FFINISH_DATE":"2022-04-19T15:38:21"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102516","FNUMBER":"301101040002","FMATERIAL_NAME":"布派180mm护翼迷你巾16片装 BO0135","FSPECIFICATION":"16片/包*48包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-11T00:00:00","FPLAN_FINISH_DATE":"2022-03-11T00:00:00","FSTART_DATE":"2022-03-17T12:13:10","FFINISH_DATE":"2022-04-06T12:23:09"},{"FBILL_NO":"MO000186","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102517","FNUMBER":"301101070003","FMATERIAL_NAME":"布派绿色无感260mm日用卫生巾18片装 BO0128","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-11T14:13:34","FPLAN_FINISH_DATE":"2022-07-11T14:13:34","FSTART_DATE":"2022-07-05T14:36:16","FFINISH_DATE":""},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-27T00:00:00","FPLAN_FINISH_DATE":"2022-02-27T00:00:00","FSTART_DATE":"2022-02-26T16:39:58","FFINISH_DATE":"2022-03-02T19:54:30"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-08T00:00:00","FPLAN_FINISH_DATE":"2022-01-08T00:00:00","FSTART_DATE":"2022-01-07T10:17:44","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-09T00:00:00","FPLAN_FINISH_DATE":"2022-01-09T00:00:00","FSTART_DATE":"2022-01-08T09:48:01","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-17T00:00:00","FPLAN_FINISH_DATE":"2022-01-17T00:00:00","FSTART_DATE":"2022-01-15T09:28:29","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-08T00:00:00","FPLAN_FINISH_DATE":"2022-02-08T00:00:00","FSTART_DATE":"2022-02-07T09:52:58","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-17T00:00:00","FPLAN_FINISH_DATE":"2022-02-17T00:00:00","FSTART_DATE":"2022-02-16T09:56:05","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-20T00:00:00","FPLAN_FINISH_DATE":"2022-01-20T00:00:00","FSTART_DATE":"2022-01-19T09:28:04","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-21T00:00:00","FPLAN_FINISH_DATE":"2022-01-21T00:00:00","FSTART_DATE":"2022-01-20T09:11:34","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-24T00:00:00","FPLAN_FINISH_DATE":"2022-01-24T00:00:00","FSTART_DATE":"2022-01-22T11:05:30","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-25T00:00:00","FPLAN_FINISH_DATE":"2022-01-25T00:00:00","FSTART_DATE":"2022-01-24T09:48:19","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-26T00:00:00","FPLAN_FINISH_DATE":"2022-01-26T00:00:00","FSTART_DATE":"2022-01-25T08:59:27","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-02T19:30:00","FPLAN_FINISH_DATE":"2022-04-02T19:30:00","FSTART_DATE":"2022-04-02T08:49:31","FFINISH_DATE":"2022-04-03T08:09:37"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-09T00:00:00","FPLAN_FINISH_DATE":"2022-02-09T00:00:00","FSTART_DATE":"2022-02-08T09:30:47","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-12T00:00:00","FPLAN_FINISH_DATE":"2022-02-12T00:00:00","FSTART_DATE":"2022-02-11T09:31:57","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-14T00:00:00","FPLAN_FINISH_DATE":"2022-02-14T00:00:00","FSTART_DATE":"2022-02-12T10:06:59","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-15T00:00:00","FPLAN_FINISH_DATE":"2022-02-15T00:00:00","FSTART_DATE":"2022-02-14T09:53:56","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-16T00:00:00","FPLAN_FINISH_DATE":"2022-02-16T00:00:00","FSTART_DATE":"2022-02-15T09:38:11","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-13T19:30:00","FPLAN_FINISH_DATE":"2022-04-13T19:30:00","FSTART_DATE":"2022-04-13T09:25:30","FFINISH_DATE":"2022-04-14T18:36:23"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-18T00:00:00","FPLAN_FINISH_DATE":"2022-02-18T00:00:00","FSTART_DATE":"2022-02-17T09:53:45","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-19T00:00:00","FPLAN_FINISH_DATE":"2022-02-19T00:00:00","FSTART_DATE":"2022-02-18T09:41:48","FFINISH_DATE":"2022-02-21T19:12:58"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-21T00:00:00","FPLAN_FINISH_DATE":"2022-02-21T00:00:00","FSTART_DATE":"2022-02-28T00:00:00","FFINISH_DATE":"2022-05-26T14:04:08"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-07T07:30:00","FPLAN_FINISH_DATE":"2022-04-07T07:30:00","FSTART_DATE":"2022-04-06T10:08:22","FFINISH_DATE":"2022-04-08T14:58:03"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-02T00:00:00","FPLAN_FINISH_DATE":"2022-04-02T00:00:00","FSTART_DATE":"2022-03-30T10:53:57","FFINISH_DATE":"2022-04-02T19:16:02"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T09:51:35","FFINISH_DATE":"2022-05-14T08:57:58"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-03T07:30:00","FPLAN_FINISH_DATE":"2022-04-03T07:30:00","FSTART_DATE":"2022-04-02T08:51:05","FFINISH_DATE":"2022-04-03T19:18:27"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-03T19:30:00","FPLAN_FINISH_DATE":"2022-04-03T19:30:00","FSTART_DATE":"2022-04-03T09:16:17","FFINISH_DATE":"2022-04-04T09:13:12"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T07:30:00","FPLAN_FINISH_DATE":"2022-04-06T07:30:00","FSTART_DATE":"2022-04-03T09:17:52","FFINISH_DATE":"2022-04-06T19:35:52"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T19:30:00","FPLAN_FINISH_DATE":"2022-04-06T19:30:00","FSTART_DATE":"2022-04-06T10:06:42","FFINISH_DATE":"2022-04-07T07:46:10"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-16T19:30:00","FPLAN_FINISH_DATE":"2022-04-16T19:30:00","FSTART_DATE":"2022-04-16T11:17:06","FFINISH_DATE":"2022-04-18T14:22:49"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-05-18T10:15:04","FFINISH_DATE":"2022-05-19T21:04:21"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-14T07:30:00","FPLAN_FINISH_DATE":"2022-04-14T07:30:00","FSTART_DATE":"2022-04-13T09:27:41","FFINISH_DATE":"2022-04-14T08:52:25"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-14T19:30:00","FPLAN_FINISH_DATE":"2022-04-14T19:30:00","FSTART_DATE":"2022-04-14T09:53:19","FFINISH_DATE":"2022-04-18T16:12:40"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-15T07:30:00","FPLAN_FINISH_DATE":"2022-04-15T07:30:00","FSTART_DATE":"2022-04-14T09:54:51","FFINISH_DATE":"2022-04-16T08:17:38"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-16T07:30:00","FPLAN_FINISH_DATE":"2022-04-16T07:30:00","FSTART_DATE":"2022-04-15T09:44:16","FFINISH_DATE":"2022-04-18T08:26:42"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:57:51","FFINISH_DATE":"2022-05-20T19:58:35"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-18T00:00:00","FPLAN_FINISH_DATE":"2022-01-18T00:00:00","FSTART_DATE":"2022-01-17T09:49:21","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-19T00:00:00","FPLAN_FINISH_DATE":"2022-01-19T00:00:00","FSTART_DATE":"2022-01-18T09:25:03","FFINISH_DATE":"2022-02-25T09:45:38"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:07:51","FFINISH_DATE":"2022-05-14T19:14:32"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-05-14T09:49:12","FFINISH_DATE":"2022-05-17T09:41:30"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:26:30","FFINISH_DATE":"2022-05-17T19:46:58"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"115306","FNUMBER":"401100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫 HD90040&HD90020D","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T10:04:50","FFINISH_DATE":"2022-05-18T19:33:48"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-21T00:00:00","FPLAN_FINISH_DATE":"2021-12-21T00:00:00","FSTART_DATE":"2021-12-20T10:06:17","FFINISH_DATE":"2022-01-04T15:00:26"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-16T00:00:00","FPLAN_FINISH_DATE":"2021-12-16T00:00:00","FSTART_DATE":"2021-12-16T08:22:45","FFINISH_DATE":"2022-01-04T15:00:26"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-17T00:00:00","FPLAN_FINISH_DATE":"2021-12-17T00:00:00","FSTART_DATE":"2021-12-16T08:39:19","FFINISH_DATE":"2021-12-17T12:22:38"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-18T00:00:00","FPLAN_FINISH_DATE":"2021-12-18T00:00:00","FSTART_DATE":"2021-12-17T09:29:24","FFINISH_DATE":"2021-12-17T12:23:06"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-16T00:00:00","FPLAN_FINISH_DATE":"2021-12-16T00:00:00","FSTART_DATE":"2021-12-18T09:27:43","FFINISH_DATE":"2022-01-04T15:00:19"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-21T00:00:00","FPLAN_FINISH_DATE":"2021-12-21T00:00:00","FSTART_DATE":"2021-12-20T10:00:43","FFINISH_DATE":"2021-12-20T10:00:43"},{"FBILL_NO":"MO000001","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-17T00:00:00","FPLAN_FINISH_DATE":"2021-12-17T00:00:00","FSTART_DATE":"2021-12-20T09:58:40","FFINISH_DATE":"2021-12-20T09:58:40"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-08T00:00:00","FPLAN_FINISH_DATE":"2022-03-08T00:00:00","FSTART_DATE":"2022-03-07T09:43:20","FFINISH_DATE":"2022-05-26T14:04:51"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-02T00:00:00","FPLAN_FINISH_DATE":"2022-03-02T00:00:00","FSTART_DATE":"2022-03-01T09:37:38","FFINISH_DATE":"2022-03-03T20:16:44"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-03T00:00:00","FPLAN_FINISH_DATE":"2022-03-03T00:00:00","FSTART_DATE":"2022-03-02T10:13:23","FFINISH_DATE":"2022-03-05T11:08:14"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-04T00:00:00","FPLAN_FINISH_DATE":"2022-03-04T00:00:00","FSTART_DATE":"2022-03-03T09:50:40","FFINISH_DATE":"2022-03-05T17:28:11"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-05T00:00:00","FPLAN_FINISH_DATE":"2022-03-05T00:00:00","FSTART_DATE":"2022-03-04T10:17:16","FFINISH_DATE":"2022-03-09T19:51:16"},{"FBILL_NO":"MO000018","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-07T00:00:00","FPLAN_FINISH_DATE":"2022-03-07T00:00:00","FSTART_DATE":"2022-03-05T09:51:01","FFINISH_DATE":"2022-03-10T19:39:14"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-20T19:30:00","FPLAN_FINISH_DATE":"2022-04-20T19:30:00","FSTART_DATE":"2022-04-19T10:26:50","FFINISH_DATE":"2022-05-26T14:08:06"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-07T19:30:00","FPLAN_FINISH_DATE":"2022-04-07T19:30:00","FSTART_DATE":"2022-04-16T11:22:03","FFINISH_DATE":"2022-04-19T19:50:04"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T07:30:00","FPLAN_FINISH_DATE":"2022-04-08T07:30:00","FSTART_DATE":"2022-04-07T10:18:17","FFINISH_DATE":"2022-04-18T19:47:29"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T07:30:00","FPLAN_FINISH_DATE":"2022-04-19T07:30:00","FSTART_DATE":"2022-04-18T10:06:35","FFINISH_DATE":"2022-04-21T19:32:12"},{"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FSTART_DATE":"2022-05-30T14:37:16","FFINISH_DATE":"2022-06-06T08:48:17"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-09T07:30:00","FPLAN_FINISH_DATE":"2022-04-09T07:30:00","FSTART_DATE":"2022-04-08T09:48:05","FFINISH_DATE":"2022-04-19T10:35:15"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T19:30:00","FPLAN_FINISH_DATE":"2022-04-08T19:30:00","FSTART_DATE":"2022-04-08T09:46:35","FFINISH_DATE":"2022-04-09T08:10:58"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-20T07:30:00","FPLAN_FINISH_DATE":"2022-04-20T07:30:00","FSTART_DATE":"2022-04-19T10:35:02","FFINISH_DATE":"2022-04-20T19:47:46"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T10:07:31","FFINISH_DATE":"2022-05-28T09:38:30"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-05-14T09:51:08","FFINISH_DATE":"2022-05-23T19:58:30"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:29:23","FFINISH_DATE":"2022-05-17T20:04:02"},{"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-05-28T14:36:37","FFINISH_DATE":"2022-06-02T08:07:58"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120668","FNUMBER":"401100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾 HK12018","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-02T00:00:00","FPLAN_FINISH_DATE":"2022-04-02T00:00:00","FSTART_DATE":"2022-04-11T09:34:16","FFINISH_DATE":"2022-04-12T19:31:15"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120668","FNUMBER":"401100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾 HK12018","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-09T19:30:00","FPLAN_FINISH_DATE":"2022-04-09T19:30:00","FSTART_DATE":"2022-04-09T10:15:08","FFINISH_DATE":"2022-04-11T08:03:32"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120668","FNUMBER":"401100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾 HK12018","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-11T07:30:00","FPLAN_FINISH_DATE":"2022-04-11T07:30:00","FSTART_DATE":"2022-04-09T10:17:13","FFINISH_DATE":"2022-04-11T19:44:50"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120668","FNUMBER":"401100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾 HK12018","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T10:21:49","FFINISH_DATE":"2022-05-14T19:00:14"},{"FBILL_NO":"MO000057","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120668","FNUMBER":"401100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾 HK12018","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-10T10:06:36","FFINISH_DATE":"2022-05-12T20:01:32"},{"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120668","FNUMBER":"401100040005","FMATERIAL_NAME":"倍舒特棉柔轻薄180mm护翼迷你巾 HK12018","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FSTART_DATE":"2022-06-09T08:57:51","FFINISH_DATE":"2022-06-14T19:38:11"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-05T19:30:00","FPLAN_FINISH_DATE":"2022-03-05T19:30:00","FSTART_DATE":"2022-03-05T09:46:19","FFINISH_DATE":"2022-03-07T19:56:21"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-04T19:30:00","FPLAN_FINISH_DATE":"2022-03-04T19:30:00","FSTART_DATE":"2022-03-04T10:28:03","FFINISH_DATE":"2022-03-05T08:42:50"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-05T07:03:00","FPLAN_FINISH_DATE":"2022-03-05T07:03:00","FSTART_DATE":"2022-03-04T10:30:17","FFINISH_DATE":"2022-03-05T17:43:07"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T07:30:00","FPLAN_FINISH_DATE":"2022-04-19T07:30:00","FSTART_DATE":"2022-04-18T10:11:42","FFINISH_DATE":"2022-04-20T19:50:23"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-11T00:00:00","FPLAN_FINISH_DATE":"2022-04-11T00:00:00","FSTART_DATE":"2022-04-11T10:21:42","FFINISH_DATE":"2022-04-11T10:21:42"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-11T00:00:00","FPLAN_FINISH_DATE":"2022-04-11T00:00:00","FSTART_DATE":"2022-04-11T10:21:48","FFINISH_DATE":"2022-04-11T10:21:48"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-16T07:30:00","FPLAN_FINISH_DATE":"2022-04-16T07:30:00","FSTART_DATE":"2022-04-15T09:47:30","FFINISH_DATE":"2022-04-16T19:49:53"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-18T07:30:00","FPLAN_FINISH_DATE":"2022-04-18T07:30:00","FSTART_DATE":"2022-04-16T10:48:16","FFINISH_DATE":"2022-04-18T19:43:50"},{"FBILL_NO":"MO000032","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T07:30:00","FPLAN_FINISH_DATE":"2022-04-06T07:30:00","FSTART_DATE":"2022-04-03T09:20:13","FFINISH_DATE":"2022-04-06T19:56:11"},{"FBILL_NO":"MO000032","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-03T07:30:00","FPLAN_FINISH_DATE":"2022-04-03T07:30:00","FSTART_DATE":"2022-04-02T08:59:46","FFINISH_DATE":"2022-04-03T19:47:36"},{"FBILL_NO":"MO000032","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120682","FNUMBER":"401101040001","FMATERIAL_NAME":"布派180mm直条迷你巾 BO0107","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-03T19:30:00","FPLAN_FINISH_DATE":"2022-04-03T19:30:00","FSTART_DATE":"2022-04-03T09:19:38","FFINISH_DATE":"2022-04-04T09:17:13"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120683","FNUMBER":"401101040002","FMATERIAL_NAME":"布派180mm护翼迷你巾 BO0135","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-18T00:00:00","FPLAN_FINISH_DATE":"2022-03-18T00:00:00","FSTART_DATE":"2022-03-17T09:56:10","FFINISH_DATE":"2022-03-21T19:31:20"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120683","FNUMBER":"401101040002","FMATERIAL_NAME":"布派180mm护翼迷你巾 BO0135","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-17T00:00:00","FPLAN_FINISH_DATE":"2022-03-17T00:00:00","FSTART_DATE":"2022-03-16T10:09:49","FFINISH_DATE":"2022-03-17T19:52:44"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120696","FNUMBER":"401102090001","FMATERIAL_NAME":"佑丽安吉莉卡290mm夜用卫生巾","FSPECIFICATION":" ","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-27T13:42:10","FFINISH_DATE":"2022-04-27T13:42:10"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120696","FNUMBER":"401102090001","FMATERIAL_NAME":"佑丽安吉莉卡290mm夜用卫生巾","FSPECIFICATION":" ","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-27T13:42:10","FFINISH_DATE":"2022-04-27T13:42:10"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120696","FNUMBER":"401102090001","FMATERIAL_NAME":"佑丽安吉莉卡290mm夜用卫生巾","FSPECIFICATION":" ","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-27T13:42:10","FFINISH_DATE":"2022-04-27T13:42:10"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120697","FNUMBER":"401102060002","FMATERIAL_NAME":"佑丽安吉莉卡245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-27T13:42:10","FFINISH_DATE":"2022-04-27T13:42:10"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120697","FNUMBER":"401102060002","FMATERIAL_NAME":"佑丽安吉莉卡245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-27T13:42:10","FFINISH_DATE":"2022-04-27T13:42:10"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120697","FNUMBER":"401102060002","FMATERIAL_NAME":"佑丽安吉莉卡245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-06-16T16:09:00","FFINISH_DATE":"2022-06-16T16:09:00"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120697","FNUMBER":"401102060002","FMATERIAL_NAME":"佑丽安吉莉卡245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-06-16T16:08:48","FFINISH_DATE":"2022-06-16T16:08:48"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-25T19:30:00","FPLAN_FINISH_DATE":"2022-02-25T19:30:00","FSTART_DATE":"2022-02-25T09:57:16","FFINISH_DATE":"2022-02-26T08:14:32"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-24T00:00:00","FPLAN_FINISH_DATE":"2022-02-24T00:00:00","FSTART_DATE":"2022-02-23T09:56:42","FFINISH_DATE":"2022-02-25T10:01:30"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-24T19:30:00","FPLAN_FINISH_DATE":"2022-02-25T07:30:00","FSTART_DATE":"2022-02-24T09:55:31","FFINISH_DATE":"2022-02-25T10:01:30"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-25T07:30:00","FPLAN_FINISH_DATE":"2022-02-25T19:30:00","FSTART_DATE":"2022-02-24T09:57:19","FFINISH_DATE":"2022-02-25T19:51:32"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-15T07:30:00","FPLAN_FINISH_DATE":"2022-04-15T07:30:00","FSTART_DATE":"2022-04-14T09:59:36","FFINISH_DATE":"2022-04-15T19:49:51"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T00:00:00","FPLAN_FINISH_DATE":"2022-04-06T00:00:00","FSTART_DATE":"2022-04-14T09:56:03","FFINISH_DATE":"2022-04-14T09:56:03"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-13T07:30:00","FPLAN_FINISH_DATE":"2022-04-13T07:30:00","FSTART_DATE":"2022-04-12T09:41:36","FFINISH_DATE":"2022-04-13T20:04:07"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120698","FNUMBER":"401102040003","FMATERIAL_NAME":"佑丽安吉莉卡180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-14T00:00:00","FPLAN_FINISH_DATE":"2022-04-14T00:00:00","FSTART_DATE":"2022-04-13T09:22:43","FFINISH_DATE":"2022-04-14T19:42:24"},{"FBILL_NO":"MO000009","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-25T00:00:00","FPLAN_FINISH_DATE":"2021-12-25T00:00:00","FSTART_DATE":"2021-12-24T10:19:34","FFINISH_DATE":"2022-01-25T09:41:37"},{"FBILL_NO":"MO000009","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-22T00:00:00","FPLAN_FINISH_DATE":"2021-12-22T00:00:00","FSTART_DATE":"2021-12-21T12:25:00","FFINISH_DATE":"2022-02-16T10:57:27"},{"FBILL_NO":"MO000009","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-23T00:00:00","FPLAN_FINISH_DATE":"2021-12-23T00:00:00","FSTART_DATE":"2021-12-22T10:30:59","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000009","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-24T00:00:00","FPLAN_FINISH_DATE":"2021-12-24T00:00:00","FSTART_DATE":"2021-12-23T10:22:32","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000011","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-24T00:00:00","FPLAN_FINISH_DATE":"2021-12-24T00:00:00","FSTART_DATE":"2021-12-24T16:55:32","FFINISH_DATE":"2022-01-25T09:48:13"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-23T00:00:00","FPLAN_FINISH_DATE":"2022-02-23T00:00:00","FSTART_DATE":"2022-02-22T09:41:56","FFINISH_DATE":"2022-02-24T07:56:03"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-11T19:30:00","FPLAN_FINISH_DATE":"2022-04-11T19:30:00","FSTART_DATE":"2022-04-11T09:30:55","FFINISH_DATE":"2022-04-12T08:03:44"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-12T07:30:00","FPLAN_FINISH_DATE":"2022-04-12T07:30:00","FSTART_DATE":"2022-04-11T09:33:25","FFINISH_DATE":"2022-04-12T19:35:39"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-29T00:00:00","FPLAN_FINISH_DATE":"2022-04-29T00:00:00","FSTART_DATE":"2022-04-26T10:17:30","FFINISH_DATE":"2022-04-29T19:34:16"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-29T00:00:00","FSTART_DATE":"2022-04-26T10:16:52","FFINISH_DATE":"2022-04-26T10:16:52"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-22T00:00:00","FPLAN_FINISH_DATE":"2022-02-22T00:00:00","FSTART_DATE":"2022-02-21T14:14:22","FFINISH_DATE":"2022-02-23T09:16:45"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-22T00:00:00","FPLAN_FINISH_DATE":"2022-02-22T00:00:00","FSTART_DATE":"2022-02-22T09:40:27","FFINISH_DATE":"2022-02-23T08:13:02"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-12T19:30:00","FPLAN_FINISH_DATE":"2022-04-12T19:30:00","FSTART_DATE":"2022-04-12T09:37:07","FFINISH_DATE":"2022-04-13T07:52:19"},{"FBILL_NO":"MO000029","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120699","FNUMBER":"401102020004","FMATERIAL_NAME":"佑丽安吉莉卡150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-13T07:30:00","FPLAN_FINISH_DATE":"2022-04-13T07:30:00","FSTART_DATE":"2022-04-12T09:38:45","FFINISH_DATE":"2022-04-26T10:18:34"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120700","FNUMBER":"401102110005","FMATERIAL_NAME":"佑丽安吉莉卡350mm超长夜用卫生巾","FSPECIFICATION":"1*9500片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-27T13:42:10","FFINISH_DATE":"2022-04-27T13:42:10"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120700","FNUMBER":"401102110005","FMATERIAL_NAME":"佑丽安吉莉卡350mm超长夜用卫生巾","FSPECIFICATION":"1*9500片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-27T13:42:10","FFINISH_DATE":"2022-05-07T20:03:43"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120700","FNUMBER":"401102110005","FMATERIAL_NAME":"佑丽安吉莉卡350mm超长夜用卫生巾","FSPECIFICATION":"1*9500片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-06-16T16:08:37","FFINISH_DATE":"2022-06-16T16:08:37"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120705","FNUMBER":"401102020010","FMATERIAL_NAME":"佑丽鲸心之选150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-01T00:00:00","FPLAN_FINISH_DATE":"2022-05-01T00:00:00","FSTART_DATE":"2022-04-30T08:58:53","FFINISH_DATE":"2022-05-02T19:31:14"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120705","FNUMBER":"401102020010","FMATERIAL_NAME":"佑丽鲸心之选150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-29T00:00:00","FPLAN_FINISH_DATE":"2022-04-29T00:00:00","FSTART_DATE":"2022-04-26T09:52:02","FFINISH_DATE":"2022-04-30T19:28:29"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120705","FNUMBER":"401102020010","FMATERIAL_NAME":"佑丽鲸心之选150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-04-29T09:24:39","FFINISH_DATE":"2022-06-16T15:04:38"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120709","FNUMBER":"401102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-11T00:00:00","FPLAN_FINISH_DATE":"2022-03-11T00:00:00","FSTART_DATE":"2022-03-10T09:33:35","FFINISH_DATE":"2022-03-11T19:53:37"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120709","FNUMBER":"401102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-09T00:00:00","FPLAN_FINISH_DATE":"2022-03-09T00:00:00","FSTART_DATE":"2022-03-08T13:48:54","FFINISH_DATE":"2022-03-12T18:12:05"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120709","FNUMBER":"401102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T00:00:00","FPLAN_FINISH_DATE":"2022-04-30T00:00:00","FSTART_DATE":"2022-04-29T08:24:34","FFINISH_DATE":"2022-05-03T19:54:39"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120709","FNUMBER":"401102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-25T00:00:00","FPLAN_FINISH_DATE":"2022-04-25T00:00:00","FSTART_DATE":"2022-04-22T10:21:31","FFINISH_DATE":"2022-05-01T16:49:18"},{"FBILL_NO":"MO000035","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120709","FNUMBER":"401102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-25T09:24:08","FFINISH_DATE":"2022-05-02T19:53:56"},{"FBILL_NO":"MO000037","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120709","FNUMBER":"401102040014","FMATERIAL_NAME":"佑丽鲸心之选180mm护翼迷你巾","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-03T00:00:00","FPLAN_FINISH_DATE":"2022-05-03T00:00:00","FSTART_DATE":"2022-04-30T09:06:35","FFINISH_DATE":"2022-05-04T19:28:33"},{"FBILL_NO":"MO000002","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120712","FNUMBER":"401103020002","FMATERIAL_NAME":"隆力奇清欣磁动力卫生巾150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-31T00:00:00","FPLAN_FINISH_DATE":"2021-12-31T00:00:00","FSTART_DATE":"2021-12-30T15:32:27","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000002","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120712","FNUMBER":"401103020002","FMATERIAL_NAME":"隆力奇清欣磁动力卫生巾150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-27T00:00:00","FPLAN_FINISH_DATE":"2021-12-27T00:00:00","FSTART_DATE":"2021-12-25T10:36:33","FFINISH_DATE":"2022-02-25T09:46:32"},{"FBILL_NO":"MO000002","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120712","FNUMBER":"401103020002","FMATERIAL_NAME":"隆力奇清欣磁动力卫生巾150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-28T00:00:00","FPLAN_FINISH_DATE":"2021-12-28T00:00:00","FSTART_DATE":"2021-12-27T09:08:46","FFINISH_DATE":"2022-02-25T09:47:19"},{"FBILL_NO":"MO000002","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120712","FNUMBER":"401103020002","FMATERIAL_NAME":"隆力奇清欣磁动力卫生巾150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-29T00:00:00","FPLAN_FINISH_DATE":"2021-12-29T00:00:00","FSTART_DATE":"2021-12-28T10:24:04","FFINISH_DATE":"2022-02-25T09:47:19"},{"FBILL_NO":"MO000002","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120712","FNUMBER":"401103020002","FMATERIAL_NAME":"隆力奇清欣磁动力卫生巾150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2021-12-30T00:00:00","FPLAN_FINISH_DATE":"2021-12-30T00:00:00","FSTART_DATE":"2021-12-29T09:43:15","FFINISH_DATE":"2022-02-25T09:47:19"},{"FBILL_NO":"MO000023","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120715","FNUMBER":"401104040001","FMATERIAL_NAME":"唯尔福180mm护翼迷你巾 1182","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-26T00:00:00","FPLAN_FINISH_DATE":"2022-02-26T00:00:00","FSTART_DATE":"2022-02-26T10:34:34","FFINISH_DATE":"2022-02-27T07:54:59"},{"FBILL_NO":"MO000023","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120715","FNUMBER":"401104040001","FMATERIAL_NAME":"唯尔福180mm护翼迷你巾 1182","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-22T00:00:00","FPLAN_FINISH_DATE":"2022-02-22T00:00:00","FSTART_DATE":"2022-02-21T14:09:01","FFINISH_DATE":"2022-02-23T08:21:46"},{"FBILL_NO":"MO000023","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120715","FNUMBER":"401104040001","FMATERIAL_NAME":"唯尔福180mm护翼迷你巾 1182","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-23T00:00:00","FPLAN_FINISH_DATE":"2022-02-23T00:00:00","FSTART_DATE":"2022-02-22T09:47:06","FFINISH_DATE":"2022-02-24T07:40:21"},{"FBILL_NO":"MO000033","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120715","FNUMBER":"401104040001","FMATERIAL_NAME":"唯尔福180mm护翼迷你巾 1182","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"2022-04-21T09:19:03","FFINISH_DATE":"2022-04-25T19:42:33"},{"FBILL_NO":"MO000033","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120715","FNUMBER":"401104040001","FMATERIAL_NAME":"唯尔福180mm护翼迷你巾 1182","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-21T00:00:00","FPLAN_FINISH_DATE":"2022-04-21T00:00:00","FSTART_DATE":"2022-04-20T09:58:30","FFINISH_DATE":"2022-04-21T19:40:57"},{"FBILL_NO":"MO000036","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120724","FNUMBER":"402500020001","FMATERIAL_NAME":"洁婷21樱肌裤系列产品低腰M-L号经期裤 SK202&SK203","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-12T00:00:00","FPLAN_FINISH_DATE":"2022-04-12T00:00:00","FSTART_DATE":"2022-04-12T10:44:44","FFINISH_DATE":"2022-06-09T22:51:46"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120724","FNUMBER":"402500020001","FMATERIAL_NAME":"洁婷21樱肌裤系列产品低腰M-L号经期裤 SK202&SK203","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:09:04","FFINISH_DATE":"2022-05-24T16:09:04"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120724","FNUMBER":"402500020001","FMATERIAL_NAME":"洁婷21樱肌裤系列产品低腰M-L号经期裤 SK202&SK203","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:16:11","FFINISH_DATE":"2022-05-24T16:16:11"},{"FBILL_NO":"MO000065","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120725","FNUMBER":"402500020002","FMATERIAL_NAME":"洁婷透气棉透气优裤(M-L)M码经期裤K102&K102+1","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-06-22T11:20:55","FFINISH_DATE":"2022-06-22T11:20:55"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120725","FNUMBER":"402500020002","FMATERIAL_NAME":"洁婷透气棉透气优裤(M-L)M码经期裤K102&K102+1","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:07:01","FFINISH_DATE":"2022-05-24T16:07:01"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120725","FNUMBER":"402500020002","FMATERIAL_NAME":"洁婷透气棉透气优裤(M-L)M码经期裤K102&K102+1","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:07:38","FFINISH_DATE":"2022-05-24T16:07:38"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120726","FNUMBER":"402500020003","FMATERIAL_NAME":"洁婷1013+少女透气U裤系列产品低腰M号经期裤 NK101&NK102","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:07:56","FFINISH_DATE":"2022-05-24T16:07:56"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120726","FNUMBER":"402500020003","FMATERIAL_NAME":"洁婷1013+少女透气U裤系列产品低腰M号经期裤 NK101&NK102","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:08:17","FFINISH_DATE":"2022-05-24T16:08:17"},{"FBILL_NO":"MO000065","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120727","FNUMBER":"402500030004","FMATERIAL_NAME":"洁婷透气U裤系列产品高腰L号经期裤 K105","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120727","FNUMBER":"402500030004","FMATERIAL_NAME":"洁婷透气U裤系列产品高腰L号经期裤 K105","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:21:20","FFINISH_DATE":"2022-05-24T16:21:20"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120727","FNUMBER":"402500030004","FMATERIAL_NAME":"洁婷透气U裤系列产品高腰L号经期裤 K105","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120728","FNUMBER":"401501040001","FMATERIAL_NAME":"雨森绿语柔瞬180mm护翼迷你巾YS5839","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-15T00:00:00","FPLAN_FINISH_DATE":"2022-03-15T00:00:00","FSTART_DATE":"2022-03-15T10:56:06","FFINISH_DATE":"2022-03-17T19:49:10"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120728","FNUMBER":"401501040001","FMATERIAL_NAME":"雨森绿语柔瞬180mm护翼迷你巾YS5839","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-16T00:00:00","FPLAN_FINISH_DATE":"2022-03-16T00:00:00","FSTART_DATE":"2022-03-15T10:43:33","FFINISH_DATE":"2022-05-25T11:51:17"},{"FBILL_NO":"MO000088","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120728","FNUMBER":"401501040001","FMATERIAL_NAME":"雨森绿语柔瞬180mm护翼迷你巾YS5839","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-06-02T08:58:32","FFINISH_DATE":"2022-06-06T20:02:49"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120730","FNUMBER":"401501120003","FMATERIAL_NAME":"雨森绿语柔瞬纤巧410mm特长夜用卫生巾YS5884&BL5686","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-06-16T16:07:27","FFINISH_DATE":"2022-06-16T16:07:27"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120732","FNUMBER":"401501060005","FMATERIAL_NAME":"雨森百丽至薄无感245mm日用卫生巾BL9295&BL1-0338","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-28T09:43:09","FFINISH_DATE":"2022-06-01T19:38:06"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120733","FNUMBER":"401501090006","FMATERIAL_NAME":"雨森百丽至薄无感290mm夜用卫生巾BL9301&BL1-0345&BL-T01","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-20T10:41:45","FFINISH_DATE":"2022-05-20T21:29:39"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120733","FNUMBER":"401501090006","FMATERIAL_NAME":"雨森百丽至薄无感290mm夜用卫生巾BL9301&BL1-0345&BL-T01","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:45:47","FFINISH_DATE":"2022-05-20T21:31:49"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120733","FNUMBER":"401501090006","FMATERIAL_NAME":"雨森百丽至薄无感290mm夜用卫生巾BL9301&BL1-0345&BL-T01","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T09:51:35","FFINISH_DATE":"2022-05-23T17:37:29"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120734","FNUMBER":"401501110007","FMATERIAL_NAME":"雨森百丽至薄无感350mm超长夜用卫生巾 BL9318","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T09:49:45","FFINISH_DATE":"2022-05-31T19:05:41"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120734","FNUMBER":"401501110007","FMATERIAL_NAME":"雨森百丽至薄无感350mm超长夜用卫生巾 BL9318","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-05-18T09:50:13","FFINISH_DATE":"2022-05-19T21:25:36"},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120734","FNUMBER":"401501110007","FMATERIAL_NAME":"雨森百丽至薄无感350mm超长夜用卫生巾 BL9318","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:36:06","FFINISH_DATE":"2022-05-20T21:24:26"},{"FBILL_NO":"MO000051","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120742","FNUMBER":"401502090003","FMATERIAL_NAME":"千金净雅290mm夜用卫生巾 JY-J-102&JY-J-003","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-26T16:07:20","FFINISH_DATE":"2022-04-26T16:09:16"},{"FBILL_NO":"MO000021","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-22T00:00:00","FPLAN_FINISH_DATE":"2022-03-22T00:00:00","FSTART_DATE":"2022-03-21T09:40:23","FFINISH_DATE":"2022-03-23T19:44:52"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-27T00:00:00","FPLAN_FINISH_DATE":"2022-03-27T00:00:00","FSTART_DATE":"2022-03-26T09:15:50","FFINISH_DATE":"2022-03-28T19:43:45"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-28T00:00:00","FPLAN_FINISH_DATE":"2022-03-28T00:00:00","FSTART_DATE":"2022-03-26T10:01:25","FFINISH_DATE":"2022-03-30T13:14:48"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-29T07:30:00","FPLAN_FINISH_DATE":"2022-03-29T07:30:00","FSTART_DATE":"2022-03-29T09:32:14","FFINISH_DATE":"2022-03-29T09:32:14"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-30T00:00:00","FPLAN_FINISH_DATE":"2022-03-30T00:00:00","FSTART_DATE":"2022-03-29T10:16:54","FFINISH_DATE":"2022-03-29T12:24:02"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-03T00:00:00","FPLAN_FINISH_DATE":"2022-05-03T00:00:00","FSTART_DATE":"2022-04-30T09:57:38","FFINISH_DATE":"2022-05-06T20:11:37"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-04-30T09:58:41","FFINISH_DATE":"2022-05-05T19:34:08"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-06T09:02:28","FFINISH_DATE":"2022-05-07T19:29:28"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T10:14:55","FFINISH_DATE":"2022-05-08T17:30:31"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-24T00:00:00","FPLAN_FINISH_DATE":"2022-03-24T00:00:00","FSTART_DATE":"2022-03-23T11:02:43","FFINISH_DATE":"2022-03-27T17:52:27"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-29T07:30:00","FPLAN_FINISH_DATE":"2022-03-29T07:30:00","FSTART_DATE":"2022-03-28T10:06:13","FFINISH_DATE":"2022-03-30T20:22:03"},{"FBILL_NO":"MO000021","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-24T00:00:00","FPLAN_FINISH_DATE":"2022-02-24T00:00:00","FSTART_DATE":"2022-02-23T10:02:55","FFINISH_DATE":"2022-02-26T17:52:56"},{"FBILL_NO":"MO000021","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-24T19:30:00","FPLAN_FINISH_DATE":"2022-02-24T19:30:00","FSTART_DATE":"2022-02-24T09:52:35","FFINISH_DATE":"2022-03-14T19:45:56"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-30T00:00:00","FPLAN_FINISH_DATE":"2022-03-30T00:00:00","FSTART_DATE":"2022-03-29T12:25:08","FFINISH_DATE":"2022-06-16T15:02:24"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-07T10:17:03","FFINISH_DATE":"2022-05-10T08:40:57"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T09:43:00","FFINISH_DATE":"2022-05-12T19:44:13"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120753","FNUMBER":"401201020001","FMATERIAL_NAME":"江苏安能馨纪元超薄150mm护垫","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-02T00:00:00","FPLAN_FINISH_DATE":"2022-05-02T00:00:00","FSTART_DATE":"2022-04-30T09:54:57","FFINISH_DATE":"2022-05-05T07:56:48"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-24T00:00:00","FPLAN_FINISH_DATE":"2022-03-24T00:00:00","FSTART_DATE":"2022-03-23T11:06:51","FFINISH_DATE":"2022-03-25T19:58:31"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-25T00:00:00","FPLAN_FINISH_DATE":"2022-03-25T00:00:00","FSTART_DATE":"2022-03-24T09:57:17","FFINISH_DATE":"2022-03-29T20:06:23"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-27T00:00:00","FPLAN_FINISH_DATE":"2022-03-27T00:00:00","FSTART_DATE":"2022-03-26T09:23:34","FFINISH_DATE":"2022-06-16T15:32:13"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-28T00:00:00","FPLAN_FINISH_DATE":"2022-03-28T00:00:00","FSTART_DATE":"2022-03-26T10:00:02","FFINISH_DATE":"2022-03-30T20:08:35"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-04-30T10:00:12","FFINISH_DATE":"2022-05-05T19:54:16"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T00:00:00","FPLAN_FINISH_DATE":"2022-04-06T00:00:00","FSTART_DATE":"2022-05-05T09:41:10","FFINISH_DATE":"2022-05-06T20:15:13"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-06T09:06:02","FFINISH_DATE":"2022-05-07T19:48:46"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T10:17:50","FFINISH_DATE":"2022-05-08T17:52:29"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-07T10:20:21","FFINISH_DATE":"2022-05-10T08:49:16"},{"FBILL_NO":"MO000031","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-30T00:00:00","FPLAN_FINISH_DATE":"2022-03-30T00:00:00","FSTART_DATE":"2022-03-30T09:37:19","FFINISH_DATE":"2022-03-31T08:26:00"},{"FBILL_NO":"MO000021","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-28T00:00:00","FPLAN_FINISH_DATE":"2022-02-28T00:00:00","FSTART_DATE":"2022-05-05T09:46:42","FFINISH_DATE":"2022-05-05T09:46:42"},{"FBILL_NO":"MO000021","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-02T00:00:00","FPLAN_FINISH_DATE":"2022-04-02T00:00:00","FSTART_DATE":"2022-03-30T09:45:41","FFINISH_DATE":"2022-04-02T19:09:39"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120754","FNUMBER":"401201040002","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾 ZW111","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T09:56:52","FFINISH_DATE":"2022-05-11T20:21:36"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-25T09:20:09","FFINISH_DATE":"2022-06-16T16:04:00"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-07T14:06:14","FFINISH_DATE":"2022-05-11T20:30:39"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T09:46:03","FFINISH_DATE":"2022-05-12T20:12:39"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T10:13:00","FFINISH_DATE":"2022-05-14T09:01:48"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:11:55","FFINISH_DATE":"2022-05-14T19:24:16"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-05-14T09:53:47","FFINISH_DATE":"2022-05-17T09:32:19"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-18T08:42:52","FFINISH_DATE":"2022-06-16T16:03:46"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-05-18T09:44:47","FFINISH_DATE":"2022-05-19T21:20:31"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T10:33:35","FFINISH_DATE":"2022-05-20T21:16:39"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T09:43:17","FFINISH_DATE":"2022-05-21T18:19:54"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-23T00:00:00","FPLAN_FINISH_DATE":"2022-05-23T00:00:00","FSTART_DATE":"2022-05-21T09:15:21","FFINISH_DATE":"2022-05-23T19:44:01"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-23T14:39:57","FFINISH_DATE":"2022-05-24T19:59:27"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-25T00:00:00","FPLAN_FINISH_DATE":"2022-05-25T00:00:00","FSTART_DATE":"2022-05-24T09:41:17","FFINISH_DATE":"2022-05-26T07:50:15"},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-09T00:00:00","FPLAN_FINISH_DATE":"2022-06-09T00:00:00","FSTART_DATE":"2022-06-08T09:17:54","FFINISH_DATE":"2022-07-05T08:07:23"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:31:35","FFINISH_DATE":"2022-05-17T21:25:19"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T10:13:36","FFINISH_DATE":"2022-05-18T20:02:08"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-05T00:00:00","FPLAN_FINISH_DATE":"2022-05-05T00:00:00","FSTART_DATE":"2022-06-16T16:04:13","FFINISH_DATE":"2022-06-16T16:04:13"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-06T00:00:00","FPLAN_FINISH_DATE":"2022-05-06T00:00:00","FSTART_DATE":"2022-05-05T10:07:32","FFINISH_DATE":"2022-05-06T20:08:52"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-06T09:08:18","FFINISH_DATE":"2022-05-07T20:04:19"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T10:22:46","FFINISH_DATE":"2022-05-09T07:52:45"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-07T10:25:06","FFINISH_DATE":"2022-05-10T09:00:45"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T09:59:48","FFINISH_DATE":"2022-05-11T20:03:18"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-10T10:14:15","FFINISH_DATE":"2022-05-12T20:08:15"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T10:15:33","FFINISH_DATE":"2022-05-14T08:38:04"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:21:40","FFINISH_DATE":"2022-05-14T18:52:03"},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-14T09:27:30","FFINISH_DATE":"2022-07-02T07:36:14"},{"FBILL_NO":"MO000048","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:24:31","FFINISH_DATE":"2022-05-16T08:31:47"},{"FBILL_NO":"MO000048","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-02T00:00:00","FPLAN_FINISH_DATE":"2022-05-02T00:00:00","FSTART_DATE":"2022-04-30T10:21:24","FFINISH_DATE":"2022-05-10T08:53:24"},{"FBILL_NO":"MO000048","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T10:01:40","FFINISH_DATE":"2022-05-11T20:15:56"},{"FBILL_NO":"MO000048","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-10T10:11:46","FFINISH_DATE":"2022-05-14T08:45:22"},{"FBILL_NO":"MO000048","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T10:18:54","FFINISH_DATE":"2022-06-16T16:05:30"},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-11T09:29:42","FFINISH_DATE":"2022-06-25T08:18:36"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120758","FNUMBER":"402201030006","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-06-28T09:00:03","FFINISH_DATE":""},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120758","FNUMBER":"402201030006","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-07-01T10:38:07","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-03T00:00:00","FPLAN_FINISH_DATE":"2022-05-03T00:00:00","FSTART_DATE":"2022-04-30T10:07:06","FFINISH_DATE":"2022-05-06T19:51:45"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"2022-04-21T09:12:20","FFINISH_DATE":"2022-06-16T15:53:38"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-20T00:00:00","FPLAN_FINISH_DATE":"2022-04-20T00:00:00","FSTART_DATE":"2022-04-19T13:45:00","FFINISH_DATE":"2022-04-20T19:31:05"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-21T00:00:00","FPLAN_FINISH_DATE":"2022-04-21T00:00:00","FSTART_DATE":"2022-04-20T10:03:11","FFINISH_DATE":"2022-04-21T19:44:10"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-25T00:00:00","FPLAN_FINISH_DATE":"2022-04-25T00:00:00","FSTART_DATE":"2022-04-22T10:25:45","FFINISH_DATE":"2022-04-27T08:16:11"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-25T19:30:00","FPLAN_FINISH_DATE":"2022-04-25T19:30:00","FSTART_DATE":"2022-04-25T09:17:21","FFINISH_DATE":"2022-04-27T08:21:37"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T07:30:00","FPLAN_FINISH_DATE":"2022-04-30T07:30:00","FSTART_DATE":"2022-04-29T09:28:32","FFINISH_DATE":"2022-05-03T19:57:19"},{"FBILL_NO":"MO000053","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-26T16:07:59","FFINISH_DATE":"2022-04-26T16:21:22"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-06-02T10:45:16","FFINISH_DATE":"2022-06-16T16:13:21"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T19:30:00","FPLAN_FINISH_DATE":"2022-05-17T19:30:00","FSTART_DATE":"2022-05-17T09:53:40","FFINISH_DATE":"2022-05-18T07:48:56"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T09:55:01","FFINISH_DATE":"2022-05-18T07:54:16"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-18T08:23:27","FFINISH_DATE":"2022-05-18T19:13:50"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T07:30:00","FPLAN_FINISH_DATE":"2022-04-27T07:30:00","FSTART_DATE":"2022-04-25T09:20:29","FFINISH_DATE":"2022-04-29T18:51:00"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-29T07:30:00","FPLAN_FINISH_DATE":"2022-04-29T07:30:00","FSTART_DATE":"2022-04-26T09:28:57","FFINISH_DATE":"2022-05-02T19:46:12"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-29T04:19:30","FPLAN_FINISH_DATE":"2022-04-29T04:19:30","FSTART_DATE":"2022-04-29T09:27:00","FFINISH_DATE":"2022-05-05T19:53:07"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:23:08","FFINISH_DATE":"2022-05-20T20:14:51"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T19:30:00","FPLAN_FINISH_DATE":"2022-05-20T19:30:00","FSTART_DATE":"2022-05-20T09:29:53","FFINISH_DATE":"2022-05-21T07:46:24"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T07:30:00","FPLAN_FINISH_DATE":"2022-05-21T07:30:00","FSTART_DATE":"2022-05-20T09:31:04","FFINISH_DATE":"2022-05-23T08:10:39"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T07:30:00","FPLAN_FINISH_DATE":"2022-05-16T07:30:00","FSTART_DATE":"2022-05-14T09:38:47","FFINISH_DATE":"2022-05-17T09:11:08"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:22:56","FFINISH_DATE":"2022-05-17T19:20:28"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T19:30:00","FPLAN_FINISH_DATE":"2022-05-16T19:30:00","FSTART_DATE":"2022-05-16T09:24:31","FFINISH_DATE":"2022-05-17T08:51:55"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T07:30:00","FPLAN_FINISH_DATE":"2022-05-24T07:30:00","FSTART_DATE":"2022-05-23T09:51:44","FFINISH_DATE":"2022-05-24T19:15:27"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T09:28:08","FFINISH_DATE":"2022-05-25T07:38:10"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-25T00:00:00","FPLAN_FINISH_DATE":"2022-05-25T00:00:00","FSTART_DATE":"2022-05-24T09:37:45","FFINISH_DATE":"2022-05-25T19:54:09"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T19:30:00","FPLAN_FINISH_DATE":"2022-05-18T19:30:00","FSTART_DATE":"2022-05-18T10:03:01","FFINISH_DATE":"2022-05-19T07:37:41"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-05-18T10:04:45","FFINISH_DATE":"2022-05-19T19:12:13"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T19:30:00","FPLAN_FINISH_DATE":"2022-05-19T19:30:00","FSTART_DATE":"2022-05-19T09:23:19","FFINISH_DATE":"2022-05-20T08:11:56"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-27T07:30:00","FPLAN_FINISH_DATE":"2022-05-27T07:30:00","FSTART_DATE":"2022-05-26T09:53:11","FFINISH_DATE":"2022-05-27T20:04:44"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-27T19:30:00","FPLAN_FINISH_DATE":"2022-05-27T19:30:00","FSTART_DATE":"2022-05-27T09:38:14","FFINISH_DATE":"2022-05-28T07:56:34"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-28T07:30:00","FPLAN_FINISH_DATE":"2022-05-28T07:30:00","FSTART_DATE":"2022-05-27T09:45:54","FFINISH_DATE":"2022-05-28T19:28:49"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T19:30:00","FPLAN_FINISH_DATE":"2022-05-21T19:30:00","FSTART_DATE":"2022-05-21T09:07:16","FFINISH_DATE":"2022-05-23T08:05:40"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-23T07:30:00","FPLAN_FINISH_DATE":"2022-05-23T07:30:00","FSTART_DATE":"2022-05-21T09:08:58","FFINISH_DATE":"2022-05-23T19:27:00"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-23T19:30:00","FPLAN_FINISH_DATE":"2022-05-23T19:30:00","FSTART_DATE":"2022-05-23T09:50:42","FFINISH_DATE":"2022-05-24T07:40:12"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-27T07:30:00","FPLAN_FINISH_DATE":"2022-05-27T07:30:00","FSTART_DATE":"2022-05-27T09:47:44","FFINISH_DATE":"2022-05-28T07:59:12"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-28T19:30:00","FPLAN_FINISH_DATE":"2022-05-28T19:30:00","FSTART_DATE":"2022-05-28T09:34:04","FFINISH_DATE":"2022-05-31T07:35:40"},{"FBILL_NO":"MO000080","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-06T00:00:00","FPLAN_FINISH_DATE":"2022-06-06T00:00:00","FSTART_DATE":"2022-06-08T09:30:11","FFINISH_DATE":"2022-06-10T19:53:58"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-25T19:30:00","FPLAN_FINISH_DATE":"2022-05-25T19:30:00","FSTART_DATE":"2022-05-25T09:12:34","FFINISH_DATE":"2022-05-26T07:44:26"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T07:30:00","FPLAN_FINISH_DATE":"2022-05-26T07:30:00","FSTART_DATE":"2022-05-25T09:14:44","FFINISH_DATE":"2022-05-26T20:02:35"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T19:30:00","FPLAN_FINISH_DATE":"2022-05-26T19:30:00","FSTART_DATE":"2022-05-26T09:45:57","FFINISH_DATE":"2022-05-27T08:47:56"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-02T00:00:00","FPLAN_FINISH_DATE":"2022-05-02T00:00:00","FSTART_DATE":"2022-04-30T09:36:29","FFINISH_DATE":"2022-05-09T10:28:43"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-29T00:00:00","FPLAN_FINISH_DATE":"2022-04-29T00:00:00","FSTART_DATE":"2022-04-26T09:33:05","FFINISH_DATE":"2022-04-29T19:56:20"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T00:00:00","FPLAN_FINISH_DATE":"2022-04-30T00:00:00","FSTART_DATE":"2022-04-29T09:30:04","FFINISH_DATE":"2022-05-02T19:42:09"},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T10:28:22","FFINISH_DATE":"2022-05-14T08:26:49"},{"FBILL_NO":"MO000043","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T00:00:00","FPLAN_FINISH_DATE":"2022-04-19T00:00:00","FSTART_DATE":"2022-06-16T15:56:55","FFINISH_DATE":"2022-06-16T15:56:55"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-06-16T16:13:30","FFINISH_DATE":"2022-06-16T16:13:30"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:54:28","FFINISH_DATE":"2022-05-14T19:05:21"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-05-14T09:45:01","FFINISH_DATE":"2022-05-17T09:19:53"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:18:22","FFINISH_DATE":"2022-05-17T20:54:55"},{"FBILL_NO":"MO000043","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T00:00:00","FPLAN_FINISH_DATE":"2022-04-19T00:00:00","FSTART_DATE":"2022-04-19T11:15:28","FFINISH_DATE":"2022-04-19T19:39:33"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T09:58:26","FFINISH_DATE":"2022-05-18T19:49:13"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-05-18T10:06:57","FFINISH_DATE":"2022-05-19T20:50:48"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:27:55","FFINISH_DATE":"2022-06-16T16:12:54"},{"FBILL_NO":"MO000043","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-20T00:00:00","FPLAN_FINISH_DATE":"2022-04-20T00:00:00","FSTART_DATE":"2022-04-19T11:15:35","FFINISH_DATE":"2022-04-20T19:43:46"},{"FBILL_NO":"MO000043","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120760","FNUMBER":"401202090002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-20T00:00:00","FPLAN_FINISH_DATE":"2022-04-20T00:00:00","FSTART_DATE":"2022-04-20T10:06:44","FFINISH_DATE":"2022-04-21T19:20:37"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-04-30T09:24:34","FFINISH_DATE":"2022-06-28T16:19:41"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"2022-04-21T14:47:34","FFINISH_DATE":"2022-04-22T19:24:26"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-25T00:00:00","FPLAN_FINISH_DATE":"2022-04-25T00:00:00","FSTART_DATE":"2022-04-22T10:32:49","FFINISH_DATE":"2022-04-26T20:19:13"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-25T09:13:12","FFINISH_DATE":"2022-04-30T10:36:08"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T00:00:00","FPLAN_FINISH_DATE":"2022-04-30T00:00:00","FSTART_DATE":"2022-04-29T09:32:01","FFINISH_DATE":"2022-04-30T19:22:29"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T09:57:03","FFINISH_DATE":"2022-05-24T15:34:52"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T19:30:00","FPLAN_FINISH_DATE":"2022-05-13T19:30:00","FSTART_DATE":"2022-05-13T09:50:53","FFINISH_DATE":"2022-05-14T09:08:20"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:52:34","FFINISH_DATE":"2022-05-14T19:09:01"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-01T00:00:00","FPLAN_FINISH_DATE":"2022-05-01T00:00:00","FSTART_DATE":"2022-04-30T09:10:24","FFINISH_DATE":"2022-05-05T07:43:03"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T19:30:00","FPLAN_FINISH_DATE":"2022-05-14T19:30:00","FSTART_DATE":"2022-05-14T09:33:41","FFINISH_DATE":"2022-05-16T08:26:25"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-05-14T09:36:34","FFINISH_DATE":"2022-05-17T09:51:52"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:20:07","FFINISH_DATE":"2022-05-17T21:29:33"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-06T09:12:15","FFINISH_DATE":"2022-05-08T17:29:16"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-07T09:16:03","FFINISH_DATE":"2022-05-07T19:58:24"},{"FBILL_NO":"MO000020","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-09T00:00:00","FPLAN_FINISH_DATE":"2022-01-09T00:00:00","FSTART_DATE":"2022-02-16T16:42:32","FFINISH_DATE":"2022-02-16T16:46:59"},{"FBILL_NO":"MO000020","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-09T00:00:00","FPLAN_FINISH_DATE":"2022-01-09T00:00:00","FSTART_DATE":"2022-01-08T15:22:43","FFINISH_DATE":"2022-02-16T16:49:12"},{"FBILL_NO":"MO000020","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-10T00:00:00","FPLAN_FINISH_DATE":"2022-01-10T00:00:00","FSTART_DATE":"2022-01-08T15:25:43","FFINISH_DATE":"2022-02-16T16:49:24"},{"FBILL_NO":"MO000020","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-12T00:00:00","FPLAN_FINISH_DATE":"2022-01-12T00:00:00","FSTART_DATE":"2022-01-11T09:32:43","FFINISH_DATE":"2022-02-16T16:49:24"},{"FBILL_NO":"MO000020","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-13T00:00:00","FPLAN_FINISH_DATE":"2022-01-13T00:00:00","FSTART_DATE":"2022-01-12T09:25:41","FFINISH_DATE":"2022-02-16T16:49:24"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-25T09:10:38","FFINISH_DATE":"2022-04-26T19:56:12"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-21T00:00:00","FPLAN_FINISH_DATE":"2022-04-21T00:00:00","FSTART_DATE":"2022-04-20T09:54:11","FFINISH_DATE":"2022-04-21T19:37:12"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"2022-04-21T09:16:32","FFINISH_DATE":"2022-04-22T19:39:03"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-06-16T16:14:09","FFINISH_DATE":"2022-06-16T16:14:09"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:30:34","FFINISH_DATE":"2022-05-20T20:04:09"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-20T08:53:16","FFINISH_DATE":"2022-05-21T18:26:50"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T09:36:39","FFINISH_DATE":"2022-05-23T19:55:29"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-23T00:00:00","FPLAN_FINISH_DATE":"2022-05-23T00:00:00","FSTART_DATE":"2022-05-21T09:10:45","FFINISH_DATE":"2022-05-24T19:38:44"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-23T09:48:43","FFINISH_DATE":"2022-06-16T15:08:01"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-25T00:00:00","FPLAN_FINISH_DATE":"2022-05-25T00:00:00","FSTART_DATE":"2022-05-24T09:39:19","FFINISH_DATE":"2022-05-25T20:22:05"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-25T09:17:22","FFINISH_DATE":"2022-05-26T20:14:57"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120762","FNUMBER":"401202030004","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-25T07:30:00","FPLAN_FINISH_DATE":"2022-04-25T07:30:00","FSTART_DATE":"2022-04-22T10:16:26","FFINISH_DATE":"2022-04-25T19:37:02"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120763","FNUMBER":"402202020005","FMATERIAL_NAME":"沐歆澳棉经期裤低腰M码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000042","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T00:00:00","FPLAN_FINISH_DATE":"2022-04-19T00:00:00","FSTART_DATE":"2022-06-16T15:56:21","FFINISH_DATE":"2022-06-16T15:56:21"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-05-28T10:02:19","FFINISH_DATE":"2022-05-30T19:39:16"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T15:35:52","FFINISH_DATE":"2022-05-24T20:02:22"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-23T00:00:00","FPLAN_FINISH_DATE":"2022-05-23T00:00:00","FSTART_DATE":"2022-05-21T09:04:51","FFINISH_DATE":"2022-05-26T19:48:21"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-27T00:00:00","FPLAN_FINISH_DATE":"2022-05-27T00:00:00","FSTART_DATE":"2022-05-26T09:54:53","FFINISH_DATE":"2022-05-27T19:23:35"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-28T00:00:00","FPLAN_FINISH_DATE":"2022-05-28T00:00:00","FSTART_DATE":"2022-05-27T09:49:30","FFINISH_DATE":"2022-05-28T19:35:41"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-27T19:30:00","FPLAN_FINISH_DATE":"2022-05-27T19:30:00","FSTART_DATE":"2022-05-27T13:33:00","FFINISH_DATE":"2022-05-28T07:49:35"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120765","FNUMBER":"401202090007","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-06-16T16:13:54","FFINISH_DATE":"2022-06-16T16:13:54"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120765","FNUMBER":"401202090007","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-05-14T09:46:27","FFINISH_DATE":"2022-05-19T09:21:30"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120765","FNUMBER":"401202090007","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:16:29","FFINISH_DATE":"2022-05-20T21:10:22"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120765","FNUMBER":"401202090007","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型夜用卫生巾290mm","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T09:39:02","FFINISH_DATE":"2022-05-21T18:20:43"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120766","FNUMBER":"401202120008","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型超长夜用卫生巾410mm","FSPECIFICATION":"1*1200片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-27T00:00:00","FPLAN_FINISH_DATE":"2022-05-27T00:00:00","FSTART_DATE":"2022-05-23T09:44:06","FFINISH_DATE":"2022-05-31T19:01:07"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-06-01T09:36:19","FFINISH_DATE":"2022-06-13T07:51:41"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-05T00:00:00","FPLAN_FINISH_DATE":"2022-05-05T00:00:00","FSTART_DATE":"2022-05-04T10:20:08","FFINISH_DATE":"2022-05-06T19:55:58"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-06T09:15:43","FFINISH_DATE":"2022-05-07T19:13:51"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T09:47:03","FFINISH_DATE":"2022-06-16T16:02:00"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-07T09:52:11","FFINISH_DATE":"2022-05-10T09:12:43"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T10:03:39","FFINISH_DATE":"2022-05-12T19:36:07"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T10:24:31","FFINISH_DATE":"2022-05-14T08:17:41"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T19:30:00","FPLAN_FINISH_DATE":"2022-05-13T19:30:00","FSTART_DATE":"2022-05-13T09:30:32","FFINISH_DATE":"2022-05-14T09:17:44"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:32:00","FFINISH_DATE":"2022-06-16T16:01:43"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-06-01T00:00:00","FFINISH_DATE":"2022-06-01T19:43:38"},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T00:00:00","FPLAN_FINISH_DATE":"2022-07-05T00:00:00","FSTART_DATE":"2022-06-27T09:49:28","FFINISH_DATE":""},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-07-06T00:00:00","FPLAN_FINISH_DATE":"2022-07-06T00:00:00","FSTART_DATE":"2022-06-28T08:50:45","FFINISH_DATE":"2022-07-05T19:57:41"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120768","FNUMBER":"401203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-06-16T16:03:10","FFINISH_DATE":"2022-06-16T16:03:10"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120768","FNUMBER":"401203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-04-30T11:43:37","FFINISH_DATE":"2022-06-16T16:02:28"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120768","FNUMBER":"401203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-05-04T08:56:31","FFINISH_DATE":"2022-06-16T16:02:16"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120768","FNUMBER":"401203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-05T00:00:00","FPLAN_FINISH_DATE":"2022-05-05T00:00:00","FSTART_DATE":"2022-05-04T10:31:26","FFINISH_DATE":"2022-05-06T20:35:32"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120768","FNUMBER":"401203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-06T00:00:00","FPLAN_FINISH_DATE":"2022-05-06T00:00:00","FSTART_DATE":"2022-05-05T09:49:31","FFINISH_DATE":"2022-05-06T20:50:17"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120768","FNUMBER":"401203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-06T09:18:11","FFINISH_DATE":"2022-05-07T19:24:27"},{"FBILL_NO":"MO000055","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120768","FNUMBER":"401203090002","FMATERIAL_NAME":"上海比芭云霓直条包290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T00:00:00","FPLAN_FINISH_DATE":"2022-04-30T00:00:00","FSTART_DATE":"2022-04-27T13:43:01","FFINISH_DATE":"2022-04-27T13:43:01"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120769","FNUMBER":"401203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾 WSJ0306","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T10:25:50","FFINISH_DATE":"2022-05-14T08:33:03"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120769","FNUMBER":"401203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾 WSJ0306","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T09:53:49","FFINISH_DATE":"2022-05-10T08:45:15"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120769","FNUMBER":"401203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾 WSJ0306","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-07T09:55:47","FFINISH_DATE":"2022-05-11T19:40:03"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120769","FNUMBER":"401203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾 WSJ0306","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-10T10:09:41","FFINISH_DATE":"2022-05-12T07:46:04"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120769","FNUMBER":"401203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾 WSJ0306","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-10T19:30:00","FPLAN_FINISH_DATE":"2022-05-10T19:30:00","FSTART_DATE":"2022-05-11T09:19:57","FFINISH_DATE":"2022-05-18T16:34:08"},{"FBILL_NO":"MO000055","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120769","FNUMBER":"401203110003","FMATERIAL_NAME":"上海比芭云霓直条包350mm超长夜用卫生巾 WSJ0306","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T00:00:00","FPLAN_FINISH_DATE":"2022-04-30T00:00:00","FSTART_DATE":"2022-04-27T13:43:01","FFINISH_DATE":"2022-04-27T13:43:01"},{"FBILL_NO":"MO000028","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120771","FNUMBER":"401203040005","FMATERIAL_NAME":"上海比芭云霓180mm护翼迷你巾 WSJ0312","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-21T00:00:00","FPLAN_FINISH_DATE":"2022-03-21T00:00:00","FSTART_DATE":"2022-03-23T10:46:35","FFINISH_DATE":"2022-03-24T19:50:09"},{"FBILL_NO":"MO000028","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120771","FNUMBER":"401203040005","FMATERIAL_NAME":"上海比芭云霓180mm护翼迷你巾 WSJ0312","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-21T00:00:00","FPLAN_FINISH_DATE":"2022-03-21T00:00:00","FSTART_DATE":"2022-03-19T09:54:06","FFINISH_DATE":"2022-03-22T19:41:52"},{"FBILL_NO":"MO000028","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120771","FNUMBER":"401203040005","FMATERIAL_NAME":"上海比芭云霓180mm护翼迷你巾 WSJ0312","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-23T00:00:00","FPLAN_FINISH_DATE":"2022-03-23T00:00:00","FSTART_DATE":"2022-03-23T10:46:23","FFINISH_DATE":"2022-03-23T10:46:23"},{"FBILL_NO":"MO000028","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120771","FNUMBER":"401203040005","FMATERIAL_NAME":"上海比芭云霓180mm护翼迷你巾 WSJ0312","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-23T00:00:00","FPLAN_FINISH_DATE":"2022-03-23T00:00:00","FSTART_DATE":"2022-03-22T10:51:40","FFINISH_DATE":"2022-03-23T19:50:41"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120772","FNUMBER":"401203060006","FMATERIAL_NAME":"上海比芭云霓掌心包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-25T09:57:11","FFINISH_DATE":"2022-05-26T20:08:37"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120772","FNUMBER":"401203060006","FMATERIAL_NAME":"上海比芭云霓掌心包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:52:30","FFINISH_DATE":"2022-05-21T18:37:52"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120772","FNUMBER":"401203060006","FMATERIAL_NAME":"上海比芭云霓掌心包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T09:57:10","FFINISH_DATE":"2022-05-23T19:48:42"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120772","FNUMBER":"401203060006","FMATERIAL_NAME":"上海比芭云霓掌心包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-23T09:56:43","FFINISH_DATE":"2022-05-24T19:47:57"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120772","FNUMBER":"401203060006","FMATERIAL_NAME":"上海比芭云霓掌心包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T09:45:35","FFINISH_DATE":"2022-06-16T16:01:03"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120772","FNUMBER":"401203060006","FMATERIAL_NAME":"上海比芭云霓掌心包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-25T00:00:00","FPLAN_FINISH_DATE":"2022-05-25T00:00:00","FSTART_DATE":"2022-05-24T09:46:32","FFINISH_DATE":"2022-05-25T20:27:10"},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120774","FNUMBER":"402203020008","FMATERIAL_NAME":"上海比芭云霓经期裤低腰M码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-07-15T00:00:00","FPLAN_FINISH_DATE":"2022-07-15T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120789","FNUMBER":"408001000001","FMATERIAL_NAME":"安琦零侧漏300mm夜用丝薄棉质卫生巾 LC23205","FSPECIFICATION":"1*2000片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-23T00:00:00","FPLAN_FINISH_DATE":"2022-04-23T00:00:00","FSTART_DATE":"2022-06-08T14:31:44","FFINISH_DATE":"2022-06-08T14:31:44"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120790","FNUMBER":"408001000002","FMATERIAL_NAME":"安琦零侧漏300mm夜用丝薄爽棉卫生巾 LC23206","FSPECIFICATION":"1*2000片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-06-08T14:32:34","FFINISH_DATE":"2022-06-08T14:32:34"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120793","FNUMBER":"408001000005","FMATERIAL_NAME":"安琦245mm日用柔棉卫生巾 24201/29201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-25T09:28:15","FFINISH_DATE":"2022-05-28T17:48:24"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120793","FNUMBER":"408001000005","FMATERIAL_NAME":"安琦245mm日用柔棉卫生巾 24201/29201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FSTART_DATE":"2022-06-03T09:30:35","FFINISH_DATE":"2022-06-09T08:08:59"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120793","FNUMBER":"408001000005","FMATERIAL_NAME":"安琦245mm日用柔棉卫生巾 24201/29201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-06-02T09:45:34","FFINISH_DATE":"2022-06-07T20:10:20"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120794","FNUMBER":"408001000006","FMATERIAL_NAME":"安琦290mm夜用柔棉卫生巾 29201","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-23T00:00:00","FPLAN_FINISH_DATE":"2022-05-23T00:00:00","FSTART_DATE":"2022-05-21T09:31:50","FFINISH_DATE":"2022-05-26T14:18:19"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120794","FNUMBER":"408001000006","FMATERIAL_NAME":"安琦290mm夜用柔棉卫生巾 29201","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-21T00:00:00","FPLAN_FINISH_DATE":"2022-05-21T00:00:00","FSTART_DATE":"2022-05-20T09:54:16","FFINISH_DATE":"2022-05-23T17:42:56"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120794","FNUMBER":"408001000006","FMATERIAL_NAME":"安琦290mm夜用柔棉卫生巾 29201","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-06-02T09:49:06","FFINISH_DATE":"2022-06-07T21:05:23"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120797","FNUMBER":"408001000009","FMATERIAL_NAME":"安琦柠檬245mm日用棉柔卫生巾 29221","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-25T09:44:12","FFINISH_DATE":"2022-05-30T20:22:32"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120797","FNUMBER":"408001000009","FMATERIAL_NAME":"安琦柠檬245mm日用棉柔卫生巾 29221","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FSTART_DATE":"2022-06-02T09:43:05","FFINISH_DATE":"2022-06-06T19:56:38"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120798","FNUMBER":"408001000010","FMATERIAL_NAME":"安琦柠檬290mm夜用棉柔卫生巾 29221","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-26T09:37:01","FFINISH_DATE":"2022-05-30T19:50:06"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120798","FNUMBER":"408001000010","FMATERIAL_NAME":"安琦柠檬290mm夜用棉柔卫生巾 29221","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FSTART_DATE":"2022-06-01T10:50:37","FFINISH_DATE":"2022-06-06T19:44:10"},{"FBILL_NO":"MO000083","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120802","FNUMBER":"408001000014","FMATERIAL_NAME":"安琦零度清爽清凉290mm夜用棉柔卫生巾 49201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FSTART_DATE":"2022-06-01T08:36:03","FFINISH_DATE":"2022-06-02T19:25:15"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120803","FNUMBER":"408001000015","FMATERIAL_NAME":"安琦零度清爽清凉245mm日用干爽卫生巾 49202","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-28T00:00:00","FPLAN_FINISH_DATE":"2022-05-31T00:00:00","FSTART_DATE":"2022-05-31T10:24:27","FFINISH_DATE":"2022-06-16T16:11:55"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120803","FNUMBER":"408001000015","FMATERIAL_NAME":"安琦零度清爽清凉245mm日用干爽卫生巾 49202","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-31T00:00:00","FPLAN_FINISH_DATE":"2022-05-31T00:00:00","FSTART_DATE":"2022-05-31T10:37:52","FFINISH_DATE":"2022-06-01T20:08:37"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120804","FNUMBER":"408001000016","FMATERIAL_NAME":"安琦零度清爽清凉290mm夜用干爽卫生巾 49202","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-28T00:00:00","FPLAN_FINISH_DATE":"2022-05-28T00:00:00","FSTART_DATE":"2022-05-28T09:51:24","FFINISH_DATE":"2022-06-01T19:21:09"},{"FBILL_NO":"MO000012","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-08T00:00:00","FPLAN_FINISH_DATE":"2022-01-08T00:00:00","FSTART_DATE":"2022-01-07T10:07:43","FFINISH_DATE":"2022-02-16T17:09:52"},{"FBILL_NO":"MO000012","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-03T00:00:00","FPLAN_FINISH_DATE":"2022-01-03T00:00:00","FSTART_DATE":"2021-12-31T11:03:06","FFINISH_DATE":"2022-01-11T16:09:17"},{"FBILL_NO":"MO000012","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-04T00:00:00","FPLAN_FINISH_DATE":"2022-01-04T00:00:00","FSTART_DATE":"2022-01-03T10:04:16","FFINISH_DATE":"2022-01-11T16:09:17"},{"FBILL_NO":"MO000012","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-05T00:00:00","FPLAN_FINISH_DATE":"2022-01-05T00:00:00","FSTART_DATE":"2022-01-05T09:43:52","FFINISH_DATE":"2022-01-11T16:09:17"},{"FBILL_NO":"MO000016","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-22T00:00:00","FPLAN_FINISH_DATE":"2022-02-22T00:00:00","FSTART_DATE":"2022-02-21T16:01:23","FFINISH_DATE":"2022-02-23T12:41:42"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-22T00:00:00","FPLAN_FINISH_DATE":"2022-02-22T00:00:00","FSTART_DATE":"2022-02-21T16:44:18","FFINISH_DATE":"2022-02-22T08:02:12"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T19:30:00","FPLAN_FINISH_DATE":"2022-04-08T19:30:00","FSTART_DATE":"2022-04-08T10:53:39","FFINISH_DATE":"2022-04-09T19:27:16"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T07:30:00","FPLAN_FINISH_DATE":"2022-04-08T07:30:00","FSTART_DATE":"2022-04-08T09:26:36","FFINISH_DATE":"2022-04-08T09:26:36"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T07:30:00","FPLAN_FINISH_DATE":"2022-04-08T07:30:00","FSTART_DATE":"2022-04-08T10:51:52","FFINISH_DATE":"2022-04-09T08:03:10"},{"FBILL_NO":"MO000012","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-06T00:00:00","FPLAN_FINISH_DATE":"2022-01-06T00:00:00","FSTART_DATE":"2022-01-05T09:47:44","FFINISH_DATE":"2022-01-11T16:09:17"},{"FBILL_NO":"MO000012","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-07T00:00:00","FPLAN_FINISH_DATE":"2022-01-07T00:00:00","FSTART_DATE":"2022-01-06T10:21:29","FFINISH_DATE":"2022-01-11T16:09:06"},{"FBILL_NO":"MO000030","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-12T00:00:00","FPLAN_FINISH_DATE":"2022-04-12T00:00:00","FSTART_DATE":"2022-04-09T10:18:18","FFINISH_DATE":"2022-06-08T14:29:28"},{"FBILL_NO":"MO000030","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T19:30:00","FPLAN_FINISH_DATE":"2022-04-08T19:30:00","FSTART_DATE":"2022-04-08T09:42:47","FFINISH_DATE":"2022-04-11T08:14:05"},{"FBILL_NO":"MO000030","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-09T07:30:00","FPLAN_FINISH_DATE":"2022-04-09T07:30:00","FSTART_DATE":"2022-04-08T09:44:45","FFINISH_DATE":"2022-06-08T14:29:11"},{"FBILL_NO":"MO000014","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120805","FNUMBER":"401001020001","FMATERIAL_NAME":"安琦特惠装棉柔护垫(150mm)E1014&LC15201","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-01-02T00:00:00","FPLAN_FINISH_DATE":"2022-01-07T00:00:00","FSTART_DATE":"2021-12-31T10:54:46","FFINISH_DATE":"2022-01-04T15:35:19"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120807","FNUMBER":"401001040001","FMATERIAL_NAME":"安琦零侧漏180mm直条迷你巾 LC18181","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-07T00:00:00","FPLAN_FINISH_DATE":"2022-03-07T00:00:00","FSTART_DATE":"2022-03-05T09:49:16","FFINISH_DATE":"2022-03-09T20:37:42"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120807","FNUMBER":"401001040001","FMATERIAL_NAME":"安琦零侧漏180mm直条迷你巾 LC18181","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-18T09:06:28","FFINISH_DATE":"2022-06-23T07:44:38"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120808","FNUMBER":"401001040002","FMATERIAL_NAME":"安琦零侧漏180mm护翼迷你巾 LC18101","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-02T19:30:00","FPLAN_FINISH_DATE":"2022-04-02T19:30:00","FSTART_DATE":"2022-04-02T08:53:43","FFINISH_DATE":"2022-04-03T09:49:48"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120810","FNUMBER":"401001040004","FMATERIAL_NAME":"安琦180mm清爽棉质迷你巾 48121&49201/49202赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-05-13T09:27:16","FFINISH_DATE":"2022-05-17T08:20:25"},{"FBILL_NO":"MO000083","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120810","FNUMBER":"401001040004","FMATERIAL_NAME":"安琦180mm清爽棉质迷你巾 48121&49201/49202赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FSTART_DATE":"2022-06-03T09:31:49","FFINISH_DATE":"2022-06-07T20:17:14"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120811","FNUMBER":"401001040005","FMATERIAL_NAME":"安琦180mm棉质迷你巾 T1860","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-04T19:30:00","FPLAN_FINISH_DATE":"2022-03-04T19:30:00","FSTART_DATE":"2022-03-04T10:13:17","FFINISH_DATE":"2022-03-05T09:06:16"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-03T19:30:00","FPLAN_FINISH_DATE":"2022-03-03T19:30:00","FSTART_DATE":"2022-03-03T09:46:41","FFINISH_DATE":"2022-03-04T08:29:08"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-26T07:30:00","FPLAN_FINISH_DATE":"2022-02-26T07:30:00","FSTART_DATE":"2022-02-25T14:08:16","FFINISH_DATE":"2022-02-28T19:59:36"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-26T19:30:00","FPLAN_FINISH_DATE":"2022-02-26T19:30:00","FSTART_DATE":"2022-02-26T09:55:40","FFINISH_DATE":"2022-02-27T08:00:31"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-27T07:30:00","FPLAN_FINISH_DATE":"2022-02-27T07:30:00","FSTART_DATE":"2022-02-26T09:59:03","FFINISH_DATE":"2022-02-27T17:31:36"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-28T07:30:00","FPLAN_FINISH_DATE":"2022-02-28T07:30:00","FSTART_DATE":"2022-02-26T15:00:22","FFINISH_DATE":"2022-03-03T07:41:53"},{"FBILL_NO":"MO000022","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-01T07:30:00","FPLAN_FINISH_DATE":"2022-03-01T07:30:00","FSTART_DATE":"2022-02-28T10:25:51","FFINISH_DATE":"2022-03-03T20:21:34"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-07T19:30:00","FPLAN_FINISH_DATE":"2022-04-07T19:30:00","FSTART_DATE":"2022-04-07T09:39:29","FFINISH_DATE":"2022-04-08T07:31:34"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T07:30:00","FPLAN_FINISH_DATE":"2022-04-08T07:30:00","FSTART_DATE":"2022-04-07T09:45:25","FFINISH_DATE":"2022-04-08T19:33:44"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-05-18T10:09:43","FFINISH_DATE":"2022-05-19T18:44:41"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FSTART_DATE":"2022-06-01T10:43:41","FFINISH_DATE":"2022-06-03T08:30:19"},{"FBILL_NO":"MO000082","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-14T09:23:57","FFINISH_DATE":"2022-06-20T20:14:15"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FSTART_DATE":"2022-06-01T10:42:13","FFINISH_DATE":"2022-06-01T10:42:13"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-08T07:30:00","FPLAN_FINISH_DATE":"2022-04-08T07:30:00","FSTART_DATE":"2022-06-08T14:28:39","FFINISH_DATE":"2022-06-08T14:28:39"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-06T00:00:00","FPLAN_FINISH_DATE":"2022-04-06T00:00:00","FSTART_DATE":"2022-04-03T09:49:06","FFINISH_DATE":"2022-04-07T07:50:38"},{"FBILL_NO":"MO000027","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-07T07:30:00","FPLAN_FINISH_DATE":"2022-04-07T07:30:00","FSTART_DATE":"2022-04-06T10:10:17","FFINISH_DATE":"2022-04-07T20:00:23"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-23T00:00:00","FPLAN_FINISH_DATE":"2022-04-23T00:00:00","FSTART_DATE":"2022-06-16T15:52:18","FFINISH_DATE":"2022-06-16T15:52:18"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-06T00:00:00","FPLAN_FINISH_DATE":"2022-05-06T00:00:00","FSTART_DATE":"2022-05-08T08:28:53","FFINISH_DATE":"2022-05-08T17:34:48"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-06-08T14:31:20","FFINISH_DATE":"2022-06-08T14:31:20"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T11:07:46","FFINISH_DATE":"2022-06-08T14:31:31"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-11T15:54:52","FFINISH_DATE":"2022-06-24T17:56:32"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120814","FNUMBER":"401001050002","FMATERIAL_NAME":"安琦零侧漏240mm丝薄爽棉日用卫生巾 LC24188","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-11T09:31:41","FFINISH_DATE":"2022-06-20T19:58:52"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120821","FNUMBER":"401001070001","FMATERIAL_NAME":"安琦零侧漏260mm棉质卫生巾 LC26181/LC26161/LC26201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-17T08:55:03","FFINISH_DATE":"2022-06-23T18:03:11"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120823","FNUMBER":"401001060002","FMATERIAL_NAME":"安琦零侧漏纯棉245mm棉质卫生巾 LCQ26161","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-09T10:06:05","FFINISH_DATE":"2022-05-11T19:52:48"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120823","FNUMBER":"401001060002","FMATERIAL_NAME":"安琦零侧漏纯棉245mm棉质卫生巾 LCQ26161","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-07T10:55:47","FFINISH_DATE":"2022-05-08T17:40:10"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120823","FNUMBER":"401001060002","FMATERIAL_NAME":"安琦零侧漏纯棉245mm棉质卫生巾 LCQ26161","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-07T14:18:57","FFINISH_DATE":"2022-05-10T10:09:41"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120823","FNUMBER":"401001060002","FMATERIAL_NAME":"安琦零侧漏纯棉245mm棉质卫生巾 LCQ26161","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-14T13:58:23","FFINISH_DATE":"2022-06-17T19:22:11"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120825","FNUMBER":"401001090001","FMATERIAL_NAME":"安琦云感柔棉舒睡290mm夜用卫生巾 CS29181/YR2201/YR3201/YR2181","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-08T00:00:00","FPLAN_FINISH_DATE":"2022-06-08T00:00:00","FSTART_DATE":"2022-06-06T08:59:39","FFINISH_DATE":"2022-06-09T18:56:53"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120827","FNUMBER":"401001100001","FMATERIAL_NAME":"安琦零侧漏300mm棉质夜用卫生巾LC30161&LC30151","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"2022-06-09T09:05:57","FFINISH_DATE":"2022-06-18T17:15:23"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120827","FNUMBER":"401001100001","FMATERIAL_NAME":"安琦零侧漏300mm棉质夜用卫生巾LC30161&LC30151","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-06-11T09:27:47","FFINISH_DATE":"2022-06-16T20:06:00"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120828","FNUMBER":"401001100002","FMATERIAL_NAME":"安琦零侧漏300mm爽棉夜用卫生巾 LC30152","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-29T00:00:00","FPLAN_FINISH_DATE":"2022-04-29T00:00:00","FSTART_DATE":"2022-06-03T09:27:47","FFINISH_DATE":"2022-06-16T15:40:50"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120828","FNUMBER":"401001100002","FMATERIAL_NAME":"安琦零侧漏300mm爽棉夜用卫生巾 LC30152","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FSTART_DATE":"2022-06-06T08:53:02","FFINISH_DATE":"2022-06-10T19:28:15"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120829","FNUMBER":"401001090003","FMATERIAL_NAME":"安琦零侧漏纯棉290mm棉质夜用卫生巾 LCQ30151","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-19T00:00:00","FPLAN_FINISH_DATE":"2022-04-19T00:00:00","FSTART_DATE":"2022-06-08T14:32:45","FFINISH_DATE":"2022-06-08T14:32:45"},{"FBILL_NO":"MO000085","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120829","FNUMBER":"401001090003","FMATERIAL_NAME":"安琦零侧漏纯棉290mm棉质夜用卫生巾 LCQ30151","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-06-13T09:31:50","FFINISH_DATE":"2022-06-15T19:45:42"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120831","FNUMBER":"401001090005","FMATERIAL_NAME":"安琦薄柔感3D凸棉290mm夜用卫生巾 BR30083&BR24303","FSPECIFICATION":"1*2200片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"2022-04-20T10:13:40","FFINISH_DATE":"2022-04-26T19:41:43"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120834","FNUMBER":"401001110001","FMATERIAL_NAME":"安琦350mm加长夜用棉质卫生巾 T3501","FSPECIFICATION":"1*1000片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-06T00:00:00","FPLAN_FINISH_DATE":"2022-06-06T00:00:00","FSTART_DATE":"2022-06-03T09:29:21","FFINISH_DATE":"2022-06-07T19:53:15"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120838","FNUMBER":"401001120002","FMATERIAL_NAME":"安琦云感棉超长夜用420大扇尾 CS42081","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-28T10:39:00","FFINISH_DATE":""},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120838","FNUMBER":"401001120002","FMATERIAL_NAME":"安琦云感棉超长夜用420大扇尾 CS42081","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-07T17:06:49","FFINISH_DATE":"2022-06-24T17:53:41"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120839","FNUMBER":"401001120003","FMATERIAL_NAME":"安琦薄柔感3D凸棉410mm超长夜用卫生巾 BR41063","FSPECIFICATION":"1*1200片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-23T00:00:00","FPLAN_FINISH_DATE":"2022-05-27T00:00:00","FSTART_DATE":"2022-05-21T09:20:57","FFINISH_DATE":"2022-06-02T17:19:39"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120840","FNUMBER":"402001040001","FMATERIAL_NAME":"安琦夜无忧低腰M-L码经期裤 DQL03&DQL05","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"121767","FNUMBER":"301207040001","FMATERIAL_NAME":"小姐妹180护垫迷你巾 #1180 白片","FSPECIFICATION":" ","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-21T14:07:25","FPLAN_FINISH_DATE":"2022-04-21T14:07:25","FSTART_DATE":"2022-06-03T09:35:14","FFINISH_DATE":"2022-06-09T19:28:46"},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"121767","FNUMBER":"301207040001","FMATERIAL_NAME":"小姐妹180护垫迷你巾 #1180 白片","FSPECIFICATION":" ","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T14:07:25","FPLAN_FINISH_DATE":"2022-05-07T14:07:25","FSTART_DATE":"2022-06-03T09:32:43","FFINISH_DATE":"2022-06-03T09:32:43"},{"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156916","FNUMBER":"401003050003","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气240mm日用卫生巾O24005&OH2405","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:46:37","FFINISH_DATE":"2022-05-24T16:46:37"},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156916","FNUMBER":"401003050003","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气240mm日用卫生巾O24005&OH2405","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-05-28T14:52:11","FFINISH_DATE":"2022-06-02T17:28:01"},{"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156917","FNUMBER":"401003090004","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气290mm夜用卫生巾O29505&OH2905","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T16:46:11","FFINISH_DATE":"2022-05-24T16:46:11"},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156917","FNUMBER":"401003090004","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气290mm夜用卫生巾O29505&OH2905","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-05-31T09:43:46","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156919","FNUMBER":"402003020007","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气M-L号低腰经期裤OM0002&OM02&OHK-M02&HXK02","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156919","FNUMBER":"402003020007","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气M-L号低腰经期裤OM0002&OM02&OHK-M02&HXK02","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156920","FNUMBER":"402003040006","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气L-XL号低腰经期裤OL0002&OL02&OHK-L02","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156920","FNUMBER":"402003040006","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气L-XL号低腰经期裤OL0002&OL02&OHK-L02","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156925","FNUMBER":"302003020007","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气M-L号低腰经期裤OM0002","FSPECIFICATION":"2片/包*48包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T10:37:39","FPLAN_FINISH_DATE":"2022-06-15T10:37:39","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156926","FNUMBER":"302003040006","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气L-XL号低腰经期裤OL0002","FSPECIFICATION":"2片/包*48包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T10:37:39","FPLAN_FINISH_DATE":"2022-06-15T10:37:39","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000076","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161234","FNUMBER":"401109060004","FMATERIAL_NAME":"云集心悦24悦薄无感蚕丝245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-06-11T09:26:22","FFINISH_DATE":""},{"FBILL_NO":"MO000076","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161234","FNUMBER":"401109060004","FMATERIAL_NAME":"云集心悦24悦薄无感蚕丝245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-06-13T09:13:52","FFINISH_DATE":"2022-06-18T07:55:04"},{"FBILL_NO":"MO000076","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161237","FNUMBER":"301109060004","FMATERIAL_NAME":"云集心悦24悦薄无感蚕丝245mm日用卫生巾","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-30T16:54:41","FPLAN_FINISH_DATE":"2022-05-30T16:54:41","FSTART_DATE":"2022-06-11T15:19:15","FFINISH_DATE":"2022-06-24T13:33:10"},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161245","FNUMBER":"402003020008","FMATERIAL_NAME":"呼吸时代轻呼吸系列低腰(M-L)M码经期裤 QK-M03","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-09T09:16:54","FFINISH_DATE":""},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161438","FNUMBER":"401201060008","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华245mm日用卫生巾 ZW114","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161438","FNUMBER":"401201060008","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华245mm日用卫生巾 ZW114","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-10T10:23:30","FFINISH_DATE":"2022-06-16T16:06:22"},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161438","FNUMBER":"401201060008","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华245mm日用卫生巾 ZW114","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T10:36:10","FFINISH_DATE":"2022-05-17T09:26:40"},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161438","FNUMBER":"401201060008","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华245mm日用卫生巾 ZW114","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-17T00:00:00","FPLAN_FINISH_DATE":"2022-05-17T00:00:00","FSTART_DATE":"2022-05-16T09:34:35","FFINISH_DATE":"2022-05-17T19:30:40"},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161439","FNUMBER":"401201080009","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华285mm夜用卫生巾ZW115","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161439","FNUMBER":"401201080009","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华285mm夜用卫生巾ZW115","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-02T00:00:00","FPLAN_FINISH_DATE":"2022-05-02T00:00:00","FSTART_DATE":"2022-04-30T10:33:51","FFINISH_DATE":"2022-05-20T20:09:00"},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161439","FNUMBER":"401201080009","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华285mm夜用卫生巾ZW115","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-03T00:00:00","FPLAN_FINISH_DATE":"2022-05-03T00:00:00","FSTART_DATE":"2022-05-18T00:00:00","FFINISH_DATE":"2022-05-19T19:57:34"},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161439","FNUMBER":"401201080009","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华285mm夜用卫生巾ZW115","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-04-30T10:44:36","FFINISH_DATE":"2022-06-16T16:06:36"},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161440","FNUMBER":"301201060008","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华245mm日用卫生巾 ZW114","FSPECIFICATION":"8片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-07T09:18:52","FPLAN_FINISH_DATE":"2022-05-07T09:18:52","FSTART_DATE":"2022-05-11T16:55:25","FFINISH_DATE":""},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161442","FNUMBER":"301201080009","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华285mm夜用卫生巾 ZW115","FSPECIFICATION":"6片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-14T09:18:58","FPLAN_FINISH_DATE":"2022-05-14T09:18:58","FSTART_DATE":"2022-05-11T16:55:02","FFINISH_DATE":""},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161450","FNUMBER":"301501040014","FMATERIAL_NAME":"雨森百丽纤爽180mm护翼迷你巾20片装 BL5631","FSPECIFICATION":"20片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-02-28T10:41:40","FPLAN_FINISH_DATE":"2022-02-28T10:41:40","FSTART_DATE":"2022-03-13T15:02:40","FFINISH_DATE":"2022-04-06T18:54:29"},{"FBILL_NO":"MO000024","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161451","FNUMBER":"401501040008","FMATERIAL_NAME":"雨森百丽纤爽180mm护翼迷你巾BL5631","FSPECIFICATION":"1*300片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-10T00:00:00","FPLAN_FINISH_DATE":"2022-03-11T00:00:00","FSTART_DATE":"2022-03-11T09:37:42","FFINISH_DATE":"2022-05-25T11:08:39"},{"FBILL_NO":"MO000028","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161710","FNUMBER":"301210020001","FMATERIAL_NAME":"印度M.O. 系列150mm护垫白片装","FSPECIFICATION":"4000","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-03-19T11:20:12","FPLAN_FINISH_DATE":"2022-03-19T11:20:12","FSTART_DATE":"2022-03-18T14:36:49","FFINISH_DATE":"2022-06-16T15:02:54"},{"FBILL_NO":"MO000083","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161792","FNUMBER":"401001060008","FMATERIAL_NAME":"安琦零度清爽系列245mm日用卫生巾 49201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FSTART_DATE":"2022-06-01T12:57:09","FFINISH_DATE":"2022-06-02T19:43:20"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161796","FNUMBER":"401001050006","FMATERIAL_NAME":"安琦零侧漏240mm丝薄爽棉日用卫生巾 LC23206","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-07T14:23:51","FFINISH_DATE":"2022-05-10T09:16:17"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161796","FNUMBER":"401001050006","FMATERIAL_NAME":"安琦零侧漏240mm丝薄爽棉日用卫生巾 LC23206","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T10:34:13","FFINISH_DATE":"2022-05-10T08:56:58"},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161829","FNUMBER":"401001090006","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列290mm夜用卫生巾 DC2905","FSPECIFICATION":"1*2200片","FWORK_SHOP":"14号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161830","FNUMBER":"401001090007","FMATERIAL_NAME":"安琦有机纯棉系列290mm夜用卫生巾 BC2908C","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-18T00:00:00","FPLAN_FINISH_DATE":"2022-04-18T00:00:00","FSTART_DATE":"2022-06-08T14:33:24","FFINISH_DATE":"2022-06-08T14:33:24"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161831","FNUMBER":"401001060005","FMATERIAL_NAME":"安琦有机纯棉系列245mm日用卫生巾 BC2410C","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-06T00:00:00","FPLAN_FINISH_DATE":"2022-05-06T00:00:00","FSTART_DATE":"2022-05-06T08:01:21","FFINISH_DATE":"2022-05-07T19:17:54"},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161832","FNUMBER":"401001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列245mm夜用卫生巾 DC2407","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"2022-06-08T09:32:44","FFINISH_DATE":"2022-06-20T20:25:41"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161857","FNUMBER":"401001060006","FMATERIAL_NAME":"安琦掌心包系列245mm日用卫生巾 MN24161","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-19T09:50:40","FFINISH_DATE":"2022-05-20T19:40:01"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161857","FNUMBER":"401001060006","FMATERIAL_NAME":"安琦掌心包系列245mm日用卫生巾 MN24161","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-05-18T10:11:49","FFINISH_DATE":"2022-05-19T21:09:34"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161858","FNUMBER":"401001090008","FMATERIAL_NAME":"安琦掌心包系列290mm夜用卫生巾 MN29141","FSPECIFICATION":"1*2200片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-28T09:58:47","FFINISH_DATE":"2022-05-31T17:17:52"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161917","FNUMBER":"401001120004","FMATERIAL_NAME":"安琦零侧漏410mm超长夜用直条卫生巾 LC41031&LC41061","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-20T00:00:00","FPLAN_FINISH_DATE":"2022-04-20T00:00:00","FSTART_DATE":"2022-06-08T14:33:07","FFINISH_DATE":"2022-06-08T14:33:07"},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161918","FNUMBER":"401001120005","FMATERIAL_NAME":"安琦电商薄羽蚕丝410mm超长夜用直条卫生巾 DC4204","FSPECIFICATION":"1*1200片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162471","FNUMBER":"401301040001","FMATERIAL_NAME":"恋呼吸全透气180mm迷你卫生巾","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-21T09:09:16","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162471","FNUMBER":"401301040001","FMATERIAL_NAME":"恋呼吸全透气180mm迷你卫生巾","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-06-28T17:13:27","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162472","FNUMBER":"401301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-28T17:13:27","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162472","FNUMBER":"401301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-28T17:13:27","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162472","FNUMBER":"401301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-27T00:00:00","FPLAN_FINISH_DATE":"2022-05-27T00:00:00","FSTART_DATE":"2022-05-26T15:32:55","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162473","FNUMBER":"401301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-28T17:13:27","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162473","FNUMBER":"401301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-05-30T09:46:28","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162474","FNUMBER":"401301120001","FMATERIAL_NAME":"恋呼吸全透气410mm超长夜用卫生巾","FSPECIFICATION":"1*1200片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-02T09:53:25","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162474","FNUMBER":"401301120001","FMATERIAL_NAME":"恋呼吸全透气410mm超长夜用卫生巾","FSPECIFICATION":"1*1200片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-06-28T17:13:27","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162475","FNUMBER":"402301020001","FMATERIAL_NAME":"恋呼吸全透气M-L号低腰M经期裤","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-28T17:13:27","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162475","FNUMBER":"402301020001","FMATERIAL_NAME":"恋呼吸全透气M-L号低腰M经期裤","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T00:00:00","FPLAN_FINISH_DATE":"2022-06-10T00:00:00","FSTART_DATE":"2022-06-28T17:13:27","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000051","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162492","FNUMBER":"401103070001","FMATERIAL_NAME":"隆力奇清欣磁动力日用卫生巾260mm","FSPECIFICATION":"1*9500片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-26T16:07:08","FFINISH_DATE":"2022-04-26T16:09:31"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162565","FNUMBER":"301104110002","FMATERIAL_NAME":"唯尔福345mm超长夜用卫生巾 白片","FSPECIFICATION":"白片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"2022-06-16T16:09:11","FFINISH_DATE":"2022-06-16T16:09:11"},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162565","FNUMBER":"301104110002","FMATERIAL_NAME":"唯尔福345mm超长夜用卫生巾 白片","FSPECIFICATION":"白片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"2022-05-07T08:20:26","FFINISH_DATE":"2022-06-16T16:08:01"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162638","FNUMBER":"401100060022","FMATERIAL_NAME":"倍舒特掌心魔力包245mm日用卫生巾 ML14510","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-10T10:31:50","FFINISH_DATE":"2022-05-10T10:31:50"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162638","FNUMBER":"401100060022","FMATERIAL_NAME":"倍舒特掌心魔力包245mm日用卫生巾 ML14510","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-26T14:09:52","FFINISH_DATE":"2022-05-26T14:09:52"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162638","FNUMBER":"401100060022","FMATERIAL_NAME":"倍舒特掌心魔力包245mm日用卫生巾 ML14510","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-10T10:35:04","FFINISH_DATE":"2022-05-12T20:20:27"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162638","FNUMBER":"401100060022","FMATERIAL_NAME":"倍舒特掌心魔力包245mm日用卫生巾 ML14510","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-12T09:54:50","FFINISH_DATE":"2022-05-17T09:48:02"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162638","FNUMBER":"401100060022","FMATERIAL_NAME":"倍舒特掌心魔力包245mm日用卫生巾 ML14510","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T00:00:00","FPLAN_FINISH_DATE":"2022-05-16T00:00:00","FSTART_DATE":"2022-05-14T09:56:15","FFINISH_DATE":"2022-05-17T21:13:35"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162638","FNUMBER":"401100060022","FMATERIAL_NAME":"倍舒特掌心魔力包245mm日用卫生巾 ML14510","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T10:16:13","FFINISH_DATE":"2022-05-17T21:18:41"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162638","FNUMBER":"401100060022","FMATERIAL_NAME":"倍舒特掌心魔力包245mm日用卫生巾 ML14510","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-18T00:00:00","FPLAN_FINISH_DATE":"2022-05-18T00:00:00","FSTART_DATE":"2022-05-17T15:45:30","FFINISH_DATE":"2022-05-18T19:11:14"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162639","FNUMBER":"401100090023","FMATERIAL_NAME":"倍舒特掌心魔力包290mm日用卫生巾 ML16509","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-10T10:32:20","FFINISH_DATE":"2022-05-10T10:32:20"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162639","FNUMBER":"401100090023","FMATERIAL_NAME":"倍舒特掌心魔力包290mm日用卫生巾 ML16509","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-23T10:04:46","FFINISH_DATE":"2022-05-30T19:59:19"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162754","FNUMBER":"401515060001","FMATERIAL_NAME":"金博士纤薄240mm日用卫生巾 JBJ-8500","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T00:00:00","FPLAN_FINISH_DATE":"2022-05-13T00:00:00","FSTART_DATE":"2022-05-03T08:38:47","FFINISH_DATE":"2022-05-05T19:27:54"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162755","FNUMBER":"401515060002","FMATERIAL_NAME":"金博士丝薄240mm日用卫生巾 JBJ-8548","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-10T00:00:00","FPLAN_FINISH_DATE":"2022-05-10T00:00:00","FSTART_DATE":"2022-06-16T16:09:42","FFINISH_DATE":"2022-06-16T16:09:42"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162756","FNUMBER":"401515090001","FMATERIAL_NAME":"金博士丝薄290mm夜用卫生巾 JBJ-8555","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-08T00:00:00","FPLAN_FINISH_DATE":"2022-05-08T00:00:00","FSTART_DATE":"2022-05-07T10:28:54","FFINISH_DATE":"2022-05-12T18:39:02"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162757","FNUMBER":"401515090002","FMATERIAL_NAME":"金博士纤薄290mm夜用卫生巾JBJ-8517","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-01T00:00:00","FPLAN_FINISH_DATE":"2022-05-01T00:00:00","FSTART_DATE":"2022-04-30T09:29:18","FFINISH_DATE":"2022-05-02T19:27:51"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162757","FNUMBER":"401515090002","FMATERIAL_NAME":"金博士纤薄290mm夜用卫生巾JBJ-8517","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T00:00:00","FPLAN_FINISH_DATE":"2022-04-30T00:00:00","FSTART_DATE":"2022-04-29T13:44:17","FFINISH_DATE":"2022-05-03T17:31:17"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162758","FNUMBER":"401515110001","FMATERIAL_NAME":"金博士350mm纤薄夜用卫生巾JBJ-8524","FSPECIFICATION":"1*1000片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-02T00:00:00","FPLAN_FINISH_DATE":"2022-05-02T00:00:00","FSTART_DATE":"2022-04-30T09:27:57","FFINISH_DATE":"2022-05-18T15:42:15"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162758","FNUMBER":"401515110001","FMATERIAL_NAME":"金博士350mm纤薄夜用卫生巾JBJ-8524","FSPECIFICATION":"1*1000片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-30T00:00:00","FPLAN_FINISH_DATE":"2022-04-30T00:00:00","FSTART_DATE":"2022-04-29T13:41:22","FFINISH_DATE":"2022-05-02T19:48:50"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162758","FNUMBER":"401515110001","FMATERIAL_NAME":"金博士350mm纤薄夜用卫生巾JBJ-8524","FSPECIFICATION":"1*1000片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-01T00:00:00","FPLAN_FINISH_DATE":"2022-05-01T00:00:00","FSTART_DATE":"2022-04-30T09:26:15","FFINISH_DATE":"2022-05-05T07:30:08"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162759","FNUMBER":"401515120001","FMATERIAL_NAME":"金博士410mm纤薄超长夜用卫生巾JBJ-8531","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-03T00:00:00","FPLAN_FINISH_DATE":"2022-05-03T00:00:00","FSTART_DATE":"2022-06-16T16:10:42","FFINISH_DATE":"2022-06-16T16:10:42"},{"FBILL_NO":"MO000094","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162769","FNUMBER":"301210090002","FMATERIAL_NAME":"印度M.O. 系列290mm夜用卫生巾 白片装","FSPECIFICATION":"1000","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-06T00:00:00","FPLAN_FINISH_DATE":"2022-06-06T00:00:00","FSTART_DATE":"2022-06-06T12:04:12","FFINISH_DATE":"2022-06-09T22:51:46"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163002","FNUMBER":"301001060006","FMATERIAL_NAME":"安琦掌心包245mm卫生巾16片 MN24161","FSPECIFICATION":"16片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-06T00:00:00","FPLAN_FINISH_DATE":"2022-05-06T00:00:00","FSTART_DATE":"2022-05-18T19:23:23","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163003","FNUMBER":"301001090006","FMATERIAL_NAME":"安琦掌心包290mm夜用卫生巾14片 MN29141","FSPECIFICATION":"14片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-12T00:00:00","FPLAN_FINISH_DATE":"2022-05-12T00:00:00","FSTART_DATE":"2022-05-18T19:28:21","FFINISH_DATE":"2022-07-01T15:37:49"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163004","FNUMBER":"301001090007","FMATERIAL_NAME":"安琦有机纯棉棉柔纤巧夜用卫生巾(285mm)BC2908C","FSPECIFICATION":"8片×30包","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-18T00:00:00","FPLAN_FINISH_DATE":"2022-04-18T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163005","FNUMBER":"301001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列丝薄日用卫生巾(245mm)","FSPECIFICATION":"7片/包×100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"2022-06-16T12:39:51","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163006","FNUMBER":"301001060008","FMATERIAL_NAME":"安琦有机纯棉系列棉柔纤巧日用卫生巾(245mm)BC2410C","FSPECIFICATION":"10片×30包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163007","FNUMBER":"301001090008","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列夜用丝薄卫生巾(290mm)DC2905","FSPECIFICATION":"5片/包×100包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163008","FNUMBER":"301001120005","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列棉质丝薄超长夜用卫生巾(410mm)DC4204","FSPECIFICATION":"4片/包*100包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163042","FNUMBER":"302500020011","FMATERIAL_NAME":"丝宝洁婷透气棉透气优裤系列经期裤M-L号低腰M码K102","FSPECIFICATION":"2片/包*48包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-06-22T11:27:41","FFINISH_DATE":"2022-06-22T11:27:41"},{"FBILL_NO":"MO000065","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163043","FNUMBER":"302500020012","FMATERIAL_NAME":"丝宝洁婷透气棉透气优裤系列经期裤M-L号低腰M码K102+1","FSPECIFICATION":"3片/包*48包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"2022-06-22T11:29:13","FFINISH_DATE":"2022-06-22T11:29:13"},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163043","FNUMBER":"302500020012","FMATERIAL_NAME":"丝宝洁婷透气棉透气优裤系列经期裤M-L号低腰M码K102+1","FSPECIFICATION":"3片/包*48包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-06-22T11:28:34","FFINISH_DATE":"2022-06-22T11:28:34"},{"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-27T12:21:48","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"13号机","FUNIT_ID":"包","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T10:37:39","FPLAN_FINISH_DATE":"2022-06-03T10:37:39","FSTART_DATE":"2022-06-02T09:06:22","FFINISH_DATE":""},{"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-27T12:21:39","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"包","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T10:37:39","FPLAN_FINISH_DATE":"2022-05-30T10:37:39","FSTART_DATE":"2022-06-02T09:07:52","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163208","FNUMBER":"301515060001","FMATERIAL_NAME":"金博士纤薄240mm日用卫生巾JBJ-8500","FSPECIFICATION":"10片*36包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-13T13:18:35","FPLAN_FINISH_DATE":"2022-05-13T13:18:35","FSTART_DATE":"2022-05-18T14:56:51","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163209","FNUMBER":"301515060002","FMATERIAL_NAME":"金博士丝薄240mm日用卫生巾JBJ-8548","FSPECIFICATION":"10片*36包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-10T13:18:35","FPLAN_FINISH_DATE":"2022-05-10T13:18:35","FSTART_DATE":"2022-05-18T14:56:39","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163210","FNUMBER":"301515060003","FMATERIAL_NAME":"金博士丝薄240mm日用卫生巾JBJ-8548-1","FSPECIFICATION":"1片/包","FWORK_SHOP":"15号机","FUNIT_ID":"包","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-10T13:18:35","FPLAN_FINISH_DATE":"2022-05-10T13:18:35","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163211","FNUMBER":"301515090002","FMATERIAL_NAME":"金博士纤薄290mm夜用卫生巾JBJ-8517","FSPECIFICATION":"8片*36包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-13T13:18:35","FPLAN_FINISH_DATE":"2022-05-13T13:18:35","FSTART_DATE":"2022-05-18T14:57:21","FFINISH_DATE":"2022-05-26T10:27:06"},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163212","FNUMBER":"301515090001","FMATERIAL_NAME":"金博士丝薄290mm夜用卫生巾JBJ-8555","FSPECIFICATION":"8片*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-07T13:18:35","FPLAN_FINISH_DATE":"2022-05-07T13:18:35","FSTART_DATE":"2022-05-18T14:57:35","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163213","FNUMBER":"301515110001","FMATERIAL_NAME":"金博士纤薄350mm夜用卫生巾JBJ-8524","FSPECIFICATION":"6片*36包/箱","FWORK_SHOP":"8号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-04-30T13:18:35","FPLAN_FINISH_DATE":"2022-04-30T13:18:35","FSTART_DATE":"2022-05-18T14:57:45","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163214","FNUMBER":"301515120001","FMATERIAL_NAME":"金博士纤薄410mm超长夜用卫生巾JBJ-8531","FSPECIFICATION":"4片*36包/箱","FWORK_SHOP":"10号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-03T13:18:35","FPLAN_FINISH_DATE":"2022-05-03T13:18:35","FSTART_DATE":"2022-05-18T14:57:58","FFINISH_DATE":""},{"FBILL_NO":"MO000042","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163413","FNUMBER":"301202060018","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm 3片装*200包 中国版","FSPECIFICATION":"3片/包*200包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-19T10:01:25","FPLAN_FINISH_DATE":"2022-04-19T10:01:25","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163413","FNUMBER":"301202060018","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm 3片装*200包 中国版","FSPECIFICATION":"3片/包*200包/箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T10:39:56","FPLAN_FINISH_DATE":"2022-05-19T10:39:56","FSTART_DATE":"2022-05-20T16:46:25","FFINISH_DATE":"2022-05-31T19:13:27"},{"FBILL_NO":"MO000053","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163415","FNUMBER":"301202060017","FMATERIAL_NAME":"沐歆澳棉系列产品超薄型日用卫生巾245mm 3片装*200 贴标","FSPECIFICATION":"3片/包*200包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-04-26T00:00:00","FPLAN_FINISH_DATE":"2022-04-26T00:00:00","FSTART_DATE":"2022-04-26T16:20:59","FFINISH_DATE":"2022-04-26T16:20:59"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163419","FNUMBER":"301203060012","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾2片装 体验装 WSJ0202","FSPECIFICATION":"2片/包*100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-18T08:51:58","FPLAN_FINISH_DATE":"2022-05-18T08:51:58","FSTART_DATE":"2022-05-18T16:07:34","FFINISH_DATE":""},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163419","FNUMBER":"301203060012","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾2片装 体验装 WSJ0202","FSPECIFICATION":"2片/包*100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T14:17:51","FPLAN_FINISH_DATE":"2022-07-05T14:17:51","FSTART_DATE":"2022-06-28T12:03:34","FFINISH_DATE":""},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163601","FNUMBER":"301100090027","FMATERIAL_NAME":"倍舒特掌心包290mm夜用卫生巾9片装 ML16509","FSPECIFICATION":"9片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-05-17T14:23:30","FFINISH_DATE":"2022-07-01T14:22:49"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163601","FNUMBER":"301100090027","FMATERIAL_NAME":"倍舒特掌心包290mm夜用卫生巾9片装 ML16509","FSPECIFICATION":"9片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-11T13:13:49","FPLAN_FINISH_DATE":"2022-06-03T13:13:49","FSTART_DATE":"2022-05-17T14:23:44","FFINISH_DATE":""},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163602","FNUMBER":"301100060026","FMATERIAL_NAME":"倍舒特掌心包245mm日用卫生巾10片装 ML14510","FSPECIFICATION":"10片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-17T14:22:47","FFINISH_DATE":""},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163602","FNUMBER":"301100060026","FMATERIAL_NAME":"倍舒特掌心包245mm日用卫生巾10片装 ML14510","FSPECIFICATION":"10片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-09T13:13:39","FPLAN_FINISH_DATE":"2022-05-20T13:13:39","FSTART_DATE":"2022-05-17T14:23:04","FFINISH_DATE":"2022-05-20T16:11:48"},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163791","FNUMBER":"302203020011","FMATERIAL_NAME":"上海比芭云霓经期裤低腰M码 4片装 WSJ0504","FSPECIFICATION":"4片/包*24包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-07-15T14:17:51","FPLAN_FINISH_DATE":"2022-07-15T14:17:51","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163898","FNUMBER":"301202030001","FMATERIAL_NAME":"沐歆澳棉系列纯棉护垫155mm卫生护垫18片*100包 贴标","FSPECIFICATION":"18片/包*100包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T10:27:37","FPLAN_FINISH_DATE":"2022-05-20T10:27:37","FSTART_DATE":"2022-05-19T12:03:42","FFINISH_DATE":"2022-07-01T13:01:18"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163899","FNUMBER":"301202060003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm 10片装*60包 贴标","FSPECIFICATION":"10片/包*60包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-20T10:27:37","FPLAN_FINISH_DATE":"2022-05-20T10:27:37","FSTART_DATE":"2022-05-16T08:19:47","FFINISH_DATE":"2022-07-01T13:50:51"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163900","FNUMBER":"301202060004","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm 8片装*60包 中国版","FSPECIFICATION":"8片/包*60包/箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-19T10:27:37","FPLAN_FINISH_DATE":"2022-05-19T10:27:37","FSTART_DATE":"2022-05-20T16:44:25","FFINISH_DATE":"2022-07-01T14:20:21"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163902","FNUMBER":"301202090001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm 8片装*60包 贴标","FSPECIFICATION":"8片/包*60包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-14T10:27:38","FPLAN_FINISH_DATE":"2022-05-14T10:27:38","FSTART_DATE":"2022-05-13T12:07:52","FFINISH_DATE":"2022-05-31T18:58:21"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164435","FNUMBER":"301202090002","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型夜用卫生巾290mm 6片装*60 中国版","FSPECIFICATION":"6片/包*60包/箱","FWORK_SHOP":"11号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T10:27:38","FPLAN_FINISH_DATE":"2022-05-16T10:27:38","FSTART_DATE":"2022-05-13T14:27:48","FFINISH_DATE":"2022-05-31T19:21:55"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164437","FNUMBER":"301202110007","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm 6片装*60包 贴标","FSPECIFICATION":"6片/包*60包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-16T10:32:16","FPLAN_FINISH_DATE":"2022-05-16T10:32:16","FSTART_DATE":"2022-05-13T11:15:15","FFINISH_DATE":"2022-05-31T13:34:01"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164439","FNUMBER":"301202120017","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型超长夜用卫生巾410mm 4片装*60包 中国版","FSPECIFICATION":"4片/包*60包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-27T10:27:38","FPLAN_FINISH_DATE":"2022-05-27T10:27:38","FSTART_DATE":"2022-05-24T16:34:24","FFINISH_DATE":"2022-05-31T19:30:12"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164441","FNUMBER":"302202020011","FMATERIAL_NAME":"沐歆澳棉经期裤低腰M码 2片装*54包 贴标","FSPECIFICATION":"2片/包*54包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T10:27:38","FPLAN_FINISH_DATE":"2022-05-26T10:27:38","FSTART_DATE":"2022-05-21T09:31:11","FFINISH_DATE":""},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164443","FNUMBER":"302202020012","FMATERIAL_NAME":"沐歆澳棉经期裤低腰M码 2片装*54包 不贴标","FSPECIFICATION":"2片/包*54包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T10:34:49","FPLAN_FINISH_DATE":"2022-05-26T10:34:49","FSTART_DATE":"2022-05-21T09:31:27","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164560","FNUMBER":"302003020001","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气M-L号低腰经期裤OM0212","FSPECIFICATION":"2片/包*12包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-01T10:37:39","FPLAN_FINISH_DATE":"2022-06-01T10:37:39","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164561","FNUMBER":"302003040001","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气L-XL号低腰经期裤OL0212","FSPECIFICATION":"2片/包*12包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T10:37:39","FPLAN_FINISH_DATE":"2022-06-15T10:37:39","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164562","FNUMBER":"302003020010","FMATERIAL_NAME":"呼吸时代轻呼吸系列女性卫生裤产品低腰(M-L)M码 QK-M0312","FSPECIFICATION":"3片/包*12包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T10:52:33","FPLAN_FINISH_DATE":"2022-06-15T10:52:33","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000062","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164810","FNUMBER":"301111020001","FMATERIAL_NAME":"南通荷塘催月150mm护垫 白片","FSPECIFICATION":"10000片/箱","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-02T15:51:05.187","FPLAN_FINISH_DATE":"2022-05-02T15:51:05.187","FSTART_DATE":"2022-05-03T08:43:04","FFINISH_DATE":"2022-05-03T19:53:00"},{"FBILL_NO":"MO000070","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175314","FNUMBER":"308003000001","FMATERIAL_NAME":"呼吸时代焕芯小裤 36包 HX0836","FSPECIFICATION":"(2片经期裤+2包350mm*3片/包)/包*36包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-30T10:28:40","FPLAN_FINISH_DATE":"2022-05-30T10:28:40","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000070","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175316","FNUMBER":"402003020009","FMATERIAL_NAME":"呼吸时代焕芯小裤系列低腰(M-L)M码经期裤 HX0836&HX0804","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-05-24T21:28:01","FFINISH_DATE":"2022-06-16T16:16:48"},{"FBILL_NO":"MO000070","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175316","FNUMBER":"402003020009","FMATERIAL_NAME":"呼吸时代焕芯小裤系列低腰(M-L)M码经期裤 HX0836&HX0804","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-05-24T21:28:01","FFINISH_DATE":"2022-06-16T16:16:34"},{"FBILL_NO":"MO000070","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175317","FNUMBER":"401003110001","FMATERIAL_NAME":"呼吸时代焕芯小裤系列350卫生巾 HX0836&HX0804","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T10:50:24","FFINISH_DATE":"2022-05-24T11:26:22"},{"FBILL_NO":"MO000070","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175317","FNUMBER":"401003110001","FMATERIAL_NAME":"呼吸时代焕芯小裤系列350卫生巾 HX0836&HX0804","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-24T10:50:24","FFINISH_DATE":"2022-05-27T19:38:06"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175652","FNUMBER":"301003010001","FMATERIAL_NAME":"恋呼吸全透气180mm迷你卫生巾LHX-180","FSPECIFICATION":"10片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-22T09:30:56","FFINISH_DATE":"2022-07-01T13:40:46"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175652","FNUMBER":"301003010001","FMATERIAL_NAME":"恋呼吸全透气180mm迷你卫生巾LHX-180","FSPECIFICATION":"10片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"2022-06-22T09:30:47","FFINISH_DATE":"2022-07-01T13:41:10"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175653","FNUMBER":"301301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾LHX-245","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175653","FNUMBER":"301301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾LHX-245","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"2022-05-27T12:23:00","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-01T12:51:53","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"2022-06-01T12:52:11","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175655","FNUMBER":"301301120001","FMATERIAL_NAME":"恋呼吸全透气410mm超长夜用卫生巾LHX-410","FSPECIFICATION":"4片/包*24包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-15T13:13:51","FSTART_DATE":"2022-06-01T12:07:02","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175655","FNUMBER":"301301120001","FMATERIAL_NAME":"恋呼吸全透气410mm超长夜用卫生巾LHX-410","FSPECIFICATION":"4片/包*24包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-01T12:06:44","FFINISH_DATE":"2022-07-01T13:57:29"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175658","FNUMBER":"302301020001","FMATERIAL_NAME":"恋呼吸全透气M-L号低腰M经期裤LHX-JM","FSPECIFICATION":"2片/包*24包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175658","FNUMBER":"302301020001","FMATERIAL_NAME":"恋呼吸全透气M-L号低腰M经期裤LHX-JM","FSPECIFICATION":"2片/包*24包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-27T12:22:29","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"2022-05-27T12:25:23","FFINISH_DATE":""},{"FBILL_NO":"MO000070","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175680","FNUMBER":"308003000003","FMATERIAL_NAME":"呼吸时代焕芯小裤 4包 HX0804","FSPECIFICATION":"(2片经期裤+2包350mm*3片/包)/包*4包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-30T10:28:40","FPLAN_FINISH_DATE":"2022-05-30T10:28:40","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000076","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175987","FNUMBER":"301109060001","FMATERIAL_NAME":"云集心悦24悦薄无感蚕丝245mm日用卫生巾2片装","FSPECIFICATION":"2片/包*100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-05-30T11:18:32","FPLAN_FINISH_DATE":"2022-05-30T11:18:32","FSTART_DATE":"2022-06-11T15:19:21","FFINISH_DATE":"2022-06-24T13:32:46"},{"FBILL_NO":"MO000080","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"176323","FNUMBER":"301202060006","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm 10片装*60包 不贴标","FSPECIFICATION":"10片/包*60包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"结案","FPLAN_START_DATE":"2022-06-06T16:26:19","FPLAN_FINISH_DATE":"2022-06-06T16:26:19","FSTART_DATE":"2022-06-09T10:20:01","FFINISH_DATE":"2022-06-14T16:08:50"}]} + +-------------------------------- +2022/7/12 9:42:10| +Request Data: + QueryData:/api/BigScreen/getPlanOrderList + BodyData: + +-------------------------------- +2022/7/12 9:42:19| +Response Data: +{"code":200,"success":true,"message":"成功","data":[{"FBILL_NO":"MO000095","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101795","FNUMBER":"301001070007","FMATERIAL_NAME":"安琦清爽纤薄零侧漏260mm爽棉卫生巾16片 LCQ26163","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-28T00:00:00","FPLAN_FINISH_DATE":"2022-06-28T00:00:00","FSTART_DATE":"2022-06-27T14:34:18","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101800","FNUMBER":"301001100003","FMATERIAL_NAME":"安琦零侧漏300mm爽棉夜用卫生巾15片 LC30152","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-29T00:00:00","FPLAN_FINISH_DATE":"2022-04-29T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000096","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101802","FNUMBER":"301001100005","FMATERIAL_NAME":"安琦清爽纤薄零侧漏300mm爽棉夜用卫生巾15片 LCQ30152","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-01T00:00:00","FPLAN_FINISH_DATE":"2022-07-01T00:00:00","FSTART_DATE":"2022-06-27T14:35:14","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101803","FNUMBER":"301001090005","FMATERIAL_NAME":"安琦薄柔感3D凸棉290mm夜用卫生巾8片 BR30083","FSPECIFICATION":"8片/包*30包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101809","FNUMBER":"301001120001","FMATERIAL_NAME":"安琦零侧漏410mm超长棉质夜用卫生巾3片 LC41031","FSPECIFICATION":"3片/包*24包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-20T00:00:00","FPLAN_FINISH_DATE":"2022-04-20T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101813","FNUMBER":"302001040001","FMATERIAL_NAME":"安琦夜无忧女性卫生裤低腰M-L码5片 DQL05","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101823","FNUMBER":"308001000001","FMATERIAL_NAME":"安琦零侧漏日夜组合丝薄棉质卫生巾 20片 LC23205","FSPECIFICATION":"(15片240mm+5片300mm)/包*30包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-23T00:00:00","FPLAN_FINISH_DATE":"2022-04-23T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101824","FNUMBER":"308001000002","FMATERIAL_NAME":"安琦零侧漏日夜组合丝薄爽棉卫生巾 20片 LC23206","FSPECIFICATION":"(15片240mm+5片300mm)/包*30包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101827","FNUMBER":"308001000005","FMATERIAL_NAME":"安琦日用组合柔棉卫生巾 20片 24201","FSPECIFICATION":"(15片245mm+5片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FSTART_DATE":"2022-06-03T13:51:39","FFINISH_DATE":""},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101828","FNUMBER":"308001000006","FMATERIAL_NAME":"安琦日夜组合柔棉卫生巾 20片 29201","FSPECIFICATION":"(10片245mm+10片290mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-26T11:35:39","FFINISH_DATE":""},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101828","FNUMBER":"308001000006","FMATERIAL_NAME":"安琦日夜组合柔棉卫生巾 20片 29201","FSPECIFICATION":"(10片245mm+10片290mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-06-02T16:10:09","FFINISH_DATE":""},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101830","FNUMBER":"308001000008","FMATERIAL_NAME":"安琦柠檬组合棉质卫生巾 22片 29221","FSPECIFICATION":"(10片245mm+8片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FSTART_DATE":"2022-06-02T08:49:34","FFINISH_DATE":""},{"FBILL_NO":"MO000083","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101832","FNUMBER":"308001000010","FMATERIAL_NAME":"安琦零度清爽清凉组合棉质卫生巾 20片 49201","FSPECIFICATION":"(10片245mm+6片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FSTART_DATE":"2022-06-09T10:15:51","FFINISH_DATE":""},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"101833","FNUMBER":"308001000011","FMATERIAL_NAME":"安琦零度清爽清凉组合干爽卫生巾 20片 49202","FSPECIFICATION":"(10片245mm+6片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-28T00:00:00","FPLAN_FINISH_DATE":"2022-05-28T00:00:00","FSTART_DATE":"2022-05-30T12:12:05","FFINISH_DATE":""},{"FBILL_NO":"MO000193","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:25","FPLAN_FINISH_DATE":"2022-06-29T14:18:25","FSTART_DATE":"2022-07-04T12:28:33","FFINISH_DATE":""},{"FBILL_NO":"MO000192","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:43","FPLAN_FINISH_DATE":"2022-06-29T14:18:43","FSTART_DATE":"2022-07-04T12:27:32","FFINISH_DATE":""},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102385","FNUMBER":"308102000001","FMATERIAL_NAME":"佑丽安吉莉卡新组合装","FSPECIFICATION":"(日用8片/包*15包+夜用5片*4包+迷你巾10片*4包+护垫16片*3包+超长夜用4片*3包)/盒*6盒/大箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102386","FNUMBER":"301102060002","FMATERIAL_NAME":"佑丽安吉莉卡245mm日用卫生巾8片装","FSPECIFICATION":"8片/包*20包/小箱*2小箱/大箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102386","FNUMBER":"301102060002","FMATERIAL_NAME":"佑丽安吉莉卡245mm日用卫生巾8片装","FSPECIFICATION":"8片/包*20包/小箱*2小箱/大箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000056","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102414","FNUMBER":"301500110001","FMATERIAL_NAME":"洁婷透气甜睡超薄350mm超长夜用卫生巾6片装 CGT306","FSPECIFICATION":"6片/包*24包/箱","FWORK_SHOP":"10号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-27T00:00:00","FPLAN_FINISH_DATE":"2022-04-27T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102417","FNUMBER":"302500020004","FMATERIAL_NAME":"洁婷21樱肌感透气U裤M-L号低腰M码2片装 SK202","FSPECIFICATION":"2片/包*36包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102418","FNUMBER":"302500020005","FMATERIAL_NAME":"洁婷20樱花透气U裤M-L号低腰M码3片装 SK203","FSPECIFICATION":"3片/包*36包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102420","FNUMBER":"302500020007","FMATERIAL_NAME":"洁婷1013+少女透气U裤低腰M码2片装 NK102","FSPECIFICATION":"2片/包*36包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102420","FNUMBER":"302500020007","FMATERIAL_NAME":"洁婷1013+少女透气U裤低腰M码2片装 NK102","FSPECIFICATION":"2片/包*36包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000065","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102421","FNUMBER":"302500030008","FMATERIAL_NAME":"洁婷透气U裤高腰L码5片装 K105","FSPECIFICATION":"5片/包*16包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102421","FNUMBER":"302500030008","FMATERIAL_NAME":"洁婷透气U裤高腰L码5片装 K105","FSPECIFICATION":"5片/包*16包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102421","FNUMBER":"302500030008","FMATERIAL_NAME":"洁婷透气U裤高腰L码5片装 K105","FSPECIFICATION":"5片/包*16包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000052","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102433","FNUMBER":"301501120010","FMATERIAL_NAME":"雨森百丽纤爽柔绵410mm特长夜用卫生巾8片装 BL5686","FSPECIFICATION":"8片/包*24包/箱","FWORK_SHOP":"10号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-11T14:51:59","FPLAN_FINISH_DATE":"2022-05-11T14:51:59","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000107","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102440","FNUMBER":"301502050004","FMATERIAL_NAME":"千金净雅240mm日用卫生巾8片装 JY-J-101","FSPECIFICATION":"8片/包*48包/箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-02T09:48:45","FPLAN_FINISH_DATE":"2022-07-02T09:48:45","FSTART_DATE":"2022-07-01T08:44:34","FFINISH_DATE":""},{"FBILL_NO":"MO000021","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102459","FNUMBER":"301201040003","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾18片装 ZW111","FSPECIFICATION":"18片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-02-28T10:40:21","FPLAN_FINISH_DATE":"2022-02-28T10:40:21","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000034","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102459","FNUMBER":"301201040003","FMATERIAL_NAME":"江苏安能馨纪元超薄180mm护翼迷你巾18片装 ZW111","FSPECIFICATION":"18片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-04-21T00:00:00","FPLAN_FINISH_DATE":"2022-04-21T00:00:00","FSTART_DATE":"2022-04-19T15:36:06","FFINISH_DATE":""},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102460","FNUMBER":"301201060004","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾10片装 ZW108","FSPECIFICATION":"10片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-09T09:37:04","FPLAN_FINISH_DATE":"2022-06-09T09:37:04","FSTART_DATE":"2022-06-09T10:08:30","FFINISH_DATE":""},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102461","FNUMBER":"301201080005","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾8片装 ZW109","FSPECIFICATION":"8片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:36","FPLAN_FINISH_DATE":"2022-06-15T15:35:36","FSTART_DATE":"2022-06-09T10:08:37","FFINISH_DATE":""},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102462","FNUMBER":"301201110006","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾6片装 ZW112","FSPECIFICATION":"6片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"8号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:37","FPLAN_FINISH_DATE":"2022-06-15T15:35:37","FSTART_DATE":"2022-06-09T10:08:42","FFINISH_DATE":""},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102463","FNUMBER":"302201030007","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码 2片装 ZW113","FSPECIFICATION":"2片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-14T09:14:48","FPLAN_FINISH_DATE":"2022-05-14T09:14:48","FSTART_DATE":"2022-07-01T08:49:10","FFINISH_DATE":""},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102463","FNUMBER":"302201030007","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码 2片装 ZW113","FSPECIFICATION":"2片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T15:35:37","FPLAN_FINISH_DATE":"2022-06-20T15:35:37","FSTART_DATE":"2022-06-09T10:08:47","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102464","FNUMBER":"301202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm 10片装 贴标","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-20T09:54:53","FPLAN_FINISH_DATE":"2022-04-20T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102465","FNUMBER":"301202060002","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm 10片装 不贴标","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-20T09:54:53","FPLAN_FINISH_DATE":"2022-04-20T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102466","FNUMBER":"301202090003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm 8片装 贴标","FSPECIFICATION":"8片/包*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-25T09:54:53","FPLAN_FINISH_DATE":"2022-04-25T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102467","FNUMBER":"301202090004","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄夜用卫生巾290mm 8片装 不贴标","FSPECIFICATION":"8片/包*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-25T09:54:53","FPLAN_FINISH_DATE":"2022-04-25T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102468","FNUMBER":"301202110005","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm 6片装 贴标","FSPECIFICATION":"6片/包*36包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-22T09:54:53","FPLAN_FINISH_DATE":"2022-04-22T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000041","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102469","FNUMBER":"301202110006","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm 6片装 不贴标","FSPECIFICATION":"6片/包*36包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-22T09:54:53","FPLAN_FINISH_DATE":"2022-04-22T09:54:53","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102480","FNUMBER":"301203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾10片装 WSJ0310","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-04T08:51:58","FPLAN_FINISH_DATE":"2022-05-04T08:51:58","FSTART_DATE":"2022-05-18T16:07:47","FFINISH_DATE":""},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102480","FNUMBER":"301203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾10片装 WSJ0310","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-06T14:17:51","FPLAN_FINISH_DATE":"2022-07-06T14:17:51","FSTART_DATE":"2022-06-27T14:47:54","FFINISH_DATE":""},{"FBILL_NO":"MO000186","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"102517","FNUMBER":"301101070003","FMATERIAL_NAME":"布派绿色无感260mm日用卫生巾18片装 BO0128","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-11T14:13:34","FPLAN_FINISH_DATE":"2022-07-11T14:13:34","FSTART_DATE":"2022-07-05T14:36:16","FFINISH_DATE":""},{"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FSTART_DATE":"2022-05-30T14:37:16","FFINISH_DATE":"2022-06-06T08:48:17"},{"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-05-28T14:36:37","FFINISH_DATE":"2022-06-02T08:07:58"},{"FBILL_NO":"MO000065","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120727","FNUMBER":"402500030004","FMATERIAL_NAME":"洁婷透气U裤系列产品高腰L号经期裤 K105","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-19T00:00:00","FPLAN_FINISH_DATE":"2022-05-19T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000071","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120727","FNUMBER":"402500030004","FMATERIAL_NAME":"洁婷透气U裤系列产品高腰L号经期裤 K105","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-09T00:00:00","FPLAN_FINISH_DATE":"2022-06-09T00:00:00","FSTART_DATE":"2022-06-08T09:17:54","FFINISH_DATE":"2022-07-05T08:07:23"},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-14T09:27:30","FFINISH_DATE":"2022-07-02T07:36:14"},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-11T09:29:42","FFINISH_DATE":"2022-06-25T08:18:36"},{"FBILL_NO":"MO000047","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120758","FNUMBER":"402201030006","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-06-28T09:00:03","FFINISH_DATE":""},{"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120758","FNUMBER":"402201030006","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-07-01T10:38:07","FFINISH_DATE":""},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-20T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-06-02T10:45:16","FFINISH_DATE":"2022-06-16T16:13:21"},{"FBILL_NO":"MO000080","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-06T00:00:00","FPLAN_FINISH_DATE":"2022-06-06T00:00:00","FSTART_DATE":"2022-06-08T09:30:11","FFINISH_DATE":"2022-06-10T19:53:58"},{"FBILL_NO":"MO000040","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120761","FNUMBER":"401202110003","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄超长夜用350mm","FSPECIFICATION":"1*1300片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-04-30T09:24:34","FFINISH_DATE":"2022-06-28T16:19:41"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120763","FNUMBER":"402202020005","FMATERIAL_NAME":"沐歆澳棉经期裤低腰M码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-28T00:00:00","FPLAN_FINISH_DATE":"2022-05-28T00:00:00","FSTART_DATE":"2022-05-27T09:49:30","FFINISH_DATE":"2022-05-28T19:35:41"},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120764","FNUMBER":"401202060006","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-27T19:30:00","FPLAN_FINISH_DATE":"2022-05-27T19:30:00","FSTART_DATE":"2022-05-27T13:33:00","FFINISH_DATE":"2022-05-28T07:49:35"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-04T00:00:00","FPLAN_FINISH_DATE":"2022-05-04T00:00:00","FSTART_DATE":"2022-06-01T09:36:19","FFINISH_DATE":"2022-06-13T07:51:41"},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"2022-06-01T00:00:00","FFINISH_DATE":"2022-06-01T19:43:38"},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T00:00:00","FPLAN_FINISH_DATE":"2022-07-05T00:00:00","FSTART_DATE":"2022-06-27T09:49:28","FFINISH_DATE":""},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-07-06T00:00:00","FPLAN_FINISH_DATE":"2022-07-06T00:00:00","FSTART_DATE":"2022-06-28T08:50:45","FFINISH_DATE":"2022-07-05T19:57:41"},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120774","FNUMBER":"402203020008","FMATERIAL_NAME":"上海比芭云霓经期裤低腰M码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-07-15T00:00:00","FPLAN_FINISH_DATE":"2022-07-15T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120797","FNUMBER":"408001000009","FMATERIAL_NAME":"安琦柠檬245mm日用棉柔卫生巾 29221","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-25T09:44:12","FFINISH_DATE":"2022-05-30T20:22:32"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120803","FNUMBER":"408001000015","FMATERIAL_NAME":"安琦零度清爽清凉245mm日用干爽卫生巾 49202","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-28T00:00:00","FPLAN_FINISH_DATE":"2022-05-31T00:00:00","FSTART_DATE":"2022-05-31T10:24:27","FFINISH_DATE":"2022-06-16T16:11:55"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120803","FNUMBER":"408001000015","FMATERIAL_NAME":"安琦零度清爽清凉245mm日用干爽卫生巾 49202","FSPECIFICATION":"1*2200片","FWORK_SHOP":"2号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-31T00:00:00","FPLAN_FINISH_DATE":"2022-05-31T00:00:00","FSTART_DATE":"2022-05-31T10:37:52","FFINISH_DATE":"2022-06-01T20:08:37"},{"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120807","FNUMBER":"401001040001","FMATERIAL_NAME":"安琦零侧漏180mm直条迷你巾 LC18181","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-18T09:06:28","FFINISH_DATE":"2022-06-23T07:44:38"},{"FBILL_NO":"MO000082","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-14T09:23:57","FFINISH_DATE":"2022-06-20T20:14:15"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-11T15:54:52","FFINISH_DATE":"2022-06-24T17:56:32"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120814","FNUMBER":"401001050002","FMATERIAL_NAME":"安琦零侧漏240mm丝薄爽棉日用卫生巾 LC24188","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-11T09:31:41","FFINISH_DATE":"2022-06-20T19:58:52"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120821","FNUMBER":"401001070001","FMATERIAL_NAME":"安琦零侧漏260mm棉质卫生巾 LC26181/LC26161/LC26201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-17T08:55:03","FFINISH_DATE":"2022-06-23T18:03:11"},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120827","FNUMBER":"401001100001","FMATERIAL_NAME":"安琦零侧漏300mm棉质夜用卫生巾LC30161&LC30151","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"2022-06-09T09:05:57","FFINISH_DATE":"2022-06-18T17:15:23"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120838","FNUMBER":"401001120002","FMATERIAL_NAME":"安琦云感棉超长夜用420大扇尾 CS42081","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"2022-05-28T10:39:00","FFINISH_DATE":""},{"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120838","FNUMBER":"401001120002","FMATERIAL_NAME":"安琦云感棉超长夜用420大扇尾 CS42081","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-07T17:06:49","FFINISH_DATE":"2022-06-24T17:53:41"},{"FBILL_NO":"MO000059","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"120840","FNUMBER":"402001040001","FMATERIAL_NAME":"安琦夜无忧低腰M-L码经期裤 DQL03&DQL05","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-09T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156916","FNUMBER":"401003050003","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气240mm日用卫生巾O24005&OH2405","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-05-28T14:52:11","FFINISH_DATE":"2022-06-02T17:28:01"},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156917","FNUMBER":"401003090004","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气290mm夜用卫生巾O29505&OH2905","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-05-31T09:43:46","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156919","FNUMBER":"402003020007","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气M-L号低腰经期裤OM0002&OM02&OHK-M02&HXK02","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156919","FNUMBER":"402003020007","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气M-L号低腰经期裤OM0002&OM02&OHK-M02&HXK02","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156920","FNUMBER":"402003040006","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气L-XL号低腰经期裤OL0002&OL02&OHK-L02","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156920","FNUMBER":"402003040006","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气L-XL号低腰经期裤OL0002&OL02&OHK-L02","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156925","FNUMBER":"302003020007","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气M-L号低腰经期裤OM0002","FSPECIFICATION":"2片/包*48包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T10:37:39","FPLAN_FINISH_DATE":"2022-06-15T10:37:39","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"156926","FNUMBER":"302003040006","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气L-XL号低腰经期裤OL0002","FSPECIFICATION":"2片/包*48包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T10:37:39","FPLAN_FINISH_DATE":"2022-06-15T10:37:39","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000076","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161234","FNUMBER":"401109060004","FMATERIAL_NAME":"云集心悦24悦薄无感蚕丝245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-06-11T09:26:22","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161245","FNUMBER":"402003020008","FMATERIAL_NAME":"呼吸时代轻呼吸系列低腰(M-L)M码经期裤 QK-M03","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-09T09:16:54","FFINISH_DATE":""},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161438","FNUMBER":"401201060008","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华245mm日用卫生巾 ZW114","FSPECIFICATION":"1*2200片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-07T00:00:00","FPLAN_FINISH_DATE":"2022-05-07T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161439","FNUMBER":"401201080009","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华285mm夜用卫生巾ZW115","FSPECIFICATION":"1*2000片","FWORK_SHOP":"9号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-14T00:00:00","FPLAN_FINISH_DATE":"2022-05-14T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161440","FNUMBER":"301201060008","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华245mm日用卫生巾 ZW114","FSPECIFICATION":"8片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-07T09:18:52","FPLAN_FINISH_DATE":"2022-05-07T09:18:52","FSTART_DATE":"2022-05-11T16:55:25","FFINISH_DATE":""},{"FBILL_NO":"MO000049","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161442","FNUMBER":"301201080009","FMATERIAL_NAME":"江苏安能小芝超干爽乳木果精华285mm夜用卫生巾 ZW115","FSPECIFICATION":"6片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-14T09:18:58","FPLAN_FINISH_DATE":"2022-05-14T09:18:58","FSTART_DATE":"2022-05-11T16:55:02","FFINISH_DATE":""},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161829","FNUMBER":"401001090006","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列290mm夜用卫生巾 DC2905","FSPECIFICATION":"1*2200片","FWORK_SHOP":"14号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161832","FNUMBER":"401001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列245mm夜用卫生巾 DC2407","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"2022-06-08T09:32:44","FFINISH_DATE":"2022-06-20T20:25:41"},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"161918","FNUMBER":"401001120005","FMATERIAL_NAME":"安琦电商薄羽蚕丝410mm超长夜用直条卫生巾 DC4204","FSPECIFICATION":"1*1200片","FWORK_SHOP":"6号机","FUNIT_ID":"片","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162472","FNUMBER":"401301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-27T00:00:00","FPLAN_FINISH_DATE":"2022-05-27T00:00:00","FSTART_DATE":"2022-05-26T15:32:55","FFINISH_DATE":"2022-06-28T17:13:27"},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"162639","FNUMBER":"401100090023","FMATERIAL_NAME":"倍舒特掌心魔力包290mm日用卫生巾 ML16509","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-11T00:00:00","FPLAN_FINISH_DATE":"2022-05-11T00:00:00","FSTART_DATE":"2022-05-23T10:04:46","FFINISH_DATE":"2022-05-30T19:59:19"},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163002","FNUMBER":"301001060006","FMATERIAL_NAME":"安琦掌心包245mm卫生巾16片 MN24161","FSPECIFICATION":"16片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-06T00:00:00","FPLAN_FINISH_DATE":"2022-05-06T00:00:00","FSTART_DATE":"2022-05-18T19:23:23","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163004","FNUMBER":"301001090007","FMATERIAL_NAME":"安琦有机纯棉棉柔纤巧夜用卫生巾(285mm)BC2908C","FSPECIFICATION":"8片×30包","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-18T00:00:00","FPLAN_FINISH_DATE":"2022-04-18T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163005","FNUMBER":"301001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列丝薄日用卫生巾(245mm)","FSPECIFICATION":"7片/包×100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"2022-06-16T12:39:51","FFINISH_DATE":""},{"FBILL_NO":"MO000038","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163006","FNUMBER":"301001060008","FMATERIAL_NAME":"安琦有机纯棉系列棉柔纤巧日用卫生巾(245mm)BC2410C","FSPECIFICATION":"10片×30包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-22T00:00:00","FPLAN_FINISH_DATE":"2022-04-22T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163007","FNUMBER":"301001090008","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列夜用丝薄卫生巾(290mm)DC2905","FSPECIFICATION":"5片/包×100包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163008","FNUMBER":"301001120005","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列棉质丝薄超长夜用卫生巾(410mm)DC4204","FSPECIFICATION":"4片/包*100包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-27T12:21:48","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"13号机","FUNIT_ID":"包","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T10:37:39","FPLAN_FINISH_DATE":"2022-06-03T10:37:39","FSTART_DATE":"2022-06-02T09:06:22","FFINISH_DATE":""},{"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-27T12:21:39","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"包","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T10:37:39","FPLAN_FINISH_DATE":"2022-05-30T10:37:39","FSTART_DATE":"2022-06-02T09:07:52","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163208","FNUMBER":"301515060001","FMATERIAL_NAME":"金博士纤薄240mm日用卫生巾JBJ-8500","FSPECIFICATION":"10片*36包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-13T13:18:35","FPLAN_FINISH_DATE":"2022-05-13T13:18:35","FSTART_DATE":"2022-05-18T14:56:51","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163209","FNUMBER":"301515060002","FMATERIAL_NAME":"金博士丝薄240mm日用卫生巾JBJ-8548","FSPECIFICATION":"10片*36包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-10T13:18:35","FPLAN_FINISH_DATE":"2022-05-10T13:18:35","FSTART_DATE":"2022-05-18T14:56:39","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163210","FNUMBER":"301515060003","FMATERIAL_NAME":"金博士丝薄240mm日用卫生巾JBJ-8548-1","FSPECIFICATION":"1片/包","FWORK_SHOP":"15号机","FUNIT_ID":"包","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-10T13:18:35","FPLAN_FINISH_DATE":"2022-05-10T13:18:35","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163212","FNUMBER":"301515090001","FMATERIAL_NAME":"金博士丝薄290mm夜用卫生巾JBJ-8555","FSPECIFICATION":"8片*36包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-07T13:18:35","FPLAN_FINISH_DATE":"2022-05-07T13:18:35","FSTART_DATE":"2022-05-18T14:57:35","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163213","FNUMBER":"301515110001","FMATERIAL_NAME":"金博士纤薄350mm夜用卫生巾JBJ-8524","FSPECIFICATION":"6片*36包/箱","FWORK_SHOP":"8号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-04-30T13:18:35","FPLAN_FINISH_DATE":"2022-04-30T13:18:35","FSTART_DATE":"2022-05-18T14:57:45","FFINISH_DATE":""},{"FBILL_NO":"MO000058","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163214","FNUMBER":"301515120001","FMATERIAL_NAME":"金博士纤薄410mm超长夜用卫生巾JBJ-8531","FSPECIFICATION":"4片*36包/箱","FWORK_SHOP":"10号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-03T13:18:35","FPLAN_FINISH_DATE":"2022-05-03T13:18:35","FSTART_DATE":"2022-05-18T14:57:58","FFINISH_DATE":""},{"FBILL_NO":"MO000042","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163413","FNUMBER":"301202060018","FMATERIAL_NAME":"沐歆超干爽系列产品超薄型日用卫生巾245mm 3片装*200包 中国版","FSPECIFICATION":"3片/包*200包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-04-19T10:01:25","FPLAN_FINISH_DATE":"2022-04-19T10:01:25","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000046","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163419","FNUMBER":"301203060012","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾2片装 体验装 WSJ0202","FSPECIFICATION":"2片/包*100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-18T08:51:58","FPLAN_FINISH_DATE":"2022-05-18T08:51:58","FSTART_DATE":"2022-05-18T16:07:34","FFINISH_DATE":""},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163419","FNUMBER":"301203060012","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾2片装 体验装 WSJ0202","FSPECIFICATION":"2片/包*100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T14:17:51","FPLAN_FINISH_DATE":"2022-07-05T14:17:51","FSTART_DATE":"2022-06-28T12:03:34","FFINISH_DATE":""},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163601","FNUMBER":"301100090027","FMATERIAL_NAME":"倍舒特掌心包290mm夜用卫生巾9片装 ML16509","FSPECIFICATION":"9片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-11T13:13:49","FPLAN_FINISH_DATE":"2022-06-03T13:13:49","FSTART_DATE":"2022-05-17T14:23:44","FFINISH_DATE":""},{"FBILL_NO":"MO000044","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163602","FNUMBER":"301100060026","FMATERIAL_NAME":"倍舒特掌心包245mm日用卫生巾10片装 ML14510","FSPECIFICATION":"10片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-09T00:00:00","FPLAN_FINISH_DATE":"2022-05-20T00:00:00","FSTART_DATE":"2022-05-17T14:22:47","FFINISH_DATE":""},{"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"163791","FNUMBER":"302203020011","FMATERIAL_NAME":"上海比芭云霓经期裤低腰M码 4片装 WSJ0504","FSPECIFICATION":"4片/包*24包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-07-15T14:17:51","FPLAN_FINISH_DATE":"2022-07-15T14:17:51","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164441","FNUMBER":"302202020011","FMATERIAL_NAME":"沐歆澳棉经期裤低腰M码 2片装*54包 贴标","FSPECIFICATION":"2片/包*54包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T10:27:38","FPLAN_FINISH_DATE":"2022-05-26T10:27:38","FSTART_DATE":"2022-05-21T09:31:11","FFINISH_DATE":""},{"FBILL_NO":"MO000063","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164443","FNUMBER":"302202020012","FMATERIAL_NAME":"沐歆澳棉经期裤低腰M码 2片装*54包 不贴标","FSPECIFICATION":"2片/包*54包/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T10:34:49","FPLAN_FINISH_DATE":"2022-05-26T10:34:49","FSTART_DATE":"2022-05-21T09:31:27","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164560","FNUMBER":"302003020001","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气M-L号低腰经期裤OM0212","FSPECIFICATION":"2片/包*12包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-01T10:37:39","FPLAN_FINISH_DATE":"2022-06-01T10:37:39","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164561","FNUMBER":"302003040001","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气L-XL号低腰经期裤OL0212","FSPECIFICATION":"2片/包*12包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T10:37:39","FPLAN_FINISH_DATE":"2022-06-15T10:37:39","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"164562","FNUMBER":"302003020010","FMATERIAL_NAME":"呼吸时代轻呼吸系列女性卫生裤产品低腰(M-L)M码 QK-M0312","FSPECIFICATION":"3片/包*12包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-15T10:52:33","FPLAN_FINISH_DATE":"2022-06-15T10:52:33","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000070","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175314","FNUMBER":"308003000001","FMATERIAL_NAME":"呼吸时代焕芯小裤 36包 HX0836","FSPECIFICATION":"(2片经期裤+2包350mm*3片/包)/包*36包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-30T10:28:40","FPLAN_FINISH_DATE":"2022-05-30T10:28:40","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175652","FNUMBER":"301003010001","FMATERIAL_NAME":"恋呼吸全透气180mm迷你卫生巾LHX-180","FSPECIFICATION":"10片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FSTATUS":"完工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-22T09:30:56","FFINISH_DATE":"2022-07-01T13:40:46"},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175653","FNUMBER":"301301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾LHX-245","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175653","FNUMBER":"301301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾LHX-245","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"2022-05-27T12:23:00","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-01T12:51:53","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"2022-06-01T12:52:11","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175655","FNUMBER":"301301120001","FMATERIAL_NAME":"恋呼吸全透气410mm超长夜用卫生巾LHX-410","FSPECIFICATION":"4片/包*24包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-15T13:13:51","FSTART_DATE":"2022-06-01T12:07:02","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175658","FNUMBER":"302301020001","FMATERIAL_NAME":"恋呼吸全透气M-L号低腰M经期裤LHX-JM","FSPECIFICATION":"2片/包*24包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175658","FNUMBER":"302301020001","FMATERIAL_NAME":"恋呼吸全透气M-L号低腰M经期裤LHX-JM","FSPECIFICATION":"2片/包*24包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-27T12:22:29","FFINISH_DATE":""},{"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"2022-05-27T12:25:23","FFINISH_DATE":""},{"FBILL_NO":"MO000070","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FMATERIAL_ID":"175680","FNUMBER":"308003000003","FMATERIAL_NAME":"呼吸时代焕芯小裤 4包 HX0804","FSPECIFICATION":"(2片经期裤+2包350mm*3片/包)/包*4包/箱","FWORK_SHOP":"","FUNIT_ID":"箱","FSTATUS":"计划确认","FPLAN_START_DATE":"2022-05-30T10:28:40","FPLAN_FINISH_DATE":"2022-05-30T10:28:40","FSTART_DATE":"","FFINISH_DATE":""}]} + +-------------------------------- +2022/7/12 9:49:22| +Request Data: + QueryData:/api/BigScreen/getPlanOrderList + BodyData: + +-------------------------------- +2022/7/12 9:49:27| +Response Data: +{"code":200,"success":true,"message":"成功","data":[{"FID":110203,"FBILL_NO":"MO000193","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110949,"FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FQTY":453.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:25","FPLAN_FINISH_DATE":"2022-06-29T14:18:25","FSTART_DATE":"2022-07-04T12:28:33","FFINISH_DATE":""},{"FID":110202,"FBILL_NO":"MO000192","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110948,"FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FQTY":210.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:43","FPLAN_FINISH_DATE":"2022-06-29T14:18:43","FSTART_DATE":"2022-07-04T12:27:32","FFINISH_DATE":""},{"FID":110196,"FBILL_NO":"MO000186","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110942,"FMATERIAL_ID":"102517","FNUMBER":"301101070003","FMATERIAL_NAME":"布派绿色无感260mm日用卫生巾18片装 BO0128","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FQTY":1500.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-11T14:13:34","FPLAN_FINISH_DATE":"2022-07-11T14:13:34","FSTART_DATE":"2022-07-05T14:36:16","FFINISH_DATE":""},{"FID":110117,"FBILL_NO":"MO000107","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110863,"FMATERIAL_ID":"102440","FNUMBER":"301502050004","FMATERIAL_NAME":"千金净雅240mm日用卫生巾8片装 JY-J-101","FSPECIFICATION":"8片/包*48包/箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FQTY":3000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-02T09:48:45","FPLAN_FINISH_DATE":"2022-07-02T09:48:45","FSTART_DATE":"2022-07-01T08:44:34","FFINISH_DATE":""},{"FID":110106,"FBILL_NO":"MO000096","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110852,"FMATERIAL_ID":"101802","FNUMBER":"301001100005","FMATERIAL_NAME":"安琦清爽纤薄零侧漏300mm爽棉夜用卫生巾15片 LCQ30152","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FQTY":1500.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-01T00:00:00","FPLAN_FINISH_DATE":"2022-07-01T00:00:00","FSTART_DATE":"2022-06-27T14:35:14","FFINISH_DATE":""},{"FID":110105,"FBILL_NO":"MO000095","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110851,"FMATERIAL_ID":"101795","FNUMBER":"301001070007","FMATERIAL_NAME":"安琦清爽纤薄零侧漏260mm爽棉卫生巾16片 LCQ26163","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FQTY":1500.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-28T00:00:00","FPLAN_FINISH_DATE":"2022-06-28T00:00:00","FSTART_DATE":"2022-06-27T14:34:18","FFINISH_DATE":""},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110834,"FMATERIAL_ID":"102460","FNUMBER":"301201060004","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾10片装 ZW108","FSPECIFICATION":"10片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":12000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-09T09:37:04","FPLAN_FINISH_DATE":"2022-06-09T09:37:04","FSTART_DATE":"2022-06-09T10:08:30","FFINISH_DATE":""},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110833,"FMATERIAL_ID":"102461","FNUMBER":"301201080005","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾8片装 ZW109","FSPECIFICATION":"8片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FQTY":5000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:36","FPLAN_FINISH_DATE":"2022-06-15T15:35:36","FSTART_DATE":"2022-06-09T10:08:37","FFINISH_DATE":""},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110832,"FMATERIAL_ID":"102462","FNUMBER":"301201110006","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾6片装 ZW112","FSPECIFICATION":"6片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"8号机","FUNIT_ID":"箱","FQTY":2000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:37","FPLAN_FINISH_DATE":"2022-06-15T15:35:37","FSTART_DATE":"2022-06-09T10:08:42","FFINISH_DATE":""},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110831,"FMATERIAL_ID":"102463","FNUMBER":"302201030007","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码 2片装 ZW113","FSPECIFICATION":"2片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FQTY":3000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T15:35:37","FPLAN_FINISH_DATE":"2022-06-20T15:35:37","FSTART_DATE":"2022-06-09T10:08:47","FFINISH_DATE":""},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110838,"FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FQTY":5760000.0,"FREPQUAAUX_QTY":5775535.0,"FREPFAILAUX_QTY":88223.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-09T00:00:00","FPLAN_FINISH_DATE":"2022-06-09T00:00:00","FSTART_DATE":"2022-06-08T09:17:54","FFINISH_DATE":"2022-07-05T08:07:23"},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110837,"FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FQTY":1920000.0,"FREPQUAAUX_QTY":1929994.0,"FREPFAILAUX_QTY":47470.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-14T09:27:30","FFINISH_DATE":"2022-07-02T07:36:14"},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110836,"FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FQTY":576000.0,"FREPQUAAUX_QTY":580126.0,"FREPFAILAUX_QTY":16825.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-11T09:29:42","FFINISH_DATE":"2022-06-25T08:18:36"},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110835,"FMATERIAL_ID":"120758","FNUMBER":"402201030006","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FQTY":288000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-07-01T10:38:07","FFINISH_DATE":""},{"FID":110096,"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110826,"FMATERIAL_ID":"102480","FNUMBER":"301203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾10片装 WSJ0310","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FQTY":2778.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-06T14:17:51","FPLAN_FINISH_DATE":"2022-07-06T14:17:51","FSTART_DATE":"2022-06-27T14:47:54","FFINISH_DATE":""},{"FID":110096,"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110828,"FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":200000.0,"FREPQUAAUX_QTY":62506.0,"FREPFAILAUX_QTY":2008.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T00:00:00","FPLAN_FINISH_DATE":"2022-07-05T00:00:00","FSTART_DATE":"2022-06-27T09:49:28","FFINISH_DATE":""},{"FID":110096,"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110829,"FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":1000080.0,"FREPQUAAUX_QTY":1142239.0,"FREPFAILAUX_QTY":21271.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-07-06T00:00:00","FPLAN_FINISH_DATE":"2022-07-06T00:00:00","FSTART_DATE":"2022-06-28T08:50:45","FFINISH_DATE":"2022-07-05T19:57:41"},{"FID":110096,"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110825,"FMATERIAL_ID":"163419","FNUMBER":"301203060012","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾2片装 体验装 WSJ0202","FSPECIFICATION":"2片/包*100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FQTY":1000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T14:17:51","FPLAN_FINISH_DATE":"2022-07-05T14:17:51","FSTART_DATE":"2022-06-28T12:03:34","FFINISH_DATE":""},{"FID":110094,"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110816,"FMATERIAL_ID":"101828","FNUMBER":"308001000006","FMATERIAL_NAME":"安琦日夜组合柔棉卫生巾 20片 29201","FSPECIFICATION":"(10片245mm+10片290mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-06-02T16:10:09","FFINISH_DATE":""},{"FID":110094,"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110812,"FMATERIAL_ID":"101830","FNUMBER":"308001000008","FMATERIAL_NAME":"安琦柠檬组合棉质卫生巾 22片 29221","FSPECIFICATION":"(10片245mm+8片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FSTART_DATE":"2022-06-02T08:49:34","FFINISH_DATE":""},{"FID":110094,"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110820,"FMATERIAL_ID":"120807","FNUMBER":"401001040001","FMATERIAL_NAME":"安琦零侧漏180mm直条迷你巾 LC18181","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FQTY":540000.0,"FREPQUAAUX_QTY":548438.0,"FREPFAILAUX_QTY":8122.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-18T09:06:28","FFINISH_DATE":"2022-06-23T07:44:38"},{"FID":110093,"FBILL_NO":"MO000083","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110808,"FMATERIAL_ID":"101832","FNUMBER":"308001000010","FMATERIAL_NAME":"安琦零度清爽清凉组合棉质卫生巾 20片 49201","FSPECIFICATION":"(10片245mm+6片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FSTART_DATE":"2022-06-09T10:15:51","FFINISH_DATE":""},{"FID":110092,"FBILL_NO":"MO000082","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110807,"FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FQTY":1920000.0,"FREPQUAAUX_QTY":1860621.0,"FREPFAILAUX_QTY":19909.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-14T09:23:57","FFINISH_DATE":"2022-06-20T20:14:15"},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110791,"FMATERIAL_ID":"101827","FNUMBER":"308001000005","FMATERIAL_NAME":"安琦日用组合柔棉卫生巾 20片 24201","FSPECIFICATION":"(15片245mm+5片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1300.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FSTART_DATE":"2022-06-03T13:51:39","FFINISH_DATE":""},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110799,"FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FQTY":540000.0,"FREPQUAAUX_QTY":553535.0,"FREPFAILAUX_QTY":13090.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-11T15:54:52","FFINISH_DATE":"2022-06-24T17:56:32"},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110800,"FMATERIAL_ID":"120814","FNUMBER":"401001050002","FMATERIAL_NAME":"安琦零侧漏240mm丝薄爽棉日用卫生巾 LC24188","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":540000.0,"FREPQUAAUX_QTY":543181.0,"FREPFAILAUX_QTY":14237.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-11T09:31:41","FFINISH_DATE":"2022-06-20T19:58:52"},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110798,"FMATERIAL_ID":"120821","FNUMBER":"401001070001","FMATERIAL_NAME":"安琦零侧漏260mm棉质卫生巾 LC26181/LC26161/LC26201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FQTY":480000.0,"FREPQUAAUX_QTY":486266.0,"FREPFAILAUX_QTY":15777.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FSTART_DATE":"2022-06-17T08:55:03","FFINISH_DATE":"2022-06-23T18:03:11"},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110802,"FMATERIAL_ID":"120827","FNUMBER":"401001100001","FMATERIAL_NAME":"安琦零侧漏300mm棉质夜用卫生巾LC30161&LC30151","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FQTY":480000.0,"FREPQUAAUX_QTY":614561.0,"FREPFAILAUX_QTY":17353.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"2022-06-09T09:05:57","FFINISH_DATE":"2022-06-18T17:15:23"},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110805,"FMATERIAL_ID":"120838","FNUMBER":"401001120002","FMATERIAL_NAME":"安琦云感棉超长夜用420大扇尾 CS42081","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FQTY":480000.0,"FREPQUAAUX_QTY":673376.0,"FREPFAILAUX_QTY":14089.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FSTART_DATE":"2022-06-07T17:06:49","FFINISH_DATE":"2022-06-24T17:53:41"},{"FID":110090,"FBILL_NO":"MO000080","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110784,"FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":337800.0,"FREPQUAAUX_QTY":523495.0,"FREPFAILAUX_QTY":7388.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-06T00:00:00","FPLAN_FINISH_DATE":"2022-06-06T00:00:00","FSTART_DATE":"2022-06-08T09:30:11","FFINISH_DATE":"2022-06-10T19:53:58"},{"FID":110089,"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110782,"FMATERIAL_ID":"161832","FNUMBER":"401001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列245mm夜用卫生巾 DC2407","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":255360.0,"FREPQUAAUX_QTY":236066.0,"FREPFAILAUX_QTY":7405.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"2022-06-08T09:32:44","FFINISH_DATE":"2022-06-20T20:25:41"},{"FID":110089,"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110779,"FMATERIAL_ID":"163005","FNUMBER":"301001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列丝薄日用卫生巾(245mm)","FSPECIFICATION":"7片/包×100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FQTY":1520.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FSTART_DATE":"2022-06-16T12:39:51","FFINISH_DATE":""},{"FID":110088,"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110775,"FMATERIAL_ID":"156916","FNUMBER":"401003050003","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气240mm日用卫生巾O24005&OH2405","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FQTY":150000.0,"FREPQUAAUX_QTY":260182.0,"FREPFAILAUX_QTY":10703.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-05-28T14:52:11","FFINISH_DATE":"2022-06-02T17:28:01"},{"FID":110088,"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110774,"FMATERIAL_ID":"156917","FNUMBER":"401003090004","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气290mm夜用卫生巾O29505&OH2905","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FQTY":100050.0,"FREPQUAAUX_QTY":25883.0,"FREPFAILAUX_QTY":627.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FSTART_DATE":"2022-05-31T09:43:46","FFINISH_DATE":""},{"FID":110088,"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110771,"FMATERIAL_ID":"161245","FNUMBER":"402003020008","FMATERIAL_NAME":"呼吸时代轻呼吸系列低腰(M-L)M码经期裤 QK-M03","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FQTY":180000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FSTART_DATE":"2022-06-09T09:16:54","FFINISH_DATE":""},{"FID":110088,"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110772,"FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"13号机","FUNIT_ID":"包","FQTY":20010.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T10:37:39","FPLAN_FINISH_DATE":"2022-06-03T10:37:39","FSTART_DATE":"2022-06-02T09:06:22","FFINISH_DATE":""},{"FID":110088,"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110773,"FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"包","FQTY":30000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T10:37:39","FPLAN_FINISH_DATE":"2022-05-30T10:37:39","FSTART_DATE":"2022-06-02T09:07:52","FFINISH_DATE":""},{"FID":110087,"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110759,"FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FQTY":993600.0,"FREPQUAAUX_QTY":1010314.0,"FREPFAILAUX_QTY":41420.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FSTART_DATE":"2022-05-30T14:37:16","FFINISH_DATE":"2022-06-06T08:48:17"},{"FID":110087,"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110761,"FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FQTY":900000.0,"FREPQUAAUX_QTY":902394.0,"FREPFAILAUX_QTY":9723.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-05-28T14:36:37","FFINISH_DATE":"2022-06-02T08:07:58"},{"FID":110086,"FBILL_NO":"MO000076","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110748,"FMATERIAL_ID":"161234","FNUMBER":"401109060004","FMATERIAL_NAME":"云集心悦24悦薄无感蚕丝245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":200000.0,"FREPQUAAUX_QTY":313666.0,"FREPFAILAUX_QTY":10411.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FSTART_DATE":"2022-06-11T09:26:22","FFINISH_DATE":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110739,"FMATERIAL_ID":"162472","FNUMBER":"401301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FQTY":160000.0,"FREPQUAAUX_QTY":8961.0,"FREPFAILAUX_QTY":5759.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-27T00:00:00","FPLAN_FINISH_DATE":"2022-05-27T00:00:00","FSTART_DATE":"2022-05-26T15:32:55","FFINISH_DATE":"2022-06-28T17:13:27"},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110725,"FMATERIAL_ID":"175652","FNUMBER":"301003010001","FMATERIAL_NAME":"恋呼吸全透气180mm迷你卫生巾LHX-180","FSPECIFICATION":"10片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FQTY":300.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-22T09:30:56","FFINISH_DATE":"2022-07-01T13:40:46"},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110728,"FMATERIAL_ID":"175653","FNUMBER":"301301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾LHX-245","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":1000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"2022-05-27T12:23:00","FFINISH_DATE":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110729,"FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FQTY":500.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-06-01T12:51:53","FFINISH_DATE":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110730,"FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FQTY":600.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"2022-06-01T12:52:11","FFINISH_DATE":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110732,"FMATERIAL_ID":"175655","FNUMBER":"301301120001","FMATERIAL_NAME":"恋呼吸全透气410mm超长夜用卫生巾LHX-410","FSPECIFICATION":"4片/包*24包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FQTY":1.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-15T13:13:51","FSTART_DATE":"2022-06-01T12:07:02","FFINISH_DATE":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110723,"FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":400.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FSTART_DATE":"2022-05-27T12:22:29","FFINISH_DATE":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110724,"FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":400.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FSTART_DATE":"2022-05-27T12:25:23","FFINISH_DATE":""},{"FID":110084,"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110713,"FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":400.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-27T12:21:48","FFINISH_DATE":""},{"FID":110084,"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110714,"FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":800.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FSTART_DATE":"2022-05-27T12:21:39","FFINISH_DATE":""}]} + +-------------------------------- +2022/7/12 9:54:23| +Request Data: + QueryData:/api/BigScreen/getPlanOrderList + BodyData: + +-------------------------------- +2022/7/12 9:54:24| +Response Data: +{"code":200,"success":true,"message":"成功","data":[{"FID":110203,"FBILL_NO":"MO000193","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110949,"FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FQTY":453.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:25","FPLAN_START_DATE_SHOW":"2022-06-29","FPLAN_FINISH_DATE":"2022-06-29T14:18:25","FPLAN_FINISH_DATE_SHOW":"2022-06-29","FSTART_DATE":"2022-07-04T12:28:33","FSTART_DATE_SHOW":"2022-07-04 12:28:33","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110202,"FBILL_NO":"MO000192","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110948,"FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FQTY":210.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:43","FPLAN_START_DATE_SHOW":"2022-06-29","FPLAN_FINISH_DATE":"2022-06-29T14:18:43","FPLAN_FINISH_DATE_SHOW":"2022-06-29","FSTART_DATE":"2022-07-04T12:27:32","FSTART_DATE_SHOW":"2022-07-04 12:27:32","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110196,"FBILL_NO":"MO000186","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110942,"FMATERIAL_ID":"102517","FNUMBER":"301101070003","FMATERIAL_NAME":"布派绿色无感260mm日用卫生巾18片装 BO0128","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FQTY":1500.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-11T14:13:34","FPLAN_START_DATE_SHOW":"2022-07-11","FPLAN_FINISH_DATE":"2022-07-11T14:13:34","FPLAN_FINISH_DATE_SHOW":"2022-07-11","FSTART_DATE":"2022-07-05T14:36:16","FSTART_DATE_SHOW":"2022-07-05 14:36:16","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110117,"FBILL_NO":"MO000107","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110863,"FMATERIAL_ID":"102440","FNUMBER":"301502050004","FMATERIAL_NAME":"千金净雅240mm日用卫生巾8片装 JY-J-101","FSPECIFICATION":"8片/包*48包/箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FQTY":3000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-02T09:48:45","FPLAN_START_DATE_SHOW":"2022-07-02","FPLAN_FINISH_DATE":"2022-07-02T09:48:45","FPLAN_FINISH_DATE_SHOW":"2022-07-02","FSTART_DATE":"2022-07-01T08:44:34","FSTART_DATE_SHOW":"2022-07-01 08:44:34","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110106,"FBILL_NO":"MO000096","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110852,"FMATERIAL_ID":"101802","FNUMBER":"301001100005","FMATERIAL_NAME":"安琦清爽纤薄零侧漏300mm爽棉夜用卫生巾15片 LCQ30152","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FQTY":1500.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-01T00:00:00","FPLAN_START_DATE_SHOW":"2022-07-01","FPLAN_FINISH_DATE":"2022-07-01T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-07-01","FSTART_DATE":"2022-06-27T14:35:14","FSTART_DATE_SHOW":"2022-06-27 14:35:14","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110105,"FBILL_NO":"MO000095","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110851,"FMATERIAL_ID":"101795","FNUMBER":"301001070007","FMATERIAL_NAME":"安琦清爽纤薄零侧漏260mm爽棉卫生巾16片 LCQ26163","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FQTY":1500.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-28T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-28","FPLAN_FINISH_DATE":"2022-06-28T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-28","FSTART_DATE":"2022-06-27T14:34:18","FSTART_DATE_SHOW":"2022-06-27 14:34:18","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110834,"FMATERIAL_ID":"102460","FNUMBER":"301201060004","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾10片装 ZW108","FSPECIFICATION":"10片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":12000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-09T09:37:04","FPLAN_START_DATE_SHOW":"2022-06-09","FPLAN_FINISH_DATE":"2022-06-09T09:37:04","FPLAN_FINISH_DATE_SHOW":"2022-06-09","FSTART_DATE":"2022-06-09T10:08:30","FSTART_DATE_SHOW":"2022-06-09 10:08:30","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110833,"FMATERIAL_ID":"102461","FNUMBER":"301201080005","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾8片装 ZW109","FSPECIFICATION":"8片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FQTY":5000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:36","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T15:35:36","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-09T10:08:37","FSTART_DATE_SHOW":"2022-06-09 10:08:37","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110832,"FMATERIAL_ID":"102462","FNUMBER":"301201110006","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾6片装 ZW112","FSPECIFICATION":"6片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"8号机","FUNIT_ID":"箱","FQTY":2000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:37","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T15:35:37","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-09T10:08:42","FSTART_DATE_SHOW":"2022-06-09 10:08:42","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110831,"FMATERIAL_ID":"102463","FNUMBER":"302201030007","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码 2片装 ZW113","FSPECIFICATION":"2片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FQTY":3000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T15:35:37","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T15:35:37","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-09T10:08:47","FSTART_DATE_SHOW":"2022-06-09 10:08:47","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110838,"FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FQTY":5760000.0,"FREPQUAAUX_QTY":5775535.0,"FREPFAILAUX_QTY":88223.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-09T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-09","FPLAN_FINISH_DATE":"2022-06-09T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-09","FSTART_DATE":"2022-06-08T09:17:54","FSTART_DATE_SHOW":"2022-06-08 09:17:54","FFINISH_DATE":"2022-07-05T08:07:23","FFINISH_DATE_SHOW":"2022-07-05 08:07:23"},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110837,"FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FQTY":1920000.0,"FREPQUAAUX_QTY":1929994.0,"FREPFAILAUX_QTY":47470.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-14T09:27:30","FSTART_DATE_SHOW":"2022-06-14 09:27:30","FFINISH_DATE":"2022-07-02T07:36:14","FFINISH_DATE_SHOW":"2022-07-02 07:36:14"},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110836,"FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FQTY":576000.0,"FREPQUAAUX_QTY":580126.0,"FREPFAILAUX_QTY":16825.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-11T09:29:42","FSTART_DATE_SHOW":"2022-06-11 09:29:42","FFINISH_DATE":"2022-06-25T08:18:36","FFINISH_DATE_SHOW":"2022-06-25 08:18:36"},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110835,"FMATERIAL_ID":"120758","FNUMBER":"402201030006","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FQTY":288000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-07-01T10:38:07","FSTART_DATE_SHOW":"2022-07-01 10:38:07","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110096,"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110826,"FMATERIAL_ID":"102480","FNUMBER":"301203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾10片装 WSJ0310","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FQTY":2778.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-06T14:17:51","FPLAN_START_DATE_SHOW":"2022-07-06","FPLAN_FINISH_DATE":"2022-07-06T14:17:51","FPLAN_FINISH_DATE_SHOW":"2022-07-06","FSTART_DATE":"2022-06-27T14:47:54","FSTART_DATE_SHOW":"2022-06-27 14:47:54","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110096,"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110828,"FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":200000.0,"FREPQUAAUX_QTY":62506.0,"FREPFAILAUX_QTY":2008.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T00:00:00","FPLAN_START_DATE_SHOW":"2022-07-05","FPLAN_FINISH_DATE":"2022-07-05T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-07-05","FSTART_DATE":"2022-06-27T09:49:28","FSTART_DATE_SHOW":"2022-06-27 09:49:28","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110096,"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110829,"FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":1000080.0,"FREPQUAAUX_QTY":1142239.0,"FREPFAILAUX_QTY":21271.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-07-06T00:00:00","FPLAN_START_DATE_SHOW":"2022-07-06","FPLAN_FINISH_DATE":"2022-07-06T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-07-06","FSTART_DATE":"2022-06-28T08:50:45","FSTART_DATE_SHOW":"2022-06-28 08:50:45","FFINISH_DATE":"2022-07-05T19:57:41","FFINISH_DATE_SHOW":"2022-07-05 19:57:41"},{"FID":110096,"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110825,"FMATERIAL_ID":"163419","FNUMBER":"301203060012","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾2片装 体验装 WSJ0202","FSPECIFICATION":"2片/包*100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FQTY":1000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T14:17:51","FPLAN_START_DATE_SHOW":"2022-07-05","FPLAN_FINISH_DATE":"2022-07-05T14:17:51","FPLAN_FINISH_DATE_SHOW":"2022-07-05","FSTART_DATE":"2022-06-28T12:03:34","FSTART_DATE_SHOW":"2022-06-28 12:03:34","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110094,"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110816,"FMATERIAL_ID":"101828","FNUMBER":"308001000006","FMATERIAL_NAME":"安琦日夜组合柔棉卫生巾 20片 29201","FSPECIFICATION":"(10片245mm+10片290mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-03","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-03","FSTART_DATE":"2022-06-02T16:10:09","FSTART_DATE_SHOW":"2022-06-02 16:10:09","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110094,"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110812,"FMATERIAL_ID":"101830","FNUMBER":"308001000008","FMATERIAL_NAME":"安琦柠檬组合棉质卫生巾 22片 29221","FSPECIFICATION":"(10片245mm+8片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-02","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-02","FSTART_DATE":"2022-06-02T08:49:34","FSTART_DATE_SHOW":"2022-06-02 08:49:34","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110094,"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110820,"FMATERIAL_ID":"120807","FNUMBER":"401001040001","FMATERIAL_NAME":"安琦零侧漏180mm直条迷你巾 LC18181","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FQTY":540000.0,"FREPQUAAUX_QTY":548438.0,"FREPFAILAUX_QTY":8122.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-16","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-16","FSTART_DATE":"2022-06-18T09:06:28","FSTART_DATE_SHOW":"2022-06-18 09:06:28","FFINISH_DATE":"2022-06-23T07:44:38","FFINISH_DATE_SHOW":"2022-06-23 07:44:38"},{"FID":110093,"FBILL_NO":"MO000083","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110808,"FMATERIAL_ID":"101832","FNUMBER":"308001000010","FMATERIAL_NAME":"安琦零度清爽清凉组合棉质卫生巾 20片 49201","FSPECIFICATION":"(10片245mm+6片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-01","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-01","FSTART_DATE":"2022-06-09T10:15:51","FSTART_DATE_SHOW":"2022-06-09 10:15:51","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110092,"FBILL_NO":"MO000082","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110807,"FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FQTY":1920000.0,"FREPQUAAUX_QTY":1860621.0,"FREPFAILAUX_QTY":19909.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-14T09:23:57","FSTART_DATE_SHOW":"2022-06-14 09:23:57","FFINISH_DATE":"2022-06-20T20:14:15","FFINISH_DATE_SHOW":"2022-06-20 20:14:15"},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110791,"FMATERIAL_ID":"101827","FNUMBER":"308001000005","FMATERIAL_NAME":"安琦日用组合柔棉卫生巾 20片 24201","FSPECIFICATION":"(15片245mm+5片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1300.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-07","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-07","FSTART_DATE":"2022-06-03T13:51:39","FSTART_DATE_SHOW":"2022-06-03 13:51:39","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110799,"FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FQTY":540000.0,"FREPQUAAUX_QTY":553535.0,"FREPFAILAUX_QTY":13090.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-11T15:54:52","FSTART_DATE_SHOW":"2022-06-11 15:54:52","FFINISH_DATE":"2022-06-24T17:56:32","FFINISH_DATE_SHOW":"2022-06-24 17:56:32"},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110800,"FMATERIAL_ID":"120814","FNUMBER":"401001050002","FMATERIAL_NAME":"安琦零侧漏240mm丝薄爽棉日用卫生巾 LC24188","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":540000.0,"FREPQUAAUX_QTY":543181.0,"FREPFAILAUX_QTY":14237.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-11T09:31:41","FSTART_DATE_SHOW":"2022-06-11 09:31:41","FFINISH_DATE":"2022-06-20T19:58:52","FFINISH_DATE_SHOW":"2022-06-20 19:58:52"},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110798,"FMATERIAL_ID":"120821","FNUMBER":"401001070001","FMATERIAL_NAME":"安琦零侧漏260mm棉质卫生巾 LC26181/LC26161/LC26201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FQTY":480000.0,"FREPQUAAUX_QTY":486266.0,"FREPFAILAUX_QTY":15777.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-17T08:55:03","FSTART_DATE_SHOW":"2022-06-17 08:55:03","FFINISH_DATE":"2022-06-23T18:03:11","FFINISH_DATE_SHOW":"2022-06-23 18:03:11"},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110802,"FMATERIAL_ID":"120827","FNUMBER":"401001100001","FMATERIAL_NAME":"安琦零侧漏300mm棉质夜用卫生巾LC30161&LC30151","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FQTY":480000.0,"FREPQUAAUX_QTY":614561.0,"FREPFAILAUX_QTY":17353.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-13","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-13","FSTART_DATE":"2022-06-09T09:05:57","FSTART_DATE_SHOW":"2022-06-09 09:05:57","FFINISH_DATE":"2022-06-18T17:15:23","FFINISH_DATE_SHOW":"2022-06-18 17:15:23"},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110805,"FMATERIAL_ID":"120838","FNUMBER":"401001120002","FMATERIAL_NAME":"安琦云感棉超长夜用420大扇尾 CS42081","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FQTY":480000.0,"FREPQUAAUX_QTY":673376.0,"FREPFAILAUX_QTY":14089.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-16","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-16","FSTART_DATE":"2022-06-07T17:06:49","FSTART_DATE_SHOW":"2022-06-07 17:06:49","FFINISH_DATE":"2022-06-24T17:53:41","FFINISH_DATE_SHOW":"2022-06-24 17:53:41"},{"FID":110090,"FBILL_NO":"MO000080","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110784,"FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":337800.0,"FREPQUAAUX_QTY":523495.0,"FREPFAILAUX_QTY":7388.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-06T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-06","FPLAN_FINISH_DATE":"2022-06-06T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-06","FSTART_DATE":"2022-06-08T09:30:11","FSTART_DATE_SHOW":"2022-06-08 09:30:11","FFINISH_DATE":"2022-06-10T19:53:58","FFINISH_DATE_SHOW":"2022-06-10 19:53:58"},{"FID":110089,"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110782,"FMATERIAL_ID":"161832","FNUMBER":"401001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列245mm夜用卫生巾 DC2407","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":255360.0,"FREPQUAAUX_QTY":236066.0,"FREPFAILAUX_QTY":7405.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-13","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-13","FSTART_DATE":"2022-06-08T09:32:44","FSTART_DATE_SHOW":"2022-06-08 09:32:44","FFINISH_DATE":"2022-06-20T20:25:41","FFINISH_DATE_SHOW":"2022-06-20 20:25:41"},{"FID":110089,"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110779,"FMATERIAL_ID":"163005","FNUMBER":"301001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列丝薄日用卫生巾(245mm)","FSPECIFICATION":"7片/包×100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FQTY":1520.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-13","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-13","FSTART_DATE":"2022-06-16T12:39:51","FSTART_DATE_SHOW":"2022-06-16 12:39:51","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110775,"FMATERIAL_ID":"156916","FNUMBER":"401003050003","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气240mm日用卫生巾O24005&OH2405","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FQTY":150000.0,"FREPQUAAUX_QTY":260182.0,"FREPFAILAUX_QTY":10703.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-05-28T14:52:11","FSTART_DATE_SHOW":"2022-05-28 14:52:11","FFINISH_DATE":"2022-06-02T17:28:01","FFINISH_DATE_SHOW":"2022-06-02 17:28:01"},{"FID":110088,"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110774,"FMATERIAL_ID":"156917","FNUMBER":"401003090004","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气290mm夜用卫生巾O29505&OH2905","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FQTY":100050.0,"FREPQUAAUX_QTY":25883.0,"FREPFAILAUX_QTY":627.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-03","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-03","FSTART_DATE":"2022-05-31T09:43:46","FSTART_DATE_SHOW":"2022-05-31 09:43:46","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110771,"FMATERIAL_ID":"161245","FNUMBER":"402003020008","FMATERIAL_NAME":"呼吸时代轻呼吸系列低腰(M-L)M码经期裤 QK-M03","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FQTY":180000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-09T09:16:54","FSTART_DATE_SHOW":"2022-06-09 09:16:54","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110772,"FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"13号机","FUNIT_ID":"包","FQTY":20010.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T10:37:39","FPLAN_START_DATE_SHOW":"2022-06-03","FPLAN_FINISH_DATE":"2022-06-03T10:37:39","FPLAN_FINISH_DATE_SHOW":"2022-06-03","FSTART_DATE":"2022-06-02T09:06:22","FSTART_DATE_SHOW":"2022-06-02 09:06:22","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110773,"FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"包","FQTY":30000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T10:37:39","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T10:37:39","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-06-02T09:07:52","FSTART_DATE_SHOW":"2022-06-02 09:07:52","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110087,"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110759,"FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FQTY":993600.0,"FREPQUAAUX_QTY":1010314.0,"FREPFAILAUX_QTY":41420.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-02","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-02","FSTART_DATE":"2022-05-30T14:37:16","FSTART_DATE_SHOW":"2022-05-30 14:37:16","FFINISH_DATE":"2022-06-06T08:48:17","FFINISH_DATE_SHOW":"2022-06-06 08:48:17"},{"FID":110087,"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110761,"FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FQTY":900000.0,"FREPQUAAUX_QTY":902394.0,"FREPFAILAUX_QTY":9723.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-05-28T14:36:37","FSTART_DATE_SHOW":"2022-05-28 14:36:37","FFINISH_DATE":"2022-06-02T08:07:58","FFINISH_DATE_SHOW":"2022-06-02 08:07:58"},{"FID":110086,"FBILL_NO":"MO000076","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110748,"FMATERIAL_ID":"161234","FNUMBER":"401109060004","FMATERIAL_NAME":"云集心悦24悦薄无感蚕丝245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":200000.0,"FREPQUAAUX_QTY":313666.0,"FREPFAILAUX_QTY":10411.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-06-11T09:26:22","FSTART_DATE_SHOW":"2022-06-11 09:26:22","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110739,"FMATERIAL_ID":"162472","FNUMBER":"401301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FQTY":160000.0,"FREPQUAAUX_QTY":8961.0,"FREPFAILAUX_QTY":5759.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-27T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-27","FPLAN_FINISH_DATE":"2022-05-27T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-27","FSTART_DATE":"2022-05-26T15:32:55","FSTART_DATE_SHOW":"2022-05-26 15:32:55","FFINISH_DATE":"2022-06-28T17:13:27","FFINISH_DATE_SHOW":"2022-06-28 17:13:27"},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110725,"FMATERIAL_ID":"175652","FNUMBER":"301003010001","FMATERIAL_NAME":"恋呼吸全透气180mm迷你卫生巾LHX-180","FSPECIFICATION":"10片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FQTY":300.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-26","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-26","FSTART_DATE":"2022-06-22T09:30:56","FSTART_DATE_SHOW":"2022-06-22 09:30:56","FFINISH_DATE":"2022-07-01T13:40:46","FFINISH_DATE_SHOW":"2022-07-01 13:40:46"},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110728,"FMATERIAL_ID":"175653","FNUMBER":"301301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾LHX-245","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":1000.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-10","FSTART_DATE":"2022-05-27T12:23:00","FSTART_DATE_SHOW":"2022-05-27 12:23:00","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110729,"FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FQTY":500.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-26","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-26","FSTART_DATE":"2022-06-01T12:51:53","FSTART_DATE_SHOW":"2022-06-01 12:51:53","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110730,"FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FQTY":600.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-10","FSTART_DATE":"2022-06-01T12:52:11","FSTART_DATE_SHOW":"2022-06-01 12:52:11","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110732,"FMATERIAL_ID":"175655","FNUMBER":"301301120001","FMATERIAL_NAME":"恋呼吸全透气410mm超长夜用卫生巾LHX-410","FSPECIFICATION":"4片/包*24包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FQTY":1.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-15T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-01T12:07:02","FSTART_DATE_SHOW":"2022-06-01 12:07:02","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110723,"FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":400.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-26","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-26","FSTART_DATE":"2022-05-27T12:22:29","FSTART_DATE_SHOW":"2022-05-27 12:22:29","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110724,"FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":400.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-10","FSTART_DATE":"2022-05-27T12:25:23","FSTART_DATE_SHOW":"2022-05-27 12:25:23","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110084,"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110713,"FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":400.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-24","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-24","FSTART_DATE":"2022-05-27T12:21:48","FSTART_DATE_SHOW":"2022-05-27 12:21:48","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110084,"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110714,"FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":800.0,"FREPQUAAUX_QTY":0.0,"FREPFAILAUX_QTY":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-24","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-24","FSTART_DATE":"2022-05-27T12:21:39","FSTART_DATE_SHOW":"2022-05-27 12:21:39","FFINISH_DATE":"","FFINISH_DATE_SHOW":""}]} + +-------------------------------- +2022/7/12 10:29:31| +Request Data: + QueryData:/api/BigScreen/getPlanOrderList + BodyData: + +-------------------------------- +2022/7/12 10:29:36| +Response Data: +{"code":200,"success":true,"message":"成功","data":[{"FID":110203,"FBILL_NO":"MO000193","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110949,"FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FQTY":453.0,"FQTY_SHOW":"453","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:25","FPLAN_START_DATE_SHOW":"2022-06-29","FPLAN_FINISH_DATE":"2022-06-29T14:18:25","FPLAN_FINISH_DATE_SHOW":"2022-06-29","FSTART_DATE":"2022-07-04T12:28:33","FSTART_DATE_SHOW":"2022-07-04 12:28:33","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110202,"FBILL_NO":"MO000192","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110948,"FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FQTY":210.0,"FQTY_SHOW":"210","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:43","FPLAN_START_DATE_SHOW":"2022-06-29","FPLAN_FINISH_DATE":"2022-06-29T14:18:43","FPLAN_FINISH_DATE_SHOW":"2022-06-29","FSTART_DATE":"2022-07-04T12:27:32","FSTART_DATE_SHOW":"2022-07-04 12:27:32","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110196,"FBILL_NO":"MO000186","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110942,"FMATERIAL_ID":"102517","FNUMBER":"301101070003","FMATERIAL_NAME":"布派绿色无感260mm日用卫生巾18片装 BO0128","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FQTY":1500.0,"FQTY_SHOW":"1,500","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-11T14:13:34","FPLAN_START_DATE_SHOW":"2022-07-11","FPLAN_FINISH_DATE":"2022-07-11T14:13:34","FPLAN_FINISH_DATE_SHOW":"2022-07-11","FSTART_DATE":"2022-07-05T14:36:16","FSTART_DATE_SHOW":"2022-07-05 14:36:16","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110117,"FBILL_NO":"MO000107","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110863,"FMATERIAL_ID":"102440","FNUMBER":"301502050004","FMATERIAL_NAME":"千金净雅240mm日用卫生巾8片装 JY-J-101","FSPECIFICATION":"8片/包*48包/箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FQTY":3000.0,"FQTY_SHOW":"3,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-02T09:48:45","FPLAN_START_DATE_SHOW":"2022-07-02","FPLAN_FINISH_DATE":"2022-07-02T09:48:45","FPLAN_FINISH_DATE_SHOW":"2022-07-02","FSTART_DATE":"2022-07-01T08:44:34","FSTART_DATE_SHOW":"2022-07-01 08:44:34","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110106,"FBILL_NO":"MO000096","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110852,"FMATERIAL_ID":"101802","FNUMBER":"301001100005","FMATERIAL_NAME":"安琦清爽纤薄零侧漏300mm爽棉夜用卫生巾15片 LCQ30152","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FQTY":1500.0,"FQTY_SHOW":"1,500","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-01T00:00:00","FPLAN_START_DATE_SHOW":"2022-07-01","FPLAN_FINISH_DATE":"2022-07-01T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-07-01","FSTART_DATE":"2022-06-27T14:35:14","FSTART_DATE_SHOW":"2022-06-27 14:35:14","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110105,"FBILL_NO":"MO000095","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110851,"FMATERIAL_ID":"101795","FNUMBER":"301001070007","FMATERIAL_NAME":"安琦清爽纤薄零侧漏260mm爽棉卫生巾16片 LCQ26163","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FQTY":1500.0,"FQTY_SHOW":"1,500","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-28T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-28","FPLAN_FINISH_DATE":"2022-06-28T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-28","FSTART_DATE":"2022-06-27T14:34:18","FSTART_DATE_SHOW":"2022-06-27 14:34:18","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110834,"FMATERIAL_ID":"102460","FNUMBER":"301201060004","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾10片装 ZW108","FSPECIFICATION":"10片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":12000.0,"FQTY_SHOW":"12,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-09T09:37:04","FPLAN_START_DATE_SHOW":"2022-06-09","FPLAN_FINISH_DATE":"2022-06-09T09:37:04","FPLAN_FINISH_DATE_SHOW":"2022-06-09","FSTART_DATE":"2022-06-09T10:08:30","FSTART_DATE_SHOW":"2022-06-09 10:08:30","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110833,"FMATERIAL_ID":"102461","FNUMBER":"301201080005","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾8片装 ZW109","FSPECIFICATION":"8片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FQTY":5000.0,"FQTY_SHOW":"5,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:36","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T15:35:36","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-09T10:08:37","FSTART_DATE_SHOW":"2022-06-09 10:08:37","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110832,"FMATERIAL_ID":"102462","FNUMBER":"301201110006","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾6片装 ZW112","FSPECIFICATION":"6片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"8号机","FUNIT_ID":"箱","FQTY":2000.0,"FQTY_SHOW":"2,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:37","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T15:35:37","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-09T10:08:42","FSTART_DATE_SHOW":"2022-06-09 10:08:42","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110831,"FMATERIAL_ID":"102463","FNUMBER":"302201030007","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码 2片装 ZW113","FSPECIFICATION":"2片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FQTY":3000.0,"FQTY_SHOW":"3,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T15:35:37","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T15:35:37","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-09T10:08:47","FSTART_DATE_SHOW":"2022-06-09 10:08:47","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110838,"FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FQTY":5760000.0,"FQTY_SHOW":"5,760,000","FREPQUAAUX_QTY":5775535.0,"FREPQUAAUX_QTY_SHOW":"5,775,535","FREPFAILAUX_QTY":88223.0,"FREPFAILAUX_QTY_SHOW":"88,223","COMPLETE_RATE":1.00,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-09T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-09","FPLAN_FINISH_DATE":"2022-06-09T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-09","FSTART_DATE":"2022-06-08T09:17:54","FSTART_DATE_SHOW":"2022-06-08 09:17:54","FFINISH_DATE":"2022-07-05T08:07:23","FFINISH_DATE_SHOW":"2022-07-05 08:07:23"},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110837,"FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FQTY":1920000.0,"FQTY_SHOW":"1,920,000","FREPQUAAUX_QTY":1929994.0,"FREPQUAAUX_QTY_SHOW":"1,929,994","FREPFAILAUX_QTY":47470.0,"FREPFAILAUX_QTY_SHOW":"47,470","COMPLETE_RATE":1.01,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-14T09:27:30","FSTART_DATE_SHOW":"2022-06-14 09:27:30","FFINISH_DATE":"2022-07-02T07:36:14","FFINISH_DATE_SHOW":"2022-07-02 07:36:14"},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110836,"FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FQTY":576000.0,"FQTY_SHOW":"576,000","FREPQUAAUX_QTY":580126.0,"FREPQUAAUX_QTY_SHOW":"580,126","FREPFAILAUX_QTY":16825.0,"FREPFAILAUX_QTY_SHOW":"16,825","COMPLETE_RATE":1.01,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-11T09:29:42","FSTART_DATE_SHOW":"2022-06-11 09:29:42","FFINISH_DATE":"2022-06-25T08:18:36","FFINISH_DATE_SHOW":"2022-06-25 08:18:36"},{"FID":110097,"FBILL_NO":"MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110835,"FMATERIAL_ID":"120758","FNUMBER":"402201030006","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FQTY":288000.0,"FQTY_SHOW":"288,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-07-01T10:38:07","FSTART_DATE_SHOW":"2022-07-01 10:38:07","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110096,"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110826,"FMATERIAL_ID":"102480","FNUMBER":"301203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾10片装 WSJ0310","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FQTY":2778.0,"FQTY_SHOW":"2,778","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-06T14:17:51","FPLAN_START_DATE_SHOW":"2022-07-06","FPLAN_FINISH_DATE":"2022-07-06T14:17:51","FPLAN_FINISH_DATE_SHOW":"2022-07-06","FSTART_DATE":"2022-06-27T14:47:54","FSTART_DATE_SHOW":"2022-06-27 14:47:54","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110096,"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110828,"FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":200000.0,"FQTY_SHOW":"200,000","FREPQUAAUX_QTY":62506.0,"FREPQUAAUX_QTY_SHOW":"62,506","FREPFAILAUX_QTY":2008.0,"FREPFAILAUX_QTY_SHOW":"2,008","COMPLETE_RATE":0.31,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T00:00:00","FPLAN_START_DATE_SHOW":"2022-07-05","FPLAN_FINISH_DATE":"2022-07-05T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-07-05","FSTART_DATE":"2022-06-27T09:49:28","FSTART_DATE_SHOW":"2022-06-27 09:49:28","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110096,"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110829,"FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":1000080.0,"FQTY_SHOW":"1,000,080","FREPQUAAUX_QTY":1142239.0,"FREPQUAAUX_QTY_SHOW":"1,142,239","FREPFAILAUX_QTY":21271.0,"FREPFAILAUX_QTY_SHOW":"21,271","COMPLETE_RATE":1.14,"FSTATUS":"完工","FPLAN_START_DATE":"2022-07-06T00:00:00","FPLAN_START_DATE_SHOW":"2022-07-06","FPLAN_FINISH_DATE":"2022-07-06T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-07-06","FSTART_DATE":"2022-06-28T08:50:45","FSTART_DATE_SHOW":"2022-06-28 08:50:45","FFINISH_DATE":"2022-07-05T19:57:41","FFINISH_DATE_SHOW":"2022-07-05 19:57:41"},{"FID":110096,"FBILL_NO":"MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110825,"FMATERIAL_ID":"163419","FNUMBER":"301203060012","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾2片装 体验装 WSJ0202","FSPECIFICATION":"2片/包*100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T14:17:51","FPLAN_START_DATE_SHOW":"2022-07-05","FPLAN_FINISH_DATE":"2022-07-05T14:17:51","FPLAN_FINISH_DATE_SHOW":"2022-07-05","FSTART_DATE":"2022-06-28T12:03:34","FSTART_DATE_SHOW":"2022-06-28 12:03:34","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110094,"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110816,"FMATERIAL_ID":"101828","FNUMBER":"308001000006","FMATERIAL_NAME":"安琦日夜组合柔棉卫生巾 20片 29201","FSPECIFICATION":"(10片245mm+10片290mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-03","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-03","FSTART_DATE":"2022-06-02T16:10:09","FSTART_DATE_SHOW":"2022-06-02 16:10:09","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110094,"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110812,"FMATERIAL_ID":"101830","FNUMBER":"308001000008","FMATERIAL_NAME":"安琦柠檬组合棉质卫生巾 22片 29221","FSPECIFICATION":"(10片245mm+8片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-02","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-02","FSTART_DATE":"2022-06-02T08:49:34","FSTART_DATE_SHOW":"2022-06-02 08:49:34","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110094,"FBILL_NO":"MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110820,"FMATERIAL_ID":"120807","FNUMBER":"401001040001","FMATERIAL_NAME":"安琦零侧漏180mm直条迷你巾 LC18181","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FQTY":540000.0,"FQTY_SHOW":"540,000","FREPQUAAUX_QTY":548438.0,"FREPQUAAUX_QTY_SHOW":"548,438","FREPFAILAUX_QTY":8122.0,"FREPFAILAUX_QTY_SHOW":"8,122","COMPLETE_RATE":1.02,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-16","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-16","FSTART_DATE":"2022-06-18T09:06:28","FSTART_DATE_SHOW":"2022-06-18 09:06:28","FFINISH_DATE":"2022-06-23T07:44:38","FFINISH_DATE_SHOW":"2022-06-23 07:44:38"},{"FID":110093,"FBILL_NO":"MO000083","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110808,"FMATERIAL_ID":"101832","FNUMBER":"308001000010","FMATERIAL_NAME":"安琦零度清爽清凉组合棉质卫生巾 20片 49201","FSPECIFICATION":"(10片245mm+6片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-01","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-01","FSTART_DATE":"2022-06-09T10:15:51","FSTART_DATE_SHOW":"2022-06-09 10:15:51","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110092,"FBILL_NO":"MO000082","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110807,"FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FQTY":1920000.0,"FQTY_SHOW":"1,920,000","FREPQUAAUX_QTY":1860621.0,"FREPQUAAUX_QTY_SHOW":"1,860,621","FREPFAILAUX_QTY":19909.0,"FREPFAILAUX_QTY_SHOW":"19,909","COMPLETE_RATE":0.97,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-14T09:23:57","FSTART_DATE_SHOW":"2022-06-14 09:23:57","FFINISH_DATE":"2022-06-20T20:14:15","FFINISH_DATE_SHOW":"2022-06-20 20:14:15"},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110791,"FMATERIAL_ID":"101827","FNUMBER":"308001000005","FMATERIAL_NAME":"安琦日用组合柔棉卫生巾 20片 24201","FSPECIFICATION":"(15片245mm+5片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1300.0,"FQTY_SHOW":"1,300","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-07","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-07","FSTART_DATE":"2022-06-03T13:51:39","FSTART_DATE_SHOW":"2022-06-03 13:51:39","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110799,"FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FQTY":540000.0,"FQTY_SHOW":"540,000","FREPQUAAUX_QTY":553535.0,"FREPQUAAUX_QTY_SHOW":"553,535","FREPFAILAUX_QTY":13090.0,"FREPFAILAUX_QTY_SHOW":"13,090","COMPLETE_RATE":1.03,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-11T15:54:52","FSTART_DATE_SHOW":"2022-06-11 15:54:52","FFINISH_DATE":"2022-06-24T17:56:32","FFINISH_DATE_SHOW":"2022-06-24 17:56:32"},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110800,"FMATERIAL_ID":"120814","FNUMBER":"401001050002","FMATERIAL_NAME":"安琦零侧漏240mm丝薄爽棉日用卫生巾 LC24188","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":540000.0,"FQTY_SHOW":"540,000","FREPQUAAUX_QTY":543181.0,"FREPQUAAUX_QTY_SHOW":"543,181","FREPFAILAUX_QTY":14237.0,"FREPFAILAUX_QTY_SHOW":"14,237","COMPLETE_RATE":1.01,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-11T09:31:41","FSTART_DATE_SHOW":"2022-06-11 09:31:41","FFINISH_DATE":"2022-06-20T19:58:52","FFINISH_DATE_SHOW":"2022-06-20 19:58:52"},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110798,"FMATERIAL_ID":"120821","FNUMBER":"401001070001","FMATERIAL_NAME":"安琦零侧漏260mm棉质卫生巾 LC26181/LC26161/LC26201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FQTY":480000.0,"FQTY_SHOW":"480,000","FREPQUAAUX_QTY":486266.0,"FREPQUAAUX_QTY_SHOW":"486,266","FREPFAILAUX_QTY":15777.0,"FREPFAILAUX_QTY_SHOW":"15,777","COMPLETE_RATE":1.01,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-17T08:55:03","FSTART_DATE_SHOW":"2022-06-17 08:55:03","FFINISH_DATE":"2022-06-23T18:03:11","FFINISH_DATE_SHOW":"2022-06-23 18:03:11"},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110802,"FMATERIAL_ID":"120827","FNUMBER":"401001100001","FMATERIAL_NAME":"安琦零侧漏300mm棉质夜用卫生巾LC30161&LC30151","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FQTY":480000.0,"FQTY_SHOW":"480,000","FREPQUAAUX_QTY":614561.0,"FREPQUAAUX_QTY_SHOW":"614,561","FREPFAILAUX_QTY":17353.0,"FREPFAILAUX_QTY_SHOW":"17,353","COMPLETE_RATE":1.28,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-13","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-13","FSTART_DATE":"2022-06-09T09:05:57","FSTART_DATE_SHOW":"2022-06-09 09:05:57","FFINISH_DATE":"2022-06-18T17:15:23","FFINISH_DATE_SHOW":"2022-06-18 17:15:23"},{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110805,"FMATERIAL_ID":"120838","FNUMBER":"401001120002","FMATERIAL_NAME":"安琦云感棉超长夜用420大扇尾 CS42081","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FQTY":480000.0,"FQTY_SHOW":"480,000","FREPQUAAUX_QTY":673376.0,"FREPQUAAUX_QTY_SHOW":"673,376","FREPFAILAUX_QTY":14089.0,"FREPFAILAUX_QTY_SHOW":"14,089","COMPLETE_RATE":1.40,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-16","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-16","FSTART_DATE":"2022-06-07T17:06:49","FSTART_DATE_SHOW":"2022-06-07 17:06:49","FFINISH_DATE":"2022-06-24T17:53:41","FFINISH_DATE_SHOW":"2022-06-24 17:53:41"},{"FID":110090,"FBILL_NO":"MO000080","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110784,"FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":337800.0,"FQTY_SHOW":"337,800","FREPQUAAUX_QTY":523495.0,"FREPQUAAUX_QTY_SHOW":"523,495","FREPFAILAUX_QTY":7388.0,"FREPFAILAUX_QTY_SHOW":"7,388","COMPLETE_RATE":1.55,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-06T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-06","FPLAN_FINISH_DATE":"2022-06-06T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-06","FSTART_DATE":"2022-06-08T09:30:11","FSTART_DATE_SHOW":"2022-06-08 09:30:11","FFINISH_DATE":"2022-06-10T19:53:58","FFINISH_DATE_SHOW":"2022-06-10 19:53:58"},{"FID":110089,"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110782,"FMATERIAL_ID":"161832","FNUMBER":"401001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列245mm夜用卫生巾 DC2407","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":255360.0,"FQTY_SHOW":"255,360","FREPQUAAUX_QTY":236066.0,"FREPQUAAUX_QTY_SHOW":"236,066","FREPFAILAUX_QTY":7405.0,"FREPFAILAUX_QTY_SHOW":"7,405","COMPLETE_RATE":0.92,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-13","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-13","FSTART_DATE":"2022-06-08T09:32:44","FSTART_DATE_SHOW":"2022-06-08 09:32:44","FFINISH_DATE":"2022-06-20T20:25:41","FFINISH_DATE_SHOW":"2022-06-20 20:25:41"},{"FID":110089,"FBILL_NO":"MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110779,"FMATERIAL_ID":"163005","FNUMBER":"301001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列丝薄日用卫生巾(245mm)","FSPECIFICATION":"7片/包×100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FQTY":1520.0,"FQTY_SHOW":"1,520","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-13","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-13","FSTART_DATE":"2022-06-16T12:39:51","FSTART_DATE_SHOW":"2022-06-16 12:39:51","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110775,"FMATERIAL_ID":"156916","FNUMBER":"401003050003","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气240mm日用卫生巾O24005&OH2405","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FQTY":150000.0,"FQTY_SHOW":"150,000","FREPQUAAUX_QTY":260182.0,"FREPQUAAUX_QTY_SHOW":"260,182","FREPFAILAUX_QTY":10703.0,"FREPFAILAUX_QTY_SHOW":"10,703","COMPLETE_RATE":1.73,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-05-28T14:52:11","FSTART_DATE_SHOW":"2022-05-28 14:52:11","FFINISH_DATE":"2022-06-02T17:28:01","FFINISH_DATE_SHOW":"2022-06-02 17:28:01"},{"FID":110088,"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110774,"FMATERIAL_ID":"156917","FNUMBER":"401003090004","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气290mm夜用卫生巾O29505&OH2905","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FQTY":100050.0,"FQTY_SHOW":"100,050","FREPQUAAUX_QTY":25883.0,"FREPQUAAUX_QTY_SHOW":"25,883","FREPFAILAUX_QTY":627.0,"FREPFAILAUX_QTY_SHOW":"627","COMPLETE_RATE":0.26,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-03","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-03","FSTART_DATE":"2022-05-31T09:43:46","FSTART_DATE_SHOW":"2022-05-31 09:43:46","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110771,"FMATERIAL_ID":"161245","FNUMBER":"402003020008","FMATERIAL_NAME":"呼吸时代轻呼吸系列低腰(M-L)M码经期裤 QK-M03","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FQTY":180000.0,"FQTY_SHOW":"180,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-09T09:16:54","FSTART_DATE_SHOW":"2022-06-09 09:16:54","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110772,"FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"13号机","FUNIT_ID":"包","FQTY":20010.0,"FQTY_SHOW":"20,010","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T10:37:39","FPLAN_START_DATE_SHOW":"2022-06-03","FPLAN_FINISH_DATE":"2022-06-03T10:37:39","FPLAN_FINISH_DATE_SHOW":"2022-06-03","FSTART_DATE":"2022-06-02T09:06:22","FSTART_DATE_SHOW":"2022-06-02 09:06:22","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":"MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110773,"FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"包","FQTY":30000.0,"FQTY_SHOW":"30,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T10:37:39","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T10:37:39","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-06-02T09:07:52","FSTART_DATE_SHOW":"2022-06-02 09:07:52","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110087,"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110759,"FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FQTY":993600.0,"FQTY_SHOW":"993,600","FREPQUAAUX_QTY":1010314.0,"FREPQUAAUX_QTY_SHOW":"1,010,314","FREPFAILAUX_QTY":41420.0,"FREPFAILAUX_QTY_SHOW":"41,420","COMPLETE_RATE":1.02,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-02","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-02","FSTART_DATE":"2022-05-30T14:37:16","FSTART_DATE_SHOW":"2022-05-30 14:37:16","FFINISH_DATE":"2022-06-06T08:48:17","FFINISH_DATE_SHOW":"2022-06-06 08:48:17"},{"FID":110087,"FBILL_NO":"MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110761,"FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FQTY":900000.0,"FQTY_SHOW":"900,000","FREPQUAAUX_QTY":902394.0,"FREPQUAAUX_QTY_SHOW":"902,394","FREPFAILAUX_QTY":9723.0,"FREPFAILAUX_QTY_SHOW":"9,723","COMPLETE_RATE":1.00,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-05-28T14:36:37","FSTART_DATE_SHOW":"2022-05-28 14:36:37","FFINISH_DATE":"2022-06-02T08:07:58","FFINISH_DATE_SHOW":"2022-06-02 08:07:58"},{"FID":110086,"FBILL_NO":"MO000076","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110748,"FMATERIAL_ID":"161234","FNUMBER":"401109060004","FMATERIAL_NAME":"云集心悦24悦薄无感蚕丝245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":200000.0,"FQTY_SHOW":"200,000","FREPQUAAUX_QTY":313666.0,"FREPQUAAUX_QTY_SHOW":"313,666","FREPFAILAUX_QTY":10411.0,"FREPFAILAUX_QTY_SHOW":"10,411","COMPLETE_RATE":1.57,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-06-11T09:26:22","FSTART_DATE_SHOW":"2022-06-11 09:26:22","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110739,"FMATERIAL_ID":"162472","FNUMBER":"401301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FQTY":160000.0,"FQTY_SHOW":"160,000","FREPQUAAUX_QTY":8961.0,"FREPQUAAUX_QTY_SHOW":"8,961","FREPFAILAUX_QTY":5759.0,"FREPFAILAUX_QTY_SHOW":"5,759","COMPLETE_RATE":0.06,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-27T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-27","FPLAN_FINISH_DATE":"2022-05-27T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-27","FSTART_DATE":"2022-05-26T15:32:55","FSTART_DATE_SHOW":"2022-05-26 15:32:55","FFINISH_DATE":"2022-06-28T17:13:27","FFINISH_DATE_SHOW":"2022-06-28 17:13:27"},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110725,"FMATERIAL_ID":"175652","FNUMBER":"301003010001","FMATERIAL_NAME":"恋呼吸全透气180mm迷你卫生巾LHX-180","FSPECIFICATION":"10片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FQTY":300.0,"FQTY_SHOW":"300","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-26","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-26","FSTART_DATE":"2022-06-22T09:30:56","FSTART_DATE_SHOW":"2022-06-22 09:30:56","FFINISH_DATE":"2022-07-01T13:40:46","FFINISH_DATE_SHOW":"2022-07-01 13:40:46"},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110728,"FMATERIAL_ID":"175653","FNUMBER":"301301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾LHX-245","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-10","FSTART_DATE":"2022-05-27T12:23:00","FSTART_DATE_SHOW":"2022-05-27 12:23:00","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110729,"FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FQTY":500.0,"FQTY_SHOW":"500","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-26","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-26","FSTART_DATE":"2022-06-01T12:51:53","FSTART_DATE_SHOW":"2022-06-01 12:51:53","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110730,"FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FQTY":600.0,"FQTY_SHOW":"600","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-10","FSTART_DATE":"2022-06-01T12:52:11","FSTART_DATE_SHOW":"2022-06-01 12:52:11","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110732,"FMATERIAL_ID":"175655","FNUMBER":"301301120001","FMATERIAL_NAME":"恋呼吸全透气410mm超长夜用卫生巾LHX-410","FSPECIFICATION":"4片/包*24包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FQTY":1.0,"FQTY_SHOW":"1","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-15T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-01T12:07:02","FSTART_DATE_SHOW":"2022-06-01 12:07:02","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110723,"FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":400.0,"FQTY_SHOW":"400","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-26","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-26","FSTART_DATE":"2022-05-27T12:22:29","FSTART_DATE_SHOW":"2022-05-27 12:22:29","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":"MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110724,"FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":400.0,"FQTY_SHOW":"400","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-10","FSTART_DATE":"2022-05-27T12:25:23","FSTART_DATE_SHOW":"2022-05-27 12:25:23","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110084,"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110713,"FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":400.0,"FQTY_SHOW":"400","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-24","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-24","FSTART_DATE":"2022-05-27T12:21:48","FSTART_DATE_SHOW":"2022-05-27 12:21:48","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110084,"FBILL_NO":"MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110714,"FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":800.0,"FQTY_SHOW":"800","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-24","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-24","FSTART_DATE":"2022-05-27T12:21:39","FSTART_DATE_SHOW":"2022-05-27 12:21:39","FFINISH_DATE":"","FFINISH_DATE_SHOW":""}]} + +-------------------------------- +2022/7/12 11:34:12| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/12 11:34:12| +Response Data: +{"code":500,"data":null,"message":"中文提示 : 拉姆达解析不支持当前函数ObjToDate,SqlFunc这个类里面有大量函数可用,也许有你想要的,例如: it=>SqlFunc.HasValue(it.Id)\r\nEnglish Message : Expression parsing does not support the current function ObjToDate. There are many functions available in the SqlFunc class, for example, it=>SqlFunc.HasValue(it.Id)>>>>>堆栈信息: at SqlSugar.Check.Exception(Boolean isException, String message, String[] args)\r\n at SqlSugar.MethodCallExpressionResolve.CusMethod(ExpressionParameter parameter, MethodCallExpression express, Nullable`1 isLeft)\r\n at SqlSugar.MethodCallExpressionResolve.SqlFuncMethod(ExpressionParameter parameter, MethodCallExpression express, Nullable`1 isLeft)\r\n at SqlSugar.MethodCallExpressionResolve..ctor(ExpressionParameter parameter)\r\n at SqlSugar.BaseResolve.Start()\r\n at SqlSugar.ExpressionContext.Resolve(Expression expression, ResolveExpressType resolveType)\r\n at SqlSugar.BaseResolve.GetNewExpressionValue(Expression item)\r\n at SqlSugar.MemberExpressionResolve.ResolveDateDateByCall(ExpressionParameter parameter, Nullable`1 isLeft, MemberExpression expression)\r\n at SqlSugar.MemberExpressionResolve..ctor(ExpressionParameter parameter)\r\n at SqlSugar.BaseResolve.Start()\r\n at SqlSugar.BinaryExpressionResolve.Other(ExpressionParameter parameter)\r\n at SqlSugar.BinaryExpressionResolve..ctor(ExpressionParameter parameter)\r\n at SqlSugar.BaseResolve.Start()\r\n at SqlSugar.BinaryExpressionResolve.Other(ExpressionParameter parameter)\r\n at SqlSugar.BinaryExpressionResolve..ctor(ExpressionParameter parameter)\r\n at SqlSugar.BaseResolve.Start()\r\n at SqlSugar.LambdaExpressionResolve..ctor(ExpressionParameter parameter)\r\n at SqlSugar.BaseResolve.Start()\r\n at SqlSugar.ExpressionContext.Resolve(Expression expression, ResolveExpressType resolveType)\r\n at SqlSugar.QueryBuilder.GetExpressionValue(Expression expression, ResolveExpressType resolveType)\r\n at SqlSugar.QueryableProvider`1._Where(Expression expression)\r\n at SqlSugar.QueryableProvider`1.Where(Expression`1 expression)\r\n at zzz.Repository.BaseRepository`1.QueryAsync(Expression`1 whereExpression) in D:\\work\\长江云息\\余宏企业\\Src\\YuhongPlcRead\\zzz.Repository\\Base\\BaseRepository.cs:line 0\r\n at zzz.Api.Controllers.BigScreenController.getMonthData() in D:\\work\\长江云息\\余宏企业\\Src\\YuhongPlcRead\\zzz.Api\\Controllers\\BigScreenController.cs:line 62\r\n at lambda_method527(Closure , Object )\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/7/12 16:15:47| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/12 16:15:47| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":0.0,"PoCompleteRate":0.0,"ProductQty":null,"EqmtRate":null,"ProductOKRate":null}} + +-------------------------------- +2022/7/12 16:16:05| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 8:28:25| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 8:29:10| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":0.14,"PoCompleteRate":1.0,"ProductQty":null,"EqmtRate":null,"ProductOKRate":null}} + +-------------------------------- +2022/7/13 8:32:11| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 8:32:13| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.00,"PoCompleteRate":100.0,"ProductQty":null,"EqmtRate":null,"ProductOKRate":null}} + +-------------------------------- +2022/7/13 8:32:29| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 8:32:33| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":null,"EqmtRate":null,"ProductOKRate":null}} + +-------------------------------- +2022/7/13 8:32:38| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 8:32:38| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":null,"EqmtRate":null,"ProductOKRate":null}} + +-------------------------------- +2022/7/13 10:59:16| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 10:59:31| +Response Data: +{"code":500,"data":null,"message":"Object reference not set to an instance of an object.>>>>>堆栈信息: at zzz.Api.Controllers.BigScreenController.getMonthData() in D:\\work\\长江云息\\余宏企业\\Src\\YuhongPlcRead\\zzz.Api\\Controllers\\BigScreenController.cs:line 101\r\n at lambda_method533(Closure , Object )\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/7/13 10:59:39| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 11:00:37| +Response Data: +{"code":500,"data":null,"message":"Object reference not set to an instance of an object.>>>>>堆栈信息: at zzz.Api.Controllers.BigScreenController.getMonthData() in D:\\work\\长江云息\\余宏企业\\Src\\YuhongPlcRead\\zzz.Api\\Controllers\\BigScreenController.cs:line 101\r\n at lambda_method533(Closure , Object )\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022/7/13 11:12:09| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 11:12:42| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-06","07-07","07-08","07-09","07-10","07-11","07-12"]},"series":[]},"EqmtRate":null,"ProductOKRate":null} + +-------------------------------- +2022/7/13 11:33:53| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 11:33:54| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"],"week":["2022-07-07 00:00:00","2022-07-08 00:00:00","2022-07-09 00:00:00","2022-07-10 00:00:00","2022-07-11 00:00:00","2022-07-12 00:00:00","2022-07-13 00:00:00"]},"series":[{"name":"卫生巾","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,0.0,0.0]},{"name":"拉拉裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,0.0,0.0]}]},"EqmtRate":null,"ProductOKRate":null} + +-------------------------------- +2022/7/13 11:35:12| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 11:35:13| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"],"week":["2022-07-07 00:00:00","2022-07-08 00:00:00","2022-07-09 00:00:00","2022-07-10 00:00:00","2022-07-11 00:00:00","2022-07-12 00:00:00","2022-07-13 00:00:00"]},"series":[{"name":"卫生巾","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,0.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":null,"ProductOKRate":null} + +-------------------------------- +2022/7/13 11:35:52| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 11:35:52| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"],"week":["2022-07-07 00:00:00","2022-07-08 00:00:00","2022-07-09 00:00:00","2022-07-10 00:00:00","2022-07-11 00:00:00","2022-07-12 00:00:00","2022-07-13 00:00:00"]},"series":[{"name":"卫生巾","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,0.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":null,"ProductOKRate":null} + +-------------------------------- +2022/7/13 11:36:37| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 11:36:37| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"],"week":["2022-07-07 00:00:00","2022-07-08 00:00:00","2022-07-09 00:00:00","2022-07-10 00:00:00","2022-07-11 00:00:00","2022-07-12 00:00:00","2022-07-13 00:00:00"]},"series":[{"name":"卫生巾","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,0.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":null,"ProductOKRate":null} + +-------------------------------- +2022/7/13 11:37:31| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 11:37:31| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"],"week":["2022-07-07 00:00:00","2022-07-08 00:00:00","2022-07-09 00:00:00","2022-07-10 00:00:00","2022-07-11 00:00:00","2022-07-12 00:00:00","2022-07-13 00:00:00"]},"series":[{"name":"卫生巾","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,0.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":null,"ProductOKRate":null} + +-------------------------------- +2022/7/13 11:38:56| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 13:35:36| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 13:39:37| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 13:39:57| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"],"week":["2022-07-07 00:00:00","2022-07-08 00:00:00","2022-07-09 00:00:00","2022-07-10 00:00:00","2022-07-11 00:00:00","2022-07-12 00:00:00","2022-07-13 00:00:00"]},"series":[{"name":"卫生巾","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,0.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":null,"ProductOKRate":null} + +-------------------------------- +2022/7/13 13:40:11| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 13:40:16| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"],"week":["2022-07-07 00:00:00","2022-07-08 00:00:00","2022-07-09 00:00:00","2022-07-10 00:00:00","2022-07-11 00:00:00","2022-07-12 00:00:00","2022-07-13 00:00:00"]},"series":[{"name":"卫生巾","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,0.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":null,"ProductOKRate":null} + +-------------------------------- +2022/7/13 13:40:53| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 13:43:15| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 13:45:50| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"],"week":["2022-07-07 00:00:00","2022-07-08 00:00:00","2022-07-09 00:00:00","2022-07-10 00:00:00","2022-07-11 00:00:00","2022-07-12 00:00:00","2022-07-13 00:00:00"]},"series":[{"name":"卫生巾","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,0.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":null,"ProductOKRate":null} + +-------------------------------- +2022/7/13 13:45:57| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 13:45:59| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"],"week":["2022-07-07 00:00:00","2022-07-08 00:00:00","2022-07-09 00:00:00","2022-07-10 00:00:00","2022-07-11 00:00:00","2022-07-12 00:00:00","2022-07-13 00:00:00"]},"series":[{"name":"卫生巾","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,0.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":null,"ProductOKRate":null} + +-------------------------------- +2022/7/13 13:46:20| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 13:46:23| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"],"week":["2022-07-07 00:00:00","2022-07-08 00:00:00","2022-07-09 00:00:00","2022-07-10 00:00:00","2022-07-11 00:00:00","2022-07-12 00:00:00","2022-07-13 00:00:00"]},"series":[{"name":"卫生巾","type":"bar","data":[266.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,0.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":null,"ProductOKRate":null} + +-------------------------------- +2022/7/13 13:47:03| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 13:48:29| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"],"week":["2022-07-07 00:00:00","2022-07-08 00:00:00","2022-07-09 00:00:00","2022-07-10 00:00:00","2022-07-11 00:00:00","2022-07-12 00:00:00","2022-07-13 00:00:00"]},"series":[{"name":"卫生巾","type":"bar","data":[266.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,0.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":null,"ProductOKRate":null} + +-------------------------------- +2022/7/13 13:48:35| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 13:48:35| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"],"week":["2022-07-07 00:00:00","2022-07-08 00:00:00","2022-07-09 00:00:00","2022-07-10 00:00:00","2022-07-11 00:00:00","2022-07-12 00:00:00","2022-07-13 00:00:00"]},"series":[{"name":"卫生巾","type":"bar","data":[266.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,0.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":null,"ProductOKRate":null} + +-------------------------------- +2022/7/13 13:49:12| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 13:49:12| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"],"week":["2022-07-07 00:00:00","2022-07-08 00:00:00","2022-07-09 00:00:00","2022-07-10 00:00:00","2022-07-11 00:00:00","2022-07-12 00:00:00","2022-07-13 00:00:00"]},"series":[{"name":"卫生巾","type":"bar","data":[266.0,0.0,0.0,0.0,3666.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,65.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":null,"ProductOKRate":null} + +-------------------------------- +2022/7/13 15:07:08| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 15:07:09| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"]},"series":[{"name":"卫生巾","type":"bar","data":[266.0,0.0,0.0,0.0,3666.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,65.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":{"xAxis":{"type":"category","data":["13#","16#","17#","18#","19#"]},"series":[]},"ProductOKRate":null} + +-------------------------------- +2022/7/13 15:17:21| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 15:18:22| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"]},"series":[{"name":"卫生巾","type":"bar","data":[266.0,0.0,0.0,0.0,3666.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,65.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":{"xAxis":{"type":"category","data":["13#","16#","17#","18#","19#"]},"series":[]},"ProductOKRate":null} + +-------------------------------- +2022/7/13 15:19:30| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 15:19:31| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"]},"series":[{"name":"卫生巾","type":"bar","data":[266.0,0.0,0.0,0.0,3666.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,65.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":{"xAxis":{"type":"category","data":["13#","16#","17#","18#","19#"]},"series":[{"smooth":true,"type":"line","data":[0.0,0.0,0.0,0.0,0.0]}]},"ProductOKRate":null} + +-------------------------------- +2022/7/13 15:22:13| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 15:22:14| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"]},"series":[{"name":"卫生巾","type":"bar","data":[266.0,0.0,0.0,0.0,3666.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,65.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":{"xAxis":{"type":"category","data":["13#","16#","17#","18#","19#"]},"series":[{"smooth":true,"type":"line","data":[0.0,0.0,0.0,89.6400,0.0]}]},"ProductOKRate":null} + +-------------------------------- +2022/7/13 16:33:47| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 16:36:46| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 16:36:47| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"]},"series":[{"name":"卫生巾","type":"bar","data":[266.0,0.0,0.0,0.0,3666.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,65.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":{"xAxis":{"type":"category","data":["13#","16#","17#","18#","19#"]},"series":[{"smooth":true,"type":"line","data":[0.0,0.0,0.0,89.6400,0.0]}]},"ProductOKRate":[{"ProductName":"卫生巾","OKRate":5106.4900},{"ProductName":"纸尿裤","OKRate":0.0},{"ProductName":"经期裤","OKRate":97.1100},{"ProductName":"拉拉裤","OKRate":0.0}]} + +-------------------------------- +2022/7/13 16:39:31| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022/7/13 16:39:32| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":14.2900,"PoCompleteRate":100.0,"ProductQty":{"xAxis":{"type":"category","data":["07-07","07-08","07-09","07-10","07-11","07-12","07-13"]},"series":[{"name":"卫生巾","type":"bar","data":[266.0,0.0,0.0,0.0,3666.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[33766.0,10235.0,0.0,0.0,11670.0,65.0,0.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":{"xAxis":{"type":"category","data":["13#","16#","17#","18#","19#"]},"series":[{"smooth":true,"type":"line","data":[0.0,0.0,0.0,89.6400,0.0]}]},"ProductOKRate":[{"ProductName":"卫生巾","OKRate":98.0800},{"ProductName":"纸尿裤","OKRate":0.0},{"ProductName":"经期裤","OKRate":97.1000},{"ProductName":"拉拉裤","OKRate":0.0}]} + +-------------------------------- +2022/7/13 17:21:37| +Request Data: + QueryData:/api/BigScreen/getEqmtDetailList + BodyData: + +-------------------------------- +2022/7/13 17:21:38| +Response Data: +{"code":200,"success":true,"message":"成功","data":[{"eqmt_name":"13#","id":0,"gmt_create":"2022-07-13 17:21:38","gmt_modified":null,"collect_id":null,"eqmt_id":0,"product_type":null,"product_type_name":null,"speed":0,"total_product_qty":0,"intraday_product_qty":0,"intraday_ok_qty":0,"intraday_ng_qty":0,"intraday_yield_rate":0.0,"intraday_eqmt_run_time":0,"intraday_eqmt_work_time":0,"intraday_eqmt_stop_time":0,"intraday_eqmt_work_rate":0.0,"intraday_eqmt_stop_times":0,"eqmt_status":0,"eqmt_except_flag":0,"eqmt_alarm_flag":0,"oee":0.0,"create_time":null,"update_by":null,"update_time":null,"sys_org_code":null},{"eqmt_name":"16#","id":0,"gmt_create":"2022-07-13 17:21:38","gmt_modified":null,"collect_id":null,"eqmt_id":0,"product_type":null,"product_type_name":null,"speed":0,"total_product_qty":0,"intraday_product_qty":0,"intraday_ok_qty":0,"intraday_ng_qty":0,"intraday_yield_rate":0.0,"intraday_eqmt_run_time":0,"intraday_eqmt_work_time":0,"intraday_eqmt_stop_time":0,"intraday_eqmt_work_rate":0.0,"intraday_eqmt_stop_times":0,"eqmt_status":0,"eqmt_except_flag":0,"eqmt_alarm_flag":0,"oee":0.0,"create_time":null,"update_by":null,"update_time":null,"sys_org_code":null},{"eqmt_name":"17#","id":0,"gmt_create":"2022-07-13 17:21:38","gmt_modified":null,"collect_id":null,"eqmt_id":0,"product_type":null,"product_type_name":null,"speed":0,"total_product_qty":0,"intraday_product_qty":0,"intraday_ok_qty":0,"intraday_ng_qty":0,"intraday_yield_rate":0.0,"intraday_eqmt_run_time":0,"intraday_eqmt_work_time":0,"intraday_eqmt_stop_time":0,"intraday_eqmt_work_rate":0.0,"intraday_eqmt_stop_times":0,"eqmt_status":0,"eqmt_except_flag":0,"eqmt_alarm_flag":0,"oee":0.0,"create_time":null,"update_by":null,"update_time":null,"sys_org_code":null},{"eqmt_name":"18#","id":0,"gmt_create":"2022-07-13 17:21:38","gmt_modified":null,"collect_id":null,"eqmt_id":0,"product_type":null,"product_type_name":null,"speed":0,"total_product_qty":0,"intraday_product_qty":0,"intraday_ok_qty":0,"intraday_ng_qty":0,"intraday_yield_rate":0.0,"intraday_eqmt_run_time":0,"intraday_eqmt_work_time":0,"intraday_eqmt_stop_time":0,"intraday_eqmt_work_rate":0.0,"intraday_eqmt_stop_times":0,"eqmt_status":0,"eqmt_except_flag":0,"eqmt_alarm_flag":0,"oee":0.0,"create_time":null,"update_by":null,"update_time":null,"sys_org_code":null},{"eqmt_name":"19#","id":0,"gmt_create":"2022-07-13 17:21:38","gmt_modified":null,"collect_id":null,"eqmt_id":0,"product_type":null,"product_type_name":null,"speed":0,"total_product_qty":0,"intraday_product_qty":0,"intraday_ok_qty":0,"intraday_ng_qty":0,"intraday_yield_rate":0.0,"intraday_eqmt_run_time":0,"intraday_eqmt_work_time":0,"intraday_eqmt_stop_time":0,"intraday_eqmt_work_rate":0.0,"intraday_eqmt_stop_times":0,"eqmt_status":0,"eqmt_except_flag":0,"eqmt_alarm_flag":0,"oee":0.0,"create_time":null,"update_by":null,"update_time":null,"sys_org_code":null}]} + +-------------------------------- +2022/7/13 17:32:24| +Request Data: + QueryData:/api/BigScreen/getEqmtDetailList + BodyData: + +-------------------------------- +2022/7/13 17:32:25| +Response Data: +{"code":200,"success":true,"message":"成功","data":[{"eqmt_name":"13#","id":0,"gmt_create":"2022-07-13 17:32:25","gmt_modified":null,"collect_id":null,"eqmt_id":0,"product_type":null,"product_type_name":null,"speed":0,"total_product_qty":0,"intraday_product_qty":0,"intraday_ok_qty":0,"intraday_ng_qty":0,"intraday_yield_rate":0.0,"intraday_eqmt_run_time":0,"intraday_eqmt_work_time":0,"intraday_eqmt_stop_time":0,"intraday_eqmt_work_rate":0.0,"intraday_eqmt_stop_times":0,"eqmt_status":0,"eqmt_except_flag":0,"eqmt_alarm_flag":0,"oee":0.0,"create_time":null,"update_by":null,"update_time":null,"sys_org_code":null},{"eqmt_name":"16#","id":0,"gmt_create":"2022-07-13 17:32:25","gmt_modified":null,"collect_id":null,"eqmt_id":0,"product_type":null,"product_type_name":null,"speed":0,"total_product_qty":0,"intraday_product_qty":0,"intraday_ok_qty":0,"intraday_ng_qty":0,"intraday_yield_rate":0.0,"intraday_eqmt_run_time":0,"intraday_eqmt_work_time":0,"intraday_eqmt_stop_time":0,"intraday_eqmt_work_rate":0.0,"intraday_eqmt_stop_times":0,"eqmt_status":0,"eqmt_except_flag":0,"eqmt_alarm_flag":0,"oee":0.0,"create_time":null,"update_by":null,"update_time":null,"sys_org_code":null},{"eqmt_name":"17#","id":0,"gmt_create":"2022-07-13 17:32:25","gmt_modified":null,"collect_id":null,"eqmt_id":0,"product_type":null,"product_type_name":null,"speed":0,"total_product_qty":0,"intraday_product_qty":0,"intraday_ok_qty":0,"intraday_ng_qty":0,"intraday_yield_rate":0.0,"intraday_eqmt_run_time":0,"intraday_eqmt_work_time":0,"intraday_eqmt_stop_time":0,"intraday_eqmt_work_rate":0.0,"intraday_eqmt_stop_times":0,"eqmt_status":0,"eqmt_except_flag":0,"eqmt_alarm_flag":0,"oee":0.0,"create_time":null,"update_by":null,"update_time":null,"sys_org_code":null},{"eqmt_name":"18#","id":10957,"gmt_create":"2022-07-13 11:02:17","gmt_modified":null,"collect_id":"f38611bc-e80a-4082-83e7-049178477c59","eqmt_id":4,"product_type":"5","product_type_name":"经期裤(L)","speed":0,"total_product_qty":138517533,"intraday_product_qty":56598,"intraday_ok_qty":55389,"intraday_ng_qty":1209,"intraday_yield_rate":97.86,"intraday_eqmt_run_time":14400,"intraday_eqmt_work_time":13200,"intraday_eqmt_stop_time":1200,"intraday_eqmt_work_rate":91.49,"intraday_eqmt_stop_times":8,"eqmt_status":2,"eqmt_except_flag":1,"eqmt_alarm_flag":1,"oee":0.00,"create_time":null,"update_by":null,"update_time":null,"sys_org_code":null},{"eqmt_name":"19#","id":0,"gmt_create":"2022-07-13 17:32:25","gmt_modified":null,"collect_id":null,"eqmt_id":0,"product_type":null,"product_type_name":null,"speed":0,"total_product_qty":0,"intraday_product_qty":0,"intraday_ok_qty":0,"intraday_ng_qty":0,"intraday_yield_rate":0.0,"intraday_eqmt_run_time":0,"intraday_eqmt_work_time":0,"intraday_eqmt_stop_time":0,"intraday_eqmt_work_rate":0.0,"intraday_eqmt_stop_times":0,"eqmt_status":0,"eqmt_except_flag":0,"eqmt_alarm_flag":0,"oee":0.0,"create_time":null,"update_by":null,"update_time":null,"sys_org_code":null}]} + +-------------------------------- +2022/7/14 8:37:32| +Request Data: + QueryData:/api/BigScreen/getPlanOrderDetail?fentryId=110790 + BodyData: + +-------------------------------- +2022/7/14 8:37:33| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"FID":110091,"FBILL_NO":"MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110790,"FMATERIAL_ID":"101798","FNUMBER":"301001100001","FMATERIAL_NAME":"安琦零侧漏300mm棉质夜用卫生巾16片 LC30161","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"结案","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-13","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-13","FSTART_DATE":"2022-06-10T12:08:02","FSTART_DATE_SHOW":"2022-06-10 12:08:02","FFINISH_DATE":"2022-06-16T17:05:01","FFINISH_DATE_SHOW":"2022-06-16 17:05:01"}} + +-------------------------------- +2022/7/14 8:39:04| +Request Data: + QueryData:/api/BigScreen/getPlanOrderList + BodyData: + +-------------------------------- +2022/7/14 8:39:05| +Response Data: +{"code":200,"success":true,"message":"成功","data":[{"FID":110203,"FBILL_NO":" MO000193","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110949,"FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FQTY":453.0,"FQTY_SHOW":"453","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:25","FPLAN_START_DATE_SHOW":"2022-06-29","FPLAN_FINISH_DATE":"2022-06-29T14:18:25","FPLAN_FINISH_DATE_SHOW":"2022-06-29","FSTART_DATE":"2022-07-04T12:28:33","FSTART_DATE_SHOW":"2022-07-04 12:28:33","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110202,"FBILL_NO":" MO000192","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110948,"FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FQTY":210.0,"FQTY_SHOW":"210","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:43","FPLAN_START_DATE_SHOW":"2022-06-29","FPLAN_FINISH_DATE":"2022-06-29T14:18:43","FPLAN_FINISH_DATE_SHOW":"2022-06-29","FSTART_DATE":"2022-07-04T12:27:32","FSTART_DATE_SHOW":"2022-07-04 12:27:32","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110196,"FBILL_NO":" MO000186","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110942,"FMATERIAL_ID":"102517","FNUMBER":"301101070003","FMATERIAL_NAME":"布派绿色无感260mm日用卫生巾18片装 BO0128","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FQTY":1500.0,"FQTY_SHOW":"1,500","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-11T14:13:34","FPLAN_START_DATE_SHOW":"2022-07-11","FPLAN_FINISH_DATE":"2022-07-11T14:13:34","FPLAN_FINISH_DATE_SHOW":"2022-07-11","FSTART_DATE":"2022-07-05T14:36:16","FSTART_DATE_SHOW":"2022-07-05 14:36:16","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110117,"FBILL_NO":" MO000107","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110863,"FMATERIAL_ID":"102440","FNUMBER":"301502050004","FMATERIAL_NAME":"千金净雅240mm日用卫生巾8片装 JY-J-101","FSPECIFICATION":"8片/包*48包/箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FQTY":3000.0,"FQTY_SHOW":"3,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-02T09:48:45","FPLAN_START_DATE_SHOW":"2022-07-02","FPLAN_FINISH_DATE":"2022-07-02T09:48:45","FPLAN_FINISH_DATE_SHOW":"2022-07-02","FSTART_DATE":"2022-07-01T08:44:34","FSTART_DATE_SHOW":"2022-07-01 08:44:34","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110106,"FBILL_NO":" MO000096","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110852,"FMATERIAL_ID":"101802","FNUMBER":"301001100005","FMATERIAL_NAME":"安琦清爽纤薄零侧漏300mm爽棉夜用卫生巾15片 LCQ30152","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FQTY":1500.0,"FQTY_SHOW":"1,500","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-01T00:00:00","FPLAN_START_DATE_SHOW":"2022-07-01","FPLAN_FINISH_DATE":"2022-07-01T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-07-01","FSTART_DATE":"2022-06-27T14:35:14","FSTART_DATE_SHOW":"2022-06-27 14:35:14","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110105,"FBILL_NO":" MO000095","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110851,"FMATERIAL_ID":"101795","FNUMBER":"301001070007","FMATERIAL_NAME":"安琦清爽纤薄零侧漏260mm爽棉卫生巾16片 LCQ26163","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FQTY":1500.0,"FQTY_SHOW":"1,500","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-28T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-28","FPLAN_FINISH_DATE":"2022-06-28T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-28","FSTART_DATE":"2022-06-27T14:34:18","FSTART_DATE_SHOW":"2022-06-27 14:34:18","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110834,"FMATERIAL_ID":"102460","FNUMBER":"301201060004","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾10片装 ZW108","FSPECIFICATION":"10片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":12000.0,"FQTY_SHOW":"12,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-09T09:37:04","FPLAN_START_DATE_SHOW":"2022-06-09","FPLAN_FINISH_DATE":"2022-06-09T09:37:04","FPLAN_FINISH_DATE_SHOW":"2022-06-09","FSTART_DATE":"2022-06-09T10:08:30","FSTART_DATE_SHOW":"2022-06-09 10:08:30","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110833,"FMATERIAL_ID":"102461","FNUMBER":"301201080005","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾8片装 ZW109","FSPECIFICATION":"8片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FQTY":5000.0,"FQTY_SHOW":"5,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:36","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T15:35:36","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-09T10:08:37","FSTART_DATE_SHOW":"2022-06-09 10:08:37","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110832,"FMATERIAL_ID":"102462","FNUMBER":"301201110006","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾6片装 ZW112","FSPECIFICATION":"6片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"8号机","FUNIT_ID":"箱","FQTY":2000.0,"FQTY_SHOW":"2,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:37","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T15:35:37","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-09T10:08:42","FSTART_DATE_SHOW":"2022-06-09 10:08:42","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110831,"FMATERIAL_ID":"102463","FNUMBER":"302201030007","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码 2片装 ZW113","FSPECIFICATION":"2片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FQTY":3000.0,"FQTY_SHOW":"3,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T15:35:37","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T15:35:37","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-09T10:08:47","FSTART_DATE_SHOW":"2022-06-09 10:08:47","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110838,"FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FQTY":5760000.0,"FQTY_SHOW":"5,760,000","FREPQUAAUX_QTY":5775535.0,"FREPQUAAUX_QTY_SHOW":"5,775,535","FREPFAILAUX_QTY":88223.0,"FREPFAILAUX_QTY_SHOW":"88,223","COMPLETE_RATE":1.00,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-09T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-09","FPLAN_FINISH_DATE":"2022-06-09T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-09","FSTART_DATE":"2022-06-08T09:17:54","FSTART_DATE_SHOW":"2022-06-08 09:17:54","FFINISH_DATE":"2022-07-05T08:07:23","FFINISH_DATE_SHOW":"2022-07-05 08:07:23"},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110837,"FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FQTY":1920000.0,"FQTY_SHOW":"1,920,000","FREPQUAAUX_QTY":1929994.0,"FREPQUAAUX_QTY_SHOW":"1,929,994","FREPFAILAUX_QTY":47470.0,"FREPFAILAUX_QTY_SHOW":"47,470","COMPLETE_RATE":1.01,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-14T09:27:30","FSTART_DATE_SHOW":"2022-06-14 09:27:30","FFINISH_DATE":"2022-07-02T07:36:14","FFINISH_DATE_SHOW":"2022-07-02 07:36:14"},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110836,"FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FQTY":576000.0,"FQTY_SHOW":"576,000","FREPQUAAUX_QTY":580126.0,"FREPQUAAUX_QTY_SHOW":"580,126","FREPFAILAUX_QTY":16825.0,"FREPFAILAUX_QTY_SHOW":"16,825","COMPLETE_RATE":1.01,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-11T09:29:42","FSTART_DATE_SHOW":"2022-06-11 09:29:42","FFINISH_DATE":"2022-06-25T08:18:36","FFINISH_DATE_SHOW":"2022-06-25 08:18:36"},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110835,"FMATERIAL_ID":"120758","FNUMBER":"402201030006","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FQTY":288000.0,"FQTY_SHOW":"288,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-07-01T10:38:07","FSTART_DATE_SHOW":"2022-07-01 10:38:07","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110096,"FBILL_NO":" MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110826,"FMATERIAL_ID":"102480","FNUMBER":"301203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾10片装 WSJ0310","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FQTY":2778.0,"FQTY_SHOW":"2,778","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-06T14:17:51","FPLAN_START_DATE_SHOW":"2022-07-06","FPLAN_FINISH_DATE":"2022-07-06T14:17:51","FPLAN_FINISH_DATE_SHOW":"2022-07-06","FSTART_DATE":"2022-06-27T14:47:54","FSTART_DATE_SHOW":"2022-06-27 14:47:54","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110096,"FBILL_NO":" MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110828,"FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":200000.0,"FQTY_SHOW":"200,000","FREPQUAAUX_QTY":62506.0,"FREPQUAAUX_QTY_SHOW":"62,506","FREPFAILAUX_QTY":2008.0,"FREPFAILAUX_QTY_SHOW":"2,008","COMPLETE_RATE":0.31,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T00:00:00","FPLAN_START_DATE_SHOW":"2022-07-05","FPLAN_FINISH_DATE":"2022-07-05T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-07-05","FSTART_DATE":"2022-06-27T09:49:28","FSTART_DATE_SHOW":"2022-06-27 09:49:28","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110096,"FBILL_NO":" MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110829,"FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":1000080.0,"FQTY_SHOW":"1,000,080","FREPQUAAUX_QTY":1142239.0,"FREPQUAAUX_QTY_SHOW":"1,142,239","FREPFAILAUX_QTY":21271.0,"FREPFAILAUX_QTY_SHOW":"21,271","COMPLETE_RATE":1.14,"FSTATUS":"完工","FPLAN_START_DATE":"2022-07-06T00:00:00","FPLAN_START_DATE_SHOW":"2022-07-06","FPLAN_FINISH_DATE":"2022-07-06T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-07-06","FSTART_DATE":"2022-06-28T08:50:45","FSTART_DATE_SHOW":"2022-06-28 08:50:45","FFINISH_DATE":"2022-07-05T19:57:41","FFINISH_DATE_SHOW":"2022-07-05 19:57:41"},{"FID":110096,"FBILL_NO":" MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110825,"FMATERIAL_ID":"163419","FNUMBER":"301203060012","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾2片装 体验装 WSJ0202","FSPECIFICATION":"2片/包*100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T14:17:51","FPLAN_START_DATE_SHOW":"2022-07-05","FPLAN_FINISH_DATE":"2022-07-05T14:17:51","FPLAN_FINISH_DATE_SHOW":"2022-07-05","FSTART_DATE":"2022-06-28T12:03:34","FSTART_DATE_SHOW":"2022-06-28 12:03:34","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110094,"FBILL_NO":" MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110816,"FMATERIAL_ID":"101828","FNUMBER":"308001000006","FMATERIAL_NAME":"安琦日夜组合柔棉卫生巾 20片 29201","FSPECIFICATION":"(10片245mm+10片290mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-03","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-03","FSTART_DATE":"2022-06-02T16:10:09","FSTART_DATE_SHOW":"2022-06-02 16:10:09","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110094,"FBILL_NO":" MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110812,"FMATERIAL_ID":"101830","FNUMBER":"308001000008","FMATERIAL_NAME":"安琦柠檬组合棉质卫生巾 22片 29221","FSPECIFICATION":"(10片245mm+8片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-02","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-02","FSTART_DATE":"2022-06-02T08:49:34","FSTART_DATE_SHOW":"2022-06-02 08:49:34","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110094,"FBILL_NO":" MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110820,"FMATERIAL_ID":"120807","FNUMBER":"401001040001","FMATERIAL_NAME":"安琦零侧漏180mm直条迷你巾 LC18181","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FQTY":540000.0,"FQTY_SHOW":"540,000","FREPQUAAUX_QTY":548438.0,"FREPQUAAUX_QTY_SHOW":"548,438","FREPFAILAUX_QTY":8122.0,"FREPFAILAUX_QTY_SHOW":"8,122","COMPLETE_RATE":1.02,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-16","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-16","FSTART_DATE":"2022-06-18T09:06:28","FSTART_DATE_SHOW":"2022-06-18 09:06:28","FFINISH_DATE":"2022-06-23T07:44:38","FFINISH_DATE_SHOW":"2022-06-23 07:44:38"},{"FID":110093,"FBILL_NO":" MO000083","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110808,"FMATERIAL_ID":"101832","FNUMBER":"308001000010","FMATERIAL_NAME":"安琦零度清爽清凉组合棉质卫生巾 20片 49201","FSPECIFICATION":"(10片245mm+6片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-01","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-01","FSTART_DATE":"2022-06-09T10:15:51","FSTART_DATE_SHOW":"2022-06-09 10:15:51","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110092,"FBILL_NO":" MO000082","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110807,"FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FQTY":1920000.0,"FQTY_SHOW":"1,920,000","FREPQUAAUX_QTY":1860621.0,"FREPQUAAUX_QTY_SHOW":"1,860,621","FREPFAILAUX_QTY":19909.0,"FREPFAILAUX_QTY_SHOW":"19,909","COMPLETE_RATE":0.97,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-14T09:23:57","FSTART_DATE_SHOW":"2022-06-14 09:23:57","FFINISH_DATE":"2022-06-20T20:14:15","FFINISH_DATE_SHOW":"2022-06-20 20:14:15"},{"FID":110091,"FBILL_NO":" MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110791,"FMATERIAL_ID":"101827","FNUMBER":"308001000005","FMATERIAL_NAME":"安琦日用组合柔棉卫生巾 20片 24201","FSPECIFICATION":"(15片245mm+5片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1300.0,"FQTY_SHOW":"1,300","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-07","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-07","FSTART_DATE":"2022-06-03T13:51:39","FSTART_DATE_SHOW":"2022-06-03 13:51:39","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110091,"FBILL_NO":" MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110799,"FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FQTY":540000.0,"FQTY_SHOW":"540,000","FREPQUAAUX_QTY":553535.0,"FREPQUAAUX_QTY_SHOW":"553,535","FREPFAILAUX_QTY":13090.0,"FREPFAILAUX_QTY_SHOW":"13,090","COMPLETE_RATE":1.03,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-11T15:54:52","FSTART_DATE_SHOW":"2022-06-11 15:54:52","FFINISH_DATE":"2022-06-24T17:56:32","FFINISH_DATE_SHOW":"2022-06-24 17:56:32"},{"FID":110091,"FBILL_NO":" MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110800,"FMATERIAL_ID":"120814","FNUMBER":"401001050002","FMATERIAL_NAME":"安琦零侧漏240mm丝薄爽棉日用卫生巾 LC24188","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":540000.0,"FQTY_SHOW":"540,000","FREPQUAAUX_QTY":543181.0,"FREPQUAAUX_QTY_SHOW":"543,181","FREPFAILAUX_QTY":14237.0,"FREPFAILAUX_QTY_SHOW":"14,237","COMPLETE_RATE":1.01,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-11T09:31:41","FSTART_DATE_SHOW":"2022-06-11 09:31:41","FFINISH_DATE":"2022-06-20T19:58:52","FFINISH_DATE_SHOW":"2022-06-20 19:58:52"},{"FID":110091,"FBILL_NO":" MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110798,"FMATERIAL_ID":"120821","FNUMBER":"401001070001","FMATERIAL_NAME":"安琦零侧漏260mm棉质卫生巾 LC26181/LC26161/LC26201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FQTY":480000.0,"FQTY_SHOW":"480,000","FREPQUAAUX_QTY":486266.0,"FREPQUAAUX_QTY_SHOW":"486,266","FREPFAILAUX_QTY":15777.0,"FREPFAILAUX_QTY_SHOW":"15,777","COMPLETE_RATE":1.01,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-17T08:55:03","FSTART_DATE_SHOW":"2022-06-17 08:55:03","FFINISH_DATE":"2022-06-23T18:03:11","FFINISH_DATE_SHOW":"2022-06-23 18:03:11"},{"FID":110091,"FBILL_NO":" MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110802,"FMATERIAL_ID":"120827","FNUMBER":"401001100001","FMATERIAL_NAME":"安琦零侧漏300mm棉质夜用卫生巾LC30161&LC30151","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FQTY":480000.0,"FQTY_SHOW":"480,000","FREPQUAAUX_QTY":614561.0,"FREPQUAAUX_QTY_SHOW":"614,561","FREPFAILAUX_QTY":17353.0,"FREPFAILAUX_QTY_SHOW":"17,353","COMPLETE_RATE":1.28,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-13","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-13","FSTART_DATE":"2022-06-09T09:05:57","FSTART_DATE_SHOW":"2022-06-09 09:05:57","FFINISH_DATE":"2022-06-18T17:15:23","FFINISH_DATE_SHOW":"2022-06-18 17:15:23"},{"FID":110091,"FBILL_NO":" MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110805,"FMATERIAL_ID":"120838","FNUMBER":"401001120002","FMATERIAL_NAME":"安琦云感棉超长夜用420大扇尾 CS42081","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FQTY":480000.0,"FQTY_SHOW":"480,000","FREPQUAAUX_QTY":673376.0,"FREPQUAAUX_QTY_SHOW":"673,376","FREPFAILAUX_QTY":14089.0,"FREPFAILAUX_QTY_SHOW":"14,089","COMPLETE_RATE":1.40,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-16","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-16","FSTART_DATE":"2022-06-07T17:06:49","FSTART_DATE_SHOW":"2022-06-07 17:06:49","FFINISH_DATE":"2022-06-24T17:53:41","FFINISH_DATE_SHOW":"2022-06-24 17:53:41"},{"FID":110090,"FBILL_NO":" MO000080","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110784,"FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":337800.0,"FQTY_SHOW":"337,800","FREPQUAAUX_QTY":523495.0,"FREPQUAAUX_QTY_SHOW":"523,495","FREPFAILAUX_QTY":7388.0,"FREPFAILAUX_QTY_SHOW":"7,388","COMPLETE_RATE":1.55,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-06T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-06","FPLAN_FINISH_DATE":"2022-06-06T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-06","FSTART_DATE":"2022-06-08T09:30:11","FSTART_DATE_SHOW":"2022-06-08 09:30:11","FFINISH_DATE":"2022-06-10T19:53:58","FFINISH_DATE_SHOW":"2022-06-10 19:53:58"},{"FID":110089,"FBILL_NO":" MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110782,"FMATERIAL_ID":"161832","FNUMBER":"401001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列245mm夜用卫生巾 DC2407","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":255360.0,"FQTY_SHOW":"255,360","FREPQUAAUX_QTY":236066.0,"FREPQUAAUX_QTY_SHOW":"236,066","FREPFAILAUX_QTY":7405.0,"FREPFAILAUX_QTY_SHOW":"7,405","COMPLETE_RATE":0.92,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-13","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-13","FSTART_DATE":"2022-06-08T09:32:44","FSTART_DATE_SHOW":"2022-06-08 09:32:44","FFINISH_DATE":"2022-06-20T20:25:41","FFINISH_DATE_SHOW":"2022-06-20 20:25:41"},{"FID":110089,"FBILL_NO":" MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110779,"FMATERIAL_ID":"163005","FNUMBER":"301001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列丝薄日用卫生巾(245mm)","FSPECIFICATION":"7片/包×100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FQTY":1520.0,"FQTY_SHOW":"1,520","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-13","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-13","FSTART_DATE":"2022-06-16T12:39:51","FSTART_DATE_SHOW":"2022-06-16 12:39:51","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":" MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110775,"FMATERIAL_ID":"156916","FNUMBER":"401003050003","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气240mm日用卫生巾O24005&OH2405","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FQTY":150000.0,"FQTY_SHOW":"150,000","FREPQUAAUX_QTY":260182.0,"FREPQUAAUX_QTY_SHOW":"260,182","FREPFAILAUX_QTY":10703.0,"FREPFAILAUX_QTY_SHOW":"10,703","COMPLETE_RATE":1.73,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-05-28T14:52:11","FSTART_DATE_SHOW":"2022-05-28 14:52:11","FFINISH_DATE":"2022-06-02T17:28:01","FFINISH_DATE_SHOW":"2022-06-02 17:28:01"},{"FID":110088,"FBILL_NO":" MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110774,"FMATERIAL_ID":"156917","FNUMBER":"401003090004","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气290mm夜用卫生巾O29505&OH2905","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FQTY":100050.0,"FQTY_SHOW":"100,050","FREPQUAAUX_QTY":25883.0,"FREPQUAAUX_QTY_SHOW":"25,883","FREPFAILAUX_QTY":627.0,"FREPFAILAUX_QTY_SHOW":"627","COMPLETE_RATE":0.26,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-03","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-03","FSTART_DATE":"2022-05-31T09:43:46","FSTART_DATE_SHOW":"2022-05-31 09:43:46","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":" MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110771,"FMATERIAL_ID":"161245","FNUMBER":"402003020008","FMATERIAL_NAME":"呼吸时代轻呼吸系列低腰(M-L)M码经期裤 QK-M03","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FQTY":180000.0,"FQTY_SHOW":"180,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-09T09:16:54","FSTART_DATE_SHOW":"2022-06-09 09:16:54","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":" MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110772,"FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"13号机","FUNIT_ID":"包","FQTY":20010.0,"FQTY_SHOW":"20,010","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T10:37:39","FPLAN_START_DATE_SHOW":"2022-06-03","FPLAN_FINISH_DATE":"2022-06-03T10:37:39","FPLAN_FINISH_DATE_SHOW":"2022-06-03","FSTART_DATE":"2022-06-02T09:06:22","FSTART_DATE_SHOW":"2022-06-02 09:06:22","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":" MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110773,"FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"包","FQTY":30000.0,"FQTY_SHOW":"30,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T10:37:39","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T10:37:39","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-06-02T09:07:52","FSTART_DATE_SHOW":"2022-06-02 09:07:52","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110087,"FBILL_NO":" MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110759,"FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FQTY":993600.0,"FQTY_SHOW":"993,600","FREPQUAAUX_QTY":1010314.0,"FREPQUAAUX_QTY_SHOW":"1,010,314","FREPFAILAUX_QTY":41420.0,"FREPFAILAUX_QTY_SHOW":"41,420","COMPLETE_RATE":1.02,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-02","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-02","FSTART_DATE":"2022-05-30T14:37:16","FSTART_DATE_SHOW":"2022-05-30 14:37:16","FFINISH_DATE":"2022-06-06T08:48:17","FFINISH_DATE_SHOW":"2022-06-06 08:48:17"},{"FID":110087,"FBILL_NO":" MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110761,"FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FQTY":900000.0,"FQTY_SHOW":"900,000","FREPQUAAUX_QTY":902394.0,"FREPQUAAUX_QTY_SHOW":"902,394","FREPFAILAUX_QTY":9723.0,"FREPFAILAUX_QTY_SHOW":"9,723","COMPLETE_RATE":1.00,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-05-28T14:36:37","FSTART_DATE_SHOW":"2022-05-28 14:36:37","FFINISH_DATE":"2022-06-02T08:07:58","FFINISH_DATE_SHOW":"2022-06-02 08:07:58"},{"FID":110086,"FBILL_NO":" MO000076","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110748,"FMATERIAL_ID":"161234","FNUMBER":"401109060004","FMATERIAL_NAME":"云集心悦24悦薄无感蚕丝245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":200000.0,"FQTY_SHOW":"200,000","FREPQUAAUX_QTY":313666.0,"FREPQUAAUX_QTY_SHOW":"313,666","FREPFAILAUX_QTY":10411.0,"FREPFAILAUX_QTY_SHOW":"10,411","COMPLETE_RATE":1.57,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-06-11T09:26:22","FSTART_DATE_SHOW":"2022-06-11 09:26:22","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110739,"FMATERIAL_ID":"162472","FNUMBER":"401301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FQTY":160000.0,"FQTY_SHOW":"160,000","FREPQUAAUX_QTY":8961.0,"FREPQUAAUX_QTY_SHOW":"8,961","FREPFAILAUX_QTY":5759.0,"FREPFAILAUX_QTY_SHOW":"5,759","COMPLETE_RATE":0.06,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-27T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-27","FPLAN_FINISH_DATE":"2022-05-27T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-27","FSTART_DATE":"2022-05-26T15:32:55","FSTART_DATE_SHOW":"2022-05-26 15:32:55","FFINISH_DATE":"2022-06-28T17:13:27","FFINISH_DATE_SHOW":"2022-06-28 17:13:27"},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110725,"FMATERIAL_ID":"175652","FNUMBER":"301003010001","FMATERIAL_NAME":"恋呼吸全透气180mm迷你卫生巾LHX-180","FSPECIFICATION":"10片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FQTY":300.0,"FQTY_SHOW":"300","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-26","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-26","FSTART_DATE":"2022-06-22T09:30:56","FSTART_DATE_SHOW":"2022-06-22 09:30:56","FFINISH_DATE":"2022-07-01T13:40:46","FFINISH_DATE_SHOW":"2022-07-01 13:40:46"},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110728,"FMATERIAL_ID":"175653","FNUMBER":"301301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾LHX-245","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-10","FSTART_DATE":"2022-05-27T12:23:00","FSTART_DATE_SHOW":"2022-05-27 12:23:00","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110729,"FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FQTY":500.0,"FQTY_SHOW":"500","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-26","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-26","FSTART_DATE":"2022-06-01T12:51:53","FSTART_DATE_SHOW":"2022-06-01 12:51:53","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110730,"FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FQTY":600.0,"FQTY_SHOW":"600","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-10","FSTART_DATE":"2022-06-01T12:52:11","FSTART_DATE_SHOW":"2022-06-01 12:52:11","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110732,"FMATERIAL_ID":"175655","FNUMBER":"301301120001","FMATERIAL_NAME":"恋呼吸全透气410mm超长夜用卫生巾LHX-410","FSPECIFICATION":"4片/包*24包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FQTY":1.0,"FQTY_SHOW":"1","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-15T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-01T12:07:02","FSTART_DATE_SHOW":"2022-06-01 12:07:02","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110723,"FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":400.0,"FQTY_SHOW":"400","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-26","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-26","FSTART_DATE":"2022-05-27T12:22:29","FSTART_DATE_SHOW":"2022-05-27 12:22:29","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110724,"FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":400.0,"FQTY_SHOW":"400","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-10","FSTART_DATE":"2022-05-27T12:25:23","FSTART_DATE_SHOW":"2022-05-27 12:25:23","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110084,"FBILL_NO":" MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110713,"FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":400.0,"FQTY_SHOW":"400","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-24","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-24","FSTART_DATE":"2022-05-27T12:21:48","FSTART_DATE_SHOW":"2022-05-27 12:21:48","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110084,"FBILL_NO":" MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110714,"FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":800.0,"FQTY_SHOW":"800","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-24","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-24","FSTART_DATE":"2022-05-27T12:21:39","FSTART_DATE_SHOW":"2022-05-27 12:21:39","FFINISH_DATE":"","FFINISH_DATE_SHOW":""}]} + +-------------------------------- +2022/7/14 15:19:58| +Request Data: + QueryData:/api/BigScreen/getPlanOrderList + BodyData: + +-------------------------------- +2022/7/14 15:20:05| +Response Data: +{"code":200,"success":true,"message":"成功","data":[{"FID":110203,"FBILL_NO":" MO000193","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110949,"FMATERIAL_ID":"102359","FNUMBER":"301100020001","FMATERIAL_NAME":"倍舒特棉柔超薄无香型155mm护垫20片装 HD90040","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FQTY":453.0,"FQTY_SHOW":"453","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:25","FPLAN_START_DATE_SHOW":"2022-06-29","FPLAN_FINISH_DATE":"2022-06-29T14:18:25","FPLAN_FINISH_DATE_SHOW":"2022-06-29","FSTART_DATE":"2022-07-04T12:28:33","FSTART_DATE_SHOW":"2022-07-04 12:28:33","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110202,"FBILL_NO":" MO000192","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110948,"FMATERIAL_ID":"102360","FNUMBER":"301100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫20片装 HD90340","FSPECIFICATION":"20片/小包*2小包/袋*24包/箱","FWORK_SHOP":"1号机","FUNIT_ID":"箱","FQTY":210.0,"FQTY_SHOW":"210","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-29T14:18:43","FPLAN_START_DATE_SHOW":"2022-06-29","FPLAN_FINISH_DATE":"2022-06-29T14:18:43","FPLAN_FINISH_DATE_SHOW":"2022-06-29","FSTART_DATE":"2022-07-04T12:27:32","FSTART_DATE_SHOW":"2022-07-04 12:27:32","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110196,"FBILL_NO":" MO000186","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110942,"FMATERIAL_ID":"102517","FNUMBER":"301101070003","FMATERIAL_NAME":"布派绿色无感260mm日用卫生巾18片装 BO0128","FSPECIFICATION":"18片/包*30包/箱","FWORK_SHOP":"7号机","FUNIT_ID":"箱","FQTY":1500.0,"FQTY_SHOW":"1,500","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-11T14:13:34","FPLAN_START_DATE_SHOW":"2022-07-11","FPLAN_FINISH_DATE":"2022-07-11T14:13:34","FPLAN_FINISH_DATE_SHOW":"2022-07-11","FSTART_DATE":"2022-07-05T14:36:16","FSTART_DATE_SHOW":"2022-07-05 14:36:16","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110117,"FBILL_NO":" MO000107","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110863,"FMATERIAL_ID":"102440","FNUMBER":"301502050004","FMATERIAL_NAME":"千金净雅240mm日用卫生巾8片装 JY-J-101","FSPECIFICATION":"8片/包*48包/箱","FWORK_SHOP":"12号机","FUNIT_ID":"箱","FQTY":3000.0,"FQTY_SHOW":"3,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-02T09:48:45","FPLAN_START_DATE_SHOW":"2022-07-02","FPLAN_FINISH_DATE":"2022-07-02T09:48:45","FPLAN_FINISH_DATE_SHOW":"2022-07-02","FSTART_DATE":"2022-07-01T08:44:34","FSTART_DATE_SHOW":"2022-07-01 08:44:34","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110106,"FBILL_NO":" MO000096","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110852,"FMATERIAL_ID":"101802","FNUMBER":"301001100005","FMATERIAL_NAME":"安琦清爽纤薄零侧漏300mm爽棉夜用卫生巾15片 LCQ30152","FSPECIFICATION":"15片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FQTY":1500.0,"FQTY_SHOW":"1,500","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-01T00:00:00","FPLAN_START_DATE_SHOW":"2022-07-01","FPLAN_FINISH_DATE":"2022-07-01T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-07-01","FSTART_DATE":"2022-06-27T14:35:14","FSTART_DATE_SHOW":"2022-06-27 14:35:14","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110105,"FBILL_NO":" MO000095","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110851,"FMATERIAL_ID":"101795","FNUMBER":"301001070007","FMATERIAL_NAME":"安琦清爽纤薄零侧漏260mm爽棉卫生巾16片 LCQ26163","FSPECIFICATION":"16片/包*30包/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FQTY":1500.0,"FQTY_SHOW":"1,500","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-28T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-28","FPLAN_FINISH_DATE":"2022-06-28T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-28","FSTART_DATE":"2022-06-27T14:34:18","FSTART_DATE_SHOW":"2022-06-27 14:34:18","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110834,"FMATERIAL_ID":"102460","FNUMBER":"301201060004","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾10片装 ZW108","FSPECIFICATION":"10片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":12000.0,"FQTY_SHOW":"12,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-09T09:37:04","FPLAN_START_DATE_SHOW":"2022-06-09","FPLAN_FINISH_DATE":"2022-06-09T09:37:04","FPLAN_FINISH_DATE_SHOW":"2022-06-09","FSTART_DATE":"2022-06-09T10:08:30","FSTART_DATE_SHOW":"2022-06-09 10:08:30","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110833,"FMATERIAL_ID":"102461","FNUMBER":"301201080005","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾8片装 ZW109","FSPECIFICATION":"8片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"9号机","FUNIT_ID":"箱","FQTY":5000.0,"FQTY_SHOW":"5,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:36","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T15:35:36","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-09T10:08:37","FSTART_DATE_SHOW":"2022-06-09 10:08:37","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110832,"FMATERIAL_ID":"102462","FNUMBER":"301201110006","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾6片装 ZW112","FSPECIFICATION":"6片/小包*12小包/手拎袋*4袋/箱","FWORK_SHOP":"8号机","FUNIT_ID":"箱","FQTY":2000.0,"FQTY_SHOW":"2,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T15:35:37","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T15:35:37","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-09T10:08:42","FSTART_DATE_SHOW":"2022-06-09 10:08:42","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110831,"FMATERIAL_ID":"102463","FNUMBER":"302201030007","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码 2片装 ZW113","FSPECIFICATION":"2片/小包*6小包/手拎袋*8袋/箱","FWORK_SHOP":"18号机","FUNIT_ID":"箱","FQTY":3000.0,"FQTY_SHOW":"3,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T15:35:37","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T15:35:37","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-09T10:08:47","FSTART_DATE_SHOW":"2022-06-09 10:08:47","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110838,"FMATERIAL_ID":"120755","FNUMBER":"401201060003","FMATERIAL_NAME":"江苏安能馨纪元超薄245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"12号机","FUNIT_ID":"片","FQTY":5760000.0,"FQTY_SHOW":"5,760,000","FREPQUAAUX_QTY":5775535.0,"FREPQUAAUX_QTY_SHOW":"5,775,535","FREPFAILAUX_QTY":88223.0,"FREPFAILAUX_QTY_SHOW":"88,223","COMPLETE_RATE":1.00,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-09T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-09","FPLAN_FINISH_DATE":"2022-06-09T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-09","FSTART_DATE":"2022-06-08T09:17:54","FSTART_DATE_SHOW":"2022-06-08 09:17:54","FFINISH_DATE":"2022-07-05T08:07:23","FFINISH_DATE_SHOW":"2022-07-05 08:07:23"},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110837,"FMATERIAL_ID":"120756","FNUMBER":"401201080004","FMATERIAL_NAME":"江苏安能馨纪元超薄285mm夜用卫生巾","FSPECIFICATION":"1*2000片","FWORK_SHOP":"11号机","FUNIT_ID":"片","FQTY":1920000.0,"FQTY_SHOW":"1,920,000","FREPQUAAUX_QTY":1929994.0,"FREPQUAAUX_QTY_SHOW":"1,929,994","FREPFAILAUX_QTY":47470.0,"FREPFAILAUX_QTY_SHOW":"47,470","COMPLETE_RATE":1.01,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-14T09:27:30","FSTART_DATE_SHOW":"2022-06-14 09:27:30","FFINISH_DATE":"2022-07-02T07:36:14","FFINISH_DATE_SHOW":"2022-07-02 07:36:14"},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110836,"FMATERIAL_ID":"120757","FNUMBER":"401201110005","FMATERIAL_NAME":"江苏安能馨纪元超薄350mm超长夜用卫生巾 ZW112","FSPECIFICATION":"1*1300片","FWORK_SHOP":"8号机","FUNIT_ID":"片","FQTY":576000.0,"FQTY_SHOW":"576,000","FREPQUAAUX_QTY":580126.0,"FREPQUAAUX_QTY_SHOW":"580,126","FREPFAILAUX_QTY":16825.0,"FREPFAILAUX_QTY_SHOW":"16,825","COMPLETE_RATE":1.01,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-11T09:29:42","FSTART_DATE_SHOW":"2022-06-11 09:29:42","FFINISH_DATE":"2022-06-25T08:18:36","FFINISH_DATE_SHOW":"2022-06-25 08:18:36"},{"FID":110097,"FBILL_NO":" MO000087","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110835,"FMATERIAL_ID":"120758","FNUMBER":"402201030006","FMATERIAL_NAME":"江苏安能馨纪元超薄经期裤高腰L码","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FQTY":288000.0,"FQTY_SHOW":"288,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-07-01T10:38:07","FSTART_DATE_SHOW":"2022-07-01 10:38:07","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110096,"FBILL_NO":" MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110826,"FMATERIAL_ID":"102480","FNUMBER":"301203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾10片装 WSJ0310","FSPECIFICATION":"10片/包*36包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FQTY":2778.0,"FQTY_SHOW":"2,778","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-06T14:17:51","FPLAN_START_DATE_SHOW":"2022-07-06","FPLAN_FINISH_DATE":"2022-07-06T14:17:51","FPLAN_FINISH_DATE_SHOW":"2022-07-06","FSTART_DATE":"2022-06-27T14:47:54","FSTART_DATE_SHOW":"2022-06-27 14:47:54","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110096,"FBILL_NO":" MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110828,"FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":200000.0,"FQTY_SHOW":"200,000","FREPQUAAUX_QTY":62506.0,"FREPQUAAUX_QTY_SHOW":"62,506","FREPFAILAUX_QTY":2008.0,"FREPFAILAUX_QTY_SHOW":"2,008","COMPLETE_RATE":0.31,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T00:00:00","FPLAN_START_DATE_SHOW":"2022-07-05","FPLAN_FINISH_DATE":"2022-07-05T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-07-05","FSTART_DATE":"2022-06-27T09:49:28","FSTART_DATE_SHOW":"2022-06-27 09:49:28","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110096,"FBILL_NO":" MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110829,"FMATERIAL_ID":"120767","FNUMBER":"401203060001","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":1000080.0,"FQTY_SHOW":"1,000,080","FREPQUAAUX_QTY":1142239.0,"FREPQUAAUX_QTY_SHOW":"1,142,239","FREPFAILAUX_QTY":21271.0,"FREPFAILAUX_QTY_SHOW":"21,271","COMPLETE_RATE":1.14,"FSTATUS":"完工","FPLAN_START_DATE":"2022-07-06T00:00:00","FPLAN_START_DATE_SHOW":"2022-07-06","FPLAN_FINISH_DATE":"2022-07-06T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-07-06","FSTART_DATE":"2022-06-28T08:50:45","FSTART_DATE_SHOW":"2022-06-28 08:50:45","FFINISH_DATE":"2022-07-05T19:57:41","FFINISH_DATE_SHOW":"2022-07-05 19:57:41"},{"FID":110096,"FBILL_NO":" MO000086","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110825,"FMATERIAL_ID":"163419","FNUMBER":"301203060012","FMATERIAL_NAME":"上海比芭云霓直条包245mm日用卫生巾2片装 体验装 WSJ0202","FSPECIFICATION":"2片/包*100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-07-05T14:17:51","FPLAN_START_DATE_SHOW":"2022-07-05","FPLAN_FINISH_DATE":"2022-07-05T14:17:51","FPLAN_FINISH_DATE_SHOW":"2022-07-05","FSTART_DATE":"2022-06-28T12:03:34","FSTART_DATE_SHOW":"2022-06-28 12:03:34","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110094,"FBILL_NO":" MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110816,"FMATERIAL_ID":"101828","FNUMBER":"308001000006","FMATERIAL_NAME":"安琦日夜组合柔棉卫生巾 20片 29201","FSPECIFICATION":"(10片245mm+10片290mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-03","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-03","FSTART_DATE":"2022-06-02T16:10:09","FSTART_DATE_SHOW":"2022-06-02 16:10:09","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110094,"FBILL_NO":" MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110812,"FMATERIAL_ID":"101830","FNUMBER":"308001000008","FMATERIAL_NAME":"安琦柠檬组合棉质卫生巾 22片 29221","FSPECIFICATION":"(10片245mm+8片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-02","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-02","FSTART_DATE":"2022-06-02T08:49:34","FSTART_DATE_SHOW":"2022-06-02 08:49:34","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110094,"FBILL_NO":" MO000084","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110820,"FMATERIAL_ID":"120807","FNUMBER":"401001040001","FMATERIAL_NAME":"安琦零侧漏180mm直条迷你巾 LC18181","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FQTY":540000.0,"FQTY_SHOW":"540,000","FREPQUAAUX_QTY":548438.0,"FREPQUAAUX_QTY_SHOW":"548,438","FREPFAILAUX_QTY":8122.0,"FREPFAILAUX_QTY_SHOW":"8,122","COMPLETE_RATE":1.02,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-16","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-16","FSTART_DATE":"2022-06-18T09:06:28","FSTART_DATE_SHOW":"2022-06-18 09:06:28","FFINISH_DATE":"2022-06-23T07:44:38","FFINISH_DATE_SHOW":"2022-06-23 07:44:38"},{"FID":110093,"FBILL_NO":" MO000083","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110808,"FMATERIAL_ID":"101832","FNUMBER":"308001000010","FMATERIAL_NAME":"安琦零度清爽清凉组合棉质卫生巾 20片 49201","FSPECIFICATION":"(10片245mm+6片290mm+4片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-01T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-01","FPLAN_FINISH_DATE":"2022-06-01T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-01","FSTART_DATE":"2022-06-09T10:15:51","FSTART_DATE_SHOW":"2022-06-09 10:15:51","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110092,"FBILL_NO":" MO000082","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110807,"FMATERIAL_ID":"120812","FNUMBER":"401001040006","FMATERIAL_NAME":"安琦180mm加长护垫 T8028 组合装24201&29221&29222赠送片","FSPECIFICATION":"1*9500片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FQTY":1920000.0,"FQTY_SHOW":"1,920,000","FREPQUAAUX_QTY":1860621.0,"FREPQUAAUX_QTY_SHOW":"1,860,621","FREPFAILAUX_QTY":19909.0,"FREPFAILAUX_QTY_SHOW":"19,909","COMPLETE_RATE":0.97,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-14T09:23:57","FSTART_DATE_SHOW":"2022-06-14 09:23:57","FFINISH_DATE":"2022-06-20T20:14:15","FFINISH_DATE_SHOW":"2022-06-20 20:14:15"},{"FID":110091,"FBILL_NO":" MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110791,"FMATERIAL_ID":"101827","FNUMBER":"308001000005","FMATERIAL_NAME":"安琦日用组合柔棉卫生巾 20片 24201","FSPECIFICATION":"(15片245mm+5片180mm)/包*30包/箱","FWORK_SHOP":"2号机","FUNIT_ID":"箱","FQTY":1300.0,"FQTY_SHOW":"1,300","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-07T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-07","FPLAN_FINISH_DATE":"2022-06-07T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-07","FSTART_DATE":"2022-06-03T13:51:39","FSTART_DATE_SHOW":"2022-06-03 13:51:39","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110091,"FBILL_NO":" MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110799,"FMATERIAL_ID":"120813","FNUMBER":"401001050001","FMATERIAL_NAME":"安琦零侧漏240mm丝薄棉质日用卫生巾 LC24187/LC23205","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FQTY":540000.0,"FQTY_SHOW":"540,000","FREPQUAAUX_QTY":553535.0,"FREPQUAAUX_QTY_SHOW":"553,535","FREPFAILAUX_QTY":13090.0,"FREPFAILAUX_QTY_SHOW":"13,090","COMPLETE_RATE":1.03,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-11T15:54:52","FSTART_DATE_SHOW":"2022-06-11 15:54:52","FFINISH_DATE":"2022-06-24T17:56:32","FFINISH_DATE_SHOW":"2022-06-24 17:56:32"},{"FID":110091,"FBILL_NO":" MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110800,"FMATERIAL_ID":"120814","FNUMBER":"401001050002","FMATERIAL_NAME":"安琦零侧漏240mm丝薄爽棉日用卫生巾 LC24188","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":540000.0,"FQTY_SHOW":"540,000","FREPQUAAUX_QTY":543181.0,"FREPQUAAUX_QTY_SHOW":"543,181","FREPFAILAUX_QTY":14237.0,"FREPFAILAUX_QTY_SHOW":"14,237","COMPLETE_RATE":1.01,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-11T09:31:41","FSTART_DATE_SHOW":"2022-06-11 09:31:41","FFINISH_DATE":"2022-06-20T19:58:52","FFINISH_DATE_SHOW":"2022-06-20 19:58:52"},{"FID":110091,"FBILL_NO":" MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110798,"FMATERIAL_ID":"120821","FNUMBER":"401001070001","FMATERIAL_NAME":"安琦零侧漏260mm棉质卫生巾 LC26181/LC26161/LC26201","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FQTY":480000.0,"FQTY_SHOW":"480,000","FREPQUAAUX_QTY":486266.0,"FREPQUAAUX_QTY_SHOW":"486,266","FREPFAILAUX_QTY":15777.0,"FREPFAILAUX_QTY_SHOW":"15,777","COMPLETE_RATE":1.01,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-20T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-20","FPLAN_FINISH_DATE":"2022-06-20T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-20","FSTART_DATE":"2022-06-17T08:55:03","FSTART_DATE_SHOW":"2022-06-17 08:55:03","FFINISH_DATE":"2022-06-23T18:03:11","FFINISH_DATE_SHOW":"2022-06-23 18:03:11"},{"FID":110091,"FBILL_NO":" MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110802,"FMATERIAL_ID":"120827","FNUMBER":"401001100001","FMATERIAL_NAME":"安琦零侧漏300mm棉质夜用卫生巾LC30161&LC30151","FSPECIFICATION":"1*2200片","FWORK_SHOP":"7号机","FUNIT_ID":"片","FQTY":480000.0,"FQTY_SHOW":"480,000","FREPQUAAUX_QTY":614561.0,"FREPQUAAUX_QTY_SHOW":"614,561","FREPFAILAUX_QTY":17353.0,"FREPFAILAUX_QTY_SHOW":"17,353","COMPLETE_RATE":1.28,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-13","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-13","FSTART_DATE":"2022-06-09T09:05:57","FSTART_DATE_SHOW":"2022-06-09 09:05:57","FFINISH_DATE":"2022-06-18T17:15:23","FFINISH_DATE_SHOW":"2022-06-18 17:15:23"},{"FID":110091,"FBILL_NO":" MO000081","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110805,"FMATERIAL_ID":"120838","FNUMBER":"401001120002","FMATERIAL_NAME":"安琦云感棉超长夜用420大扇尾 CS42081","FSPECIFICATION":"1*1200片","FWORK_SHOP":"10号机","FUNIT_ID":"片","FQTY":480000.0,"FQTY_SHOW":"480,000","FREPQUAAUX_QTY":673376.0,"FREPQUAAUX_QTY_SHOW":"673,376","FREPFAILAUX_QTY":14089.0,"FREPFAILAUX_QTY_SHOW":"14,089","COMPLETE_RATE":1.40,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-16T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-16","FPLAN_FINISH_DATE":"2022-06-16T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-16","FSTART_DATE":"2022-06-07T17:06:49","FSTART_DATE_SHOW":"2022-06-07 17:06:49","FFINISH_DATE":"2022-06-24T17:53:41","FFINISH_DATE_SHOW":"2022-06-24 17:53:41"},{"FID":110090,"FBILL_NO":" MO000080","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110784,"FMATERIAL_ID":"120759","FNUMBER":"401202060001","FMATERIAL_NAME":"沐歆澳棉系列纯棉丝薄日用卫生巾240mm","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":337800.0,"FQTY_SHOW":"337,800","FREPQUAAUX_QTY":523495.0,"FREPQUAAUX_QTY_SHOW":"523,495","FREPFAILAUX_QTY":7388.0,"FREPFAILAUX_QTY_SHOW":"7,388","COMPLETE_RATE":1.55,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-06T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-06","FPLAN_FINISH_DATE":"2022-06-06T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-06","FSTART_DATE":"2022-06-08T09:30:11","FSTART_DATE_SHOW":"2022-06-08 09:30:11","FFINISH_DATE":"2022-06-10T19:53:58","FFINISH_DATE_SHOW":"2022-06-10 19:53:58"},{"FID":110089,"FBILL_NO":" MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110782,"FMATERIAL_ID":"161832","FNUMBER":"401001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列245mm夜用卫生巾 DC2407","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":255360.0,"FQTY_SHOW":"255,360","FREPQUAAUX_QTY":236066.0,"FREPQUAAUX_QTY_SHOW":"236,066","FREPFAILAUX_QTY":7405.0,"FREPFAILAUX_QTY_SHOW":"7,405","COMPLETE_RATE":0.92,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-13","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-13","FSTART_DATE":"2022-06-08T09:32:44","FSTART_DATE_SHOW":"2022-06-08 09:32:44","FFINISH_DATE":"2022-06-20T20:25:41","FFINISH_DATE_SHOW":"2022-06-20 20:25:41"},{"FID":110089,"FBILL_NO":" MO000079","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110779,"FMATERIAL_ID":"163005","FNUMBER":"301001060007","FMATERIAL_NAME":"安琦电商薄羽蚕丝系列丝薄日用卫生巾(245mm)","FSPECIFICATION":"7片/包×100包/箱","FWORK_SHOP":"5号机","FUNIT_ID":"箱","FQTY":1520.0,"FQTY_SHOW":"1,520","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-13T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-13","FPLAN_FINISH_DATE":"2022-06-13T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-13","FSTART_DATE":"2022-06-16T12:39:51","FSTART_DATE_SHOW":"2022-06-16 12:39:51","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":" MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110775,"FMATERIAL_ID":"156916","FNUMBER":"401003050003","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气240mm日用卫生巾O24005&OH2405","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FQTY":150000.0,"FQTY_SHOW":"150,000","FREPQUAAUX_QTY":260182.0,"FREPQUAAUX_QTY_SHOW":"260,182","FREPFAILAUX_QTY":10703.0,"FREPFAILAUX_QTY_SHOW":"10,703","COMPLETE_RATE":1.73,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-05-28T14:52:11","FSTART_DATE_SHOW":"2022-05-28 14:52:11","FFINISH_DATE":"2022-06-02T17:28:01","FFINISH_DATE_SHOW":"2022-06-02 17:28:01"},{"FID":110088,"FBILL_NO":" MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110774,"FMATERIAL_ID":"156917","FNUMBER":"401003090004","FMATERIAL_NAME":"呼吸时代O2 oxymore全透气290mm夜用卫生巾O29505&OH2905","FSPECIFICATION":"1*2000片","FWORK_SHOP":"13号机","FUNIT_ID":"片","FQTY":100050.0,"FQTY_SHOW":"100,050","FREPQUAAUX_QTY":25883.0,"FREPQUAAUX_QTY_SHOW":"25,883","FREPFAILAUX_QTY":627.0,"FREPFAILAUX_QTY_SHOW":"627","COMPLETE_RATE":0.26,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-03","FPLAN_FINISH_DATE":"2022-06-03T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-03","FSTART_DATE":"2022-05-31T09:43:46","FSTART_DATE_SHOW":"2022-05-31 09:43:46","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":" MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110771,"FMATERIAL_ID":"161245","FNUMBER":"402003020008","FMATERIAL_NAME":"呼吸时代轻呼吸系列低腰(M-L)M码经期裤 QK-M03","FSPECIFICATION":"1*300片","FWORK_SHOP":"18号机","FUNIT_ID":"片","FQTY":180000.0,"FQTY_SHOW":"180,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-15T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-15","FPLAN_FINISH_DATE":"2022-06-15T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-09T09:16:54","FSTART_DATE_SHOW":"2022-06-09 09:16:54","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":" MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110772,"FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"13号机","FUNIT_ID":"包","FQTY":20010.0,"FQTY_SHOW":"20,010","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-03T10:37:39","FPLAN_START_DATE_SHOW":"2022-06-03","FPLAN_FINISH_DATE":"2022-06-03T10:37:39","FPLAN_FINISH_DATE_SHOW":"2022-06-03","FSTART_DATE":"2022-06-02T09:06:22","FSTART_DATE_SHOW":"2022-06-02 09:06:22","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110088,"FBILL_NO":" MO000078","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110773,"FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"包","FQTY":30000.0,"FQTY_SHOW":"30,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T10:37:39","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T10:37:39","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-06-02T09:07:52","FSTART_DATE_SHOW":"2022-06-02 09:07:52","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110087,"FBILL_NO":" MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110759,"FMATERIAL_ID":"120665","FNUMBER":"401100020002","FMATERIAL_NAME":"倍舒特棉柔超薄加香型155mm护垫 HD90340","FSPECIFICATION":"1*8000片","FWORK_SHOP":"1号机","FUNIT_ID":"片","FQTY":993600.0,"FQTY_SHOW":"993,600","FREPQUAAUX_QTY":1010314.0,"FREPQUAAUX_QTY_SHOW":"1,010,314","FREPFAILAUX_QTY":41420.0,"FREPFAILAUX_QTY_SHOW":"41,420","COMPLETE_RATE":1.02,"FSTATUS":"完工","FPLAN_START_DATE":"2022-06-02T00:00:00","FPLAN_START_DATE_SHOW":"2022-06-02","FPLAN_FINISH_DATE":"2022-06-02T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-06-02","FSTART_DATE":"2022-05-30T14:37:16","FSTART_DATE_SHOW":"2022-05-30 14:37:16","FFINISH_DATE":"2022-06-06T08:48:17","FFINISH_DATE_SHOW":"2022-06-06 08:48:17"},{"FID":110087,"FBILL_NO":" MO000077","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110761,"FMATERIAL_ID":"120667","FNUMBER":"401100040004","FMATERIAL_NAME":"倍舒特棉柔轻巧180mm直条迷你巾 HK52010","FSPECIFICATION":"1*4200片","FWORK_SHOP":"3号机","FUNIT_ID":"片","FQTY":900000.0,"FQTY_SHOW":"900,000","FREPQUAAUX_QTY":902394.0,"FREPQUAAUX_QTY_SHOW":"902,394","FREPFAILAUX_QTY":9723.0,"FREPFAILAUX_QTY_SHOW":"9,723","COMPLETE_RATE":1.00,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-05-28T14:36:37","FSTART_DATE_SHOW":"2022-05-28 14:36:37","FFINISH_DATE":"2022-06-02T08:07:58","FFINISH_DATE_SHOW":"2022-06-02 08:07:58"},{"FID":110086,"FBILL_NO":" MO000076","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110748,"FMATERIAL_ID":"161234","FNUMBER":"401109060004","FMATERIAL_NAME":"云集心悦24悦薄无感蚕丝245mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"5号机","FUNIT_ID":"片","FQTY":200000.0,"FQTY_SHOW":"200,000","FREPQUAAUX_QTY":313666.0,"FREPQUAAUX_QTY_SHOW":"313,666","FREPFAILAUX_QTY":10411.0,"FREPFAILAUX_QTY_SHOW":"10,411","COMPLETE_RATE":1.57,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-30T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-30","FPLAN_FINISH_DATE":"2022-05-30T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-30","FSTART_DATE":"2022-06-11T09:26:22","FSTART_DATE_SHOW":"2022-06-11 09:26:22","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110739,"FMATERIAL_ID":"162472","FNUMBER":"401301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾","FSPECIFICATION":"1*2200片","FWORK_SHOP":"15号机","FUNIT_ID":"片","FQTY":160000.0,"FQTY_SHOW":"160,000","FREPQUAAUX_QTY":8961.0,"FREPQUAAUX_QTY_SHOW":"8,961","FREPFAILAUX_QTY":5759.0,"FREPFAILAUX_QTY_SHOW":"5,759","COMPLETE_RATE":0.06,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-27T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-27","FPLAN_FINISH_DATE":"2022-05-27T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-27","FSTART_DATE":"2022-05-26T15:32:55","FSTART_DATE_SHOW":"2022-05-26 15:32:55","FFINISH_DATE":"2022-06-28T17:13:27","FFINISH_DATE_SHOW":"2022-06-28 17:13:27"},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110725,"FMATERIAL_ID":"175652","FNUMBER":"301003010001","FMATERIAL_NAME":"恋呼吸全透气180mm迷你卫生巾LHX-180","FSPECIFICATION":"10片/包*24包/箱","FWORK_SHOP":"3号机","FUNIT_ID":"箱","FQTY":300.0,"FQTY_SHOW":"300","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"完工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-26","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-26","FSTART_DATE":"2022-06-22T09:30:56","FSTART_DATE_SHOW":"2022-06-22 09:30:56","FFINISH_DATE":"2022-07-01T13:40:46","FFINISH_DATE_SHOW":"2022-07-01 13:40:46"},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110728,"FMATERIAL_ID":"175653","FNUMBER":"301301050001","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾LHX-245","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":1000.0,"FQTY_SHOW":"1,000","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-10","FSTART_DATE":"2022-05-27T12:23:00","FSTART_DATE_SHOW":"2022-05-27 12:23:00","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110729,"FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FQTY":500.0,"FQTY_SHOW":"500","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-26","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-26","FSTART_DATE":"2022-06-01T12:51:53","FSTART_DATE_SHOW":"2022-06-01 12:51:53","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110730,"FMATERIAL_ID":"175654","FNUMBER":"301301090001","FMATERIAL_NAME":"恋呼吸全透气290mm夜用卫生巾LHX-290","FSPECIFICATION":"5片/包*24包/箱","FWORK_SHOP":"13号机","FUNIT_ID":"箱","FQTY":600.0,"FQTY_SHOW":"600","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-10","FSTART_DATE":"2022-06-01T12:52:11","FSTART_DATE_SHOW":"2022-06-01 12:52:11","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110732,"FMATERIAL_ID":"175655","FNUMBER":"301301120001","FMATERIAL_NAME":"恋呼吸全透气410mm超长夜用卫生巾LHX-410","FSPECIFICATION":"4片/包*24包/箱","FWORK_SHOP":"6号机","FUNIT_ID":"箱","FQTY":1.0,"FQTY_SHOW":"1","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-15T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-15","FSTART_DATE":"2022-06-01T12:07:02","FSTART_DATE_SHOW":"2022-06-01 12:07:02","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110723,"FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":400.0,"FQTY_SHOW":"400","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-26T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-26","FPLAN_FINISH_DATE":"2022-05-26T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-26","FSTART_DATE":"2022-05-27T12:22:29","FSTART_DATE_SHOW":"2022-05-27 12:22:29","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110085,"FBILL_NO":" MO000075","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110724,"FMATERIAL_ID":"175672","FNUMBER":"301301050002","FMATERIAL_NAME":"恋呼吸全透气240mm日用卫生巾 体验装","FSPECIFICATION":"1片/包*100包/箱","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":400.0,"FQTY_SHOW":"400","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-06-10T13:13:51","FPLAN_START_DATE_SHOW":"2022-06-10","FPLAN_FINISH_DATE":"2022-06-10T13:13:51","FPLAN_FINISH_DATE_SHOW":"2022-06-10","FSTART_DATE":"2022-05-27T12:25:23","FSTART_DATE_SHOW":"2022-05-27 12:25:23","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110084,"FBILL_NO":" MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110713,"FMATERIAL_ID":"163185","FNUMBER":"301003090010","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气290mm夜用卫生巾OH2905","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":400.0,"FQTY_SHOW":"400","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-24","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-24","FSTART_DATE":"2022-05-27T12:21:48","FSTART_DATE_SHOW":"2022-05-27 12:21:48","FFINISH_DATE":"","FFINISH_DATE_SHOW":""},{"FID":110084,"FBILL_NO":" MO000074","FBILL_TYPE":"281783bb73244d178d41ce550d877af0","FDOCUMENT_STATUS":"C","FPRODUCT_TYPE":"1","FENTRY_ID":110714,"FMATERIAL_ID":"163186","FNUMBER":"301003050001","FMATERIAL_NAME":"呼吸时代O2 oxymore(丁香版)全透气240mm日用卫生巾OH2405","FSPECIFICATION":"5片/包","FWORK_SHOP":"15号机","FUNIT_ID":"箱","FQTY":800.0,"FQTY_SHOW":"800","FREPQUAAUX_QTY":0.0,"FREPQUAAUX_QTY_SHOW":"0","FREPFAILAUX_QTY":0.0,"FREPFAILAUX_QTY_SHOW":"0","COMPLETE_RATE":0.0,"FSTATUS":"开工","FPLAN_START_DATE":"2022-05-24T00:00:00","FPLAN_START_DATE_SHOW":"2022-05-24","FPLAN_FINISH_DATE":"2022-05-24T00:00:00","FPLAN_FINISH_DATE_SHOW":"2022-05-24","FSTART_DATE":"2022-05-27T12:21:39","FSTART_DATE_SHOW":"2022-05-27 12:21:39","FFINISH_DATE":"","FFINISH_DATE_SHOW":""}]} + +-------------------------------- +2022-09-29 12:35:24| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022-09-29 12:35:40| +Response Data: +{"code":500,"data":null,"message":"中文提示 : 连接数据库过程中发生错误,检查服务器是否正常连接字符串是否正确,实在找不到原因请先Google错误信息:Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding..\r\nEnglish Message : Connection open error . Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.>>>>>堆栈信息: at SqlSugar.AdoProvider.GetDataReaderAsync(String sql, SugarParameter[] parameters)\r\n at SqlSugar.QueryableProvider`1.GetDataAsync[TResult](KeyValuePair`2 sqlObj)\r\n at SqlSugar.QueryableProvider`1._ToListAsync[TResult]()\r\n at zzz.Repository.BaseRepository`1.QueryAsync() in F:\\yuhong_plc\\zzz.Repository\\Base\\BaseRepository.cs:line 0\r\n at zzz.Api.Controllers.BigScreenController.getMonthData() in F:\\yuhong_plc\\zzz.Api\\Controllers\\BigScreenController.cs:line 98\r\n at lambda_method528(Closure , Object )\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022-09-29 12:37:33| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022-09-29 12:37:49| +Response Data: +{"code":500,"data":null,"message":"中文提示 : 连接数据库过程中发生错误,检查服务器是否正常连接字符串是否正确,实在找不到原因请先Google错误信息:Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding..\r\nEnglish Message : Connection open error . Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.>>>>>堆栈信息: at SqlSugar.AdoProvider.GetDataReaderAsync(String sql, SugarParameter[] parameters)\r\n at SqlSugar.QueryableProvider`1.GetDataAsync[TResult](KeyValuePair`2 sqlObj)\r\n at SqlSugar.QueryableProvider`1._ToListAsync[TResult]()\r\n at zzz.Repository.BaseRepository`1.QueryAsync() in F:\\yuhong_plc\\zzz.Repository\\Base\\BaseRepository.cs:line 0\r\n at zzz.Api.Controllers.BigScreenController.getMonthData() in F:\\yuhong_plc\\zzz.Api\\Controllers\\BigScreenController.cs:line 98\r\n at lambda_method498(Closure , Object )\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)","success":false} + +-------------------------------- +2022-09-29 12:38:47| +Request Data: + QueryData:/api/BigScreen/getMonthData + BodyData: + +-------------------------------- +2022-09-29 12:38:50| +Response Data: +{"code":200,"success":true,"message":"成功","data":{"MoCompleteRate":0.0,"PoCompleteRate":0.0,"ProductQty":{"xAxis":{"type":"category","data":["09-23","09-24","09-25","09-26","09-27","09-28","09-29"]},"series":[{"name":"卫生巾","type":"bar","data":[98700.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"纸尿裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]},{"name":"经期裤","type":"bar","data":[408495.0,407353.0,345361.0,423563.0,417965.0,378011.0,229783.0]},{"name":"拉拉裤","type":"bar","data":[0.0,0.0,0.0,0.0,0.0,0.0,0.0]}]},"EqmtRate":{"xAxis":{"type":"category","data":["13#","16#","17#","18#","19#"]},"series":[{"smooth":true,"type":"line","data":[85.6500,0.0,91.0800,92.6500,46.0300]}]},"ProductOKRate":[{"ProductName":"卫生巾","OKRate":95.3600},{"ProductName":"纸尿裤","OKRate":0.0},{"ProductName":"经期裤","OKRate":97.5800},{"ProductName":"拉拉裤","OKRate":48.6600}]} + +-------------------------------- +2022-11-02 14:38:43| +Request Data: + QueryData:/api/Test/TestRead15 + BodyData: + +-------------------------------- +2022-11-02 14:39:04| +Response Data: +OK + +-------------------------------- +2022-11-02 14:39:54| +Request Data: + QueryData:/api/Test/TestRead15 + BodyData: + +-------------------------------- +2022-11-02 14:54:23| +Request Data: + QueryData:/api/Test/TestRead15 + BodyData: + +-------------------------------- +2022-11-02 14:54:44| +Response Data: +OK + diff --git a/yuhong_plc/zzz.Api/Log/SqlLog_1653857579.log b/yuhong_plc/zzz.Api/Log/SqlLog_1653857579.log new file mode 100644 index 0000000..e44f6cf --- /dev/null +++ b/yuhong_plc/zzz.Api/Log/SqlLog_1653857579.log @@ -0,0 +1,8601 @@ +-------------------------------- +2022/5/29 20:52:59| +【SQL参数】: +【SQL语句】: SELECT COUNT(1) FROM (SELECT [Txt1],[Txt2],[Flo1],[Flo2],[UnitCode],[UnitName],[UnitHelpCode],[Sort],[Remark],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted] FROM [Test] WHERE ( 1 = 1 ) ) CountTable +-------------------------------- +2022/5/29 20:52:59| +【SQL参数】: +【SQL语句】:SELECT * FROM (SELECT [Txt1],[Txt2],[Flo1],[Flo2],[UnitCode],[UnitName],[UnitHelpCode],[Sort],[Remark],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted],ROW_NUMBER() OVER(ORDER BY Id desc) AS RowIndex FROM [Test] WHERE ( 1 = 1 ) ) T WHERE RowIndex BETWEEN 1 AND 20 +-------------------------------- +2022/5/29 23:20:01| +【SQL参数】:@IsDeleted0:True +@MethodConst2: + +【SQL语句】: SELECT COUNT(1) FROM (SELECT [Name],[JobGroup],[Cron],[AssemblyName],[ClassName],[Remark],[RunTimes],[BeginTime],[EndTime],[TriggerType],[IntervalSecond],[CycleRunTimes],[IsStart],[JobParams],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted] FROM [tasks_qz] WHERE (( [IsDeleted] <> @IsDeleted0 ) AND (( [Name] IS NOT NULL ) AND ([Name] like '%'+@MethodConst2+'%') ))) CountTable +-------------------------------- +2022/5/29 23:20:01| +【SQL参数】:@IsDeleted0:True +@MethodConst2: + +【SQL语句】:SELECT * FROM (SELECT [Name],[JobGroup],[Cron],[AssemblyName],[ClassName],[Remark],[RunTimes],[BeginTime],[EndTime],[TriggerType],[IntervalSecond],[CycleRunTimes],[IsStart],[JobParams],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted],ROW_NUMBER() OVER(ORDER BY Id desc ) AS RowIndex FROM [tasks_qz] WHERE (( [IsDeleted] <> @IsDeleted0 ) AND (( [Name] IS NOT NULL ) AND ([Name] like '%'+@MethodConst2+'%') ))) T WHERE RowIndex BETWEEN 1 AND 50 +-------------------------------- +2022/5/29 23:20:21| +【SQL参数】:@IsDeleted0:True +@MethodConst2: + +【SQL语句】: SELECT COUNT(1) FROM (SELECT [Name],[JobGroup],[Cron],[AssemblyName],[ClassName],[Remark],[RunTimes],[BeginTime],[EndTime],[TriggerType],[IntervalSecond],[CycleRunTimes],[IsStart],[JobParams],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted] FROM [tasks_qz] WHERE (( [IsDeleted] <> @IsDeleted0 ) AND (( [Name] IS NOT NULL ) AND ([Name] like '%'+@MethodConst2+'%') ))) CountTable +-------------------------------- +2022/5/29 23:20:21| +【SQL参数】:@IsDeleted0:True +@MethodConst2: + +【SQL语句】:SELECT * FROM (SELECT [Name],[JobGroup],[Cron],[AssemblyName],[ClassName],[Remark],[RunTimes],[BeginTime],[EndTime],[TriggerType],[IntervalSecond],[CycleRunTimes],[IsStart],[JobParams],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted],ROW_NUMBER() OVER(ORDER BY Id desc ) AS RowIndex FROM [tasks_qz] WHERE (( [IsDeleted] <> @IsDeleted0 ) AND (( [Name] IS NOT NULL ) AND ([Name] like '%'+@MethodConst2+'%') ))) T WHERE RowIndex BETWEEN 1 AND 50 +-------------------------------- +2022/5/29 23:52:15| +【SQL参数】: +【SQL语句】: SELECT COUNT(1) FROM (SELECT [Txt1],[Txt2],[Flo1],[Flo2],[UnitCode],[UnitName],[UnitHelpCode],[Sort],[Remark],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted] FROM [Test] WHERE ( 1 = 1 ) ) CountTable +-------------------------------- +2022/5/29 23:52:15| +【SQL参数】: +【SQL语句】:SELECT * FROM (SELECT [Txt1],[Txt2],[Flo1],[Flo2],[UnitCode],[UnitName],[UnitHelpCode],[Sort],[Remark],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted],ROW_NUMBER() OVER(ORDER BY Id desc) AS RowIndex FROM [Test] WHERE ( 1 = 1 ) ) T WHERE RowIndex BETWEEN 1 AND 20 +-------------------------------- +2022/5/29 23:52:20| +【SQL参数】: +【SQL语句】: SELECT COUNT(1) FROM (SELECT [Txt1],[Txt2],[Flo1],[Flo2],[UnitCode],[UnitName],[UnitHelpCode],[Sort],[Remark],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted] FROM [Test] WHERE ( 1 = 1 ) ) CountTable +-------------------------------- +2022/5/29 23:52:20| +【SQL参数】: +【SQL语句】:SELECT * FROM (SELECT [Txt1],[Txt2],[Flo1],[Flo2],[UnitCode],[UnitName],[UnitHelpCode],[Sort],[Remark],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted],ROW_NUMBER() OVER(ORDER BY Id desc) AS RowIndex FROM [Test] WHERE ( 1 = 1 ) ) T WHERE RowIndex BETWEEN 1 AND 20 +-------------------------------- +2022/5/29 23:52:22| +【SQL参数】: +【SQL语句】: SELECT COUNT(1) FROM (SELECT [Txt1],[Txt2],[Flo1],[Flo2],[UnitCode],[UnitName],[UnitHelpCode],[Sort],[Remark],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted] FROM [Test] WHERE ( 1 = 1 ) ) CountTable +-------------------------------- +2022/5/29 23:52:22| +【SQL参数】: +【SQL语句】:SELECT * FROM (SELECT [Txt1],[Txt2],[Flo1],[Flo2],[UnitCode],[UnitName],[UnitHelpCode],[Sort],[Remark],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted],ROW_NUMBER() OVER(ORDER BY Id desc) AS RowIndex FROM [Test] WHERE ( 1 = 1 ) ) T WHERE RowIndex BETWEEN 1 AND 20 +-------------------------------- +2022/5/29 23:57:55| +【SQL参数】: +【SQL语句】: SELECT COUNT(1) FROM (SELECT [Txt1],[Txt2],[Flo1],[Flo2],[UnitCode],[UnitName],[UnitHelpCode],[Sort],[Remark],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted] FROM [Test] WHERE ( 1 = 1 ) ) CountTable +-------------------------------- +2022/5/29 23:57:55| +【SQL参数】: +【SQL语句】:SELECT * FROM (SELECT [Txt1],[Txt2],[Flo1],[Flo2],[UnitCode],[UnitName],[UnitHelpCode],[Sort],[Remark],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted],ROW_NUMBER() OVER(ORDER BY Id desc) AS RowIndex FROM [Test] WHERE ( 1 = 1 ) ) T WHERE RowIndex BETWEEN 1 AND 20 +-------------------------------- +2022/5/30 21:19:10| +【SQL参数】: +【SQL语句】: SELECT COUNT(1) FROM (SELECT [Txt1],[Txt2],[Flo1],[Flo2],[UnitCode],[UnitName],[UnitHelpCode],[Sort],[Remark],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted] FROM [Test] WHERE ( 1 = 1 ) ) CountTable +-------------------------------- +2022/5/30 21:19:10| +【SQL参数】: +【SQL语句】:SELECT * FROM (SELECT [Txt1],[Txt2],[Flo1],[Flo2],[UnitCode],[UnitName],[UnitHelpCode],[Sort],[Remark],[Id],[CreateId],[CreateBy],[CreateTime],[ModifyId],[ModifyBy],[ModifyTime],[IsDeleted],ROW_NUMBER() OVER(ORDER BY Id desc) AS RowIndex FROM [Test] WHERE ( 1 = 1 ) ) T WHERE RowIndex BETWEEN 1 AND 10 +-------------------------------- +2022/6/1 11:35:14| +【SQL参数】: +【SQL语句】:SELECT s.Name,Convert(varchar(max),tbp.value) as Description + FROM sysobjects s + LEFT JOIN sys.extended_properties as tbp ON s.id=tbp.major_id and tbp.minor_id=0 AND (tbp.Name='MS_Description' OR tbp.Name is null) WHERE s.xtype IN('U') +-------------------------------- +2022/6/1 11:35:14| +【SQL参数】: +【SQL语句】:CREATE TABLE [eqmt_base]( +[id] bigint NOT NULL IDENTITY(1,1), +[gmt_create] datetime NULL , +[gmt_modified] datetime NULL , +[eqmt_id] int NULL , +[eqmt_name] varchar(255) NULL , +[product] varchar(255) NULL , +[strand_speed] int NULL ) +-------------------------------- +2022/6/1 11:35:14| +【SQL参数】: +【SQL语句】:ALTER TABLE [eqmt_base] ADD CONSTRAINT PK_eqmt_base_id PRIMARY KEY([id]) +-------------------------------- +2022/6/1 11:35:14| +【SQL参数】: +【SQL语句】:SELECT A.name AS table_name, B.name AS column_name, C.value AS column_description FROM sys.tables A LEFT JOIN sys.extended_properties C ON C.major_id = A.object_id LEFT JOIN sys.columns B ON B.object_id = A.object_id AND C.minor_id = B.column_id INNER JOIN sys.schemas SC ON SC.schema_id = A.schema_id AND SC.name = 'dbo' WHERE A.name = 'eqmt_base' and b.name = 'id' +-------------------------------- +2022/6/1 11:35:14| +【SQL参数】: +【SQL语句】:EXECUTE sp_addextendedproperty N'MS_Description', '自增主键', N'user', N'dbo', N'table', N'eqmt_base', N'column', N'id' +-------------------------------- +2022/6/1 11:35:15| +【SQL参数】: +【SQL语句】:SELECT A.name AS table_name, B.name AS column_name, C.value AS column_description FROM sys.tables A LEFT JOIN sys.extended_properties C ON C.major_id = A.object_id LEFT JOIN sys.columns B ON B.object_id = A.object_id AND C.minor_id = B.column_id INNER JOIN sys.schemas SC ON SC.schema_id = A.schema_id AND SC.name = 'dbo' WHERE A.name = 'eqmt_base' and b.name = 'gmt_create' +-------------------------------- +2022/6/1 11:35:15| +【SQL参数】: +【SQL语句】:EXECUTE sp_addextendedproperty N'MS_Description', '创建时间', N'user', N'dbo', N'table', N'eqmt_base', N'column', N'gmt_create' +-------------------------------- +2022/6/1 11:35:15| +【SQL参数】: +【SQL语句】:SELECT A.name AS table_name, B.name AS column_name, C.value AS column_description FROM sys.tables A LEFT JOIN sys.extended_properties C ON C.major_id = A.object_id LEFT JOIN sys.columns B ON B.object_id = A.object_id AND C.minor_id = B.column_id INNER JOIN sys.schemas SC ON SC.schema_id = A.schema_id AND SC.name = 'dbo' WHERE A.name = 'eqmt_base' and b.name = 'gmt_modified' +-------------------------------- +2022/6/1 11:35:15| +【SQL参数】: +【SQL语句】:EXECUTE sp_addextendedproperty N'MS_Description', '修改时间', N'user', N'dbo', N'table', N'eqmt_base', N'column', N'gmt_modified' +-------------------------------- +2022/6/1 11:35:15| +【SQL参数】: +【SQL语句】:SELECT A.name AS table_name, B.name AS column_name, C.value AS column_description FROM sys.tables A LEFT JOIN sys.extended_properties C ON C.major_id = A.object_id LEFT JOIN sys.columns B ON B.object_id = A.object_id AND C.minor_id = B.column_id INNER JOIN sys.schemas SC ON SC.schema_id = A.schema_id AND SC.name = 'dbo' WHERE A.name = 'eqmt_base' and b.name = 'eqmt_id' +-------------------------------- +2022/6/1 11:35:15| +【SQL参数】: +【SQL语句】:EXECUTE sp_addextendedproperty N'MS_Description', '设备ID', N'user', N'dbo', N'table', N'eqmt_base', N'column', N'eqmt_id' +-------------------------------- +2022/6/1 11:35:15| +【SQL参数】: +【SQL语句】:SELECT A.name AS table_name, B.name AS column_name, C.value AS column_description FROM sys.tables A LEFT JOIN sys.extended_properties C ON C.major_id = A.object_id LEFT JOIN sys.columns B ON B.object_id = A.object_id AND C.minor_id = B.column_id INNER JOIN sys.schemas SC ON SC.schema_id = A.schema_id AND SC.name = 'dbo' WHERE A.name = 'eqmt_base' and b.name = 'eqmt_name' +-------------------------------- +2022/6/1 11:35:15| +【SQL参数】: +【SQL语句】:EXECUTE sp_addextendedproperty N'MS_Description', '设备名称', N'user', N'dbo', N'table', N'eqmt_base', N'column', N'eqmt_name' +-------------------------------- +2022/6/1 11:35:15| +【SQL参数】: +【SQL语句】:SELECT A.name AS table_name, B.name AS column_name, C.value AS column_description FROM sys.tables A LEFT JOIN sys.extended_properties C ON C.major_id = A.object_id LEFT JOIN sys.columns B ON B.object_id = A.object_id AND C.minor_id = B.column_id INNER JOIN sys.schemas SC ON SC.schema_id = A.schema_id AND SC.name = 'dbo' WHERE A.name = 'eqmt_base' and b.name = 'product' +-------------------------------- +2022/6/1 11:35:15| +【SQL参数】: +【SQL语句】:EXECUTE sp_addextendedproperty N'MS_Description', '产品名称', N'user', N'dbo', N'table', N'eqmt_base', N'column', N'product' +-------------------------------- +2022/6/1 11:35:15| +【SQL参数】: +【SQL语句】:SELECT A.name AS table_name, B.name AS column_name, C.value AS column_description FROM sys.tables A LEFT JOIN sys.extended_properties C ON C.major_id = A.object_id LEFT JOIN sys.columns B ON B.object_id = A.object_id AND C.minor_id = B.column_id INNER JOIN sys.schemas SC ON SC.schema_id = A.schema_id AND SC.name = 'dbo' WHERE A.name = 'eqmt_base' and b.name = 'strand_speed' +-------------------------------- +2022/6/1 11:35:15| +【SQL参数】: +【SQL语句】:EXECUTE sp_addextendedproperty N'MS_Description', '性能基数', N'user', N'dbo', N'table', N'eqmt_base', N'column', N'strand_speed' +-------------------------------- +2022/6/1 11:35:15| +【SQL参数】: +【SQL语句】:SELECT C.class_desc + FROM sys.tables A + LEFT JOIN sys.extended_properties C ON C.major_id = A.object_id + INNER JOIN sys.schemas SC ON SC.schema_id=A.schema_id AND SC.name='dbo' + WHERE A.name = 'eqmt_base' AND minor_id=0 +-------------------------------- +2022/6/1 11:35:15| +【SQL参数】: +【SQL语句】:EXECUTE sp_addextendedproperty N'MS_Description', '基础信息', N'user', N'dbo', N'table', N'eqmt_base', NULL, NULL +-------------------------------- +2022/6/1 11:35:15| +【SQL参数】: +【SQL语句】:SELECT sysobjects.name AS TableName, + syscolumns.Id AS TableId, + syscolumns.name AS DbColumnName, + systypes.name AS DataType, + COLUMNPROPERTY(syscolumns.id,syscolumns.name,'PRECISION') as [length], + isnull(COLUMNPROPERTY(syscolumns.id,syscolumns.name,'Scale'),0) as Scale, + isnull(COLUMNPROPERTY(syscolumns.id,syscolumns.name,'Scale'),0) as DecimalDigits, + sys.extended_properties.[value] AS [ColumnDescription], + syscomments.text AS DefaultValue, + syscolumns.isnullable AS IsNullable, + columnproperty(syscolumns.id,syscolumns.name,'IsIdentity')as IsIdentity, + (CASE + WHEN EXISTS + ( + select 1 + from sysindexes i + join sysindexkeys k on i.id = k.id and i.indid = k.indid + join sysobjects o on i.id = o.id + join syscolumns c on i.id=c.id and k.colid = c.colid + where o.xtype = 'U' + and exists(select 1 from sysobjects where xtype = 'PK' and name = i.name) + and o.name=sysobjects.name and c.name=syscolumns.name + ) THEN 1 + ELSE 0 + END) AS IsPrimaryKey + FROM syscolumns + INNER JOIN systypes ON syscolumns.xtype = systypes.xtype + LEFT JOIN sysobjects ON syscolumns.id = sysobjects.id + LEFT OUTER JOIN sys.extended_properties ON (sys.extended_properties.minor_id = syscolumns.colid + AND sys.extended_properties.major_id = syscolumns.id) + LEFT OUTER JOIN syscomments ON syscolumns.cdefault = syscomments.id + WHERE syscolumns.id IN + (SELECT id + FROM sysobjects + WHERE upper(xtype) IN('U', + 'V') ) + AND (systypes.name <> 'sysname') + AND sysobjects.name='eqmt_base' + AND systypes.name<>'geometry' + AND systypes.name<>'geography' + ORDER BY syscolumns.colid +-------------------------------- +2022/6/1 11:43:31| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/1 11:43:31| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_base' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/1 11:43:31| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_base` ADD `eqmt_name` varchar(255) DEFAULT NULL +-------------------------------- +2022/6/1 11:43:32| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_base` ADD `strand_speed` int DEFAULT NULL +-------------------------------- +2022/6/1 11:43:32| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_base` DROP COLUMN `line_name` +-------------------------------- +2022/6/1 11:43:32| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `eqmt_id` `eqmt_id` int DEFAULT NULL +-------------------------------- +2022/6/1 11:43:32| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `product` `product` varchar(255) DEFAULT NULL +-------------------------------- +2022/6/1 11:43:32| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_base` COMMENT='基础信息'; +-------------------------------- +2022/6/1 11:43:32| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/1 11:43:32| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/1 11:43:32| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/1 11:43:32| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备ID' +-------------------------------- +2022/6/1 11:43:32| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `eqmt_name` `eqmt_name` varchar(255) DEFAULT NULL COMMENT '设备名称' +-------------------------------- +2022/6/1 11:43:32| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `product` `product` varchar(255) DEFAULT NULL COMMENT '产品名称' +-------------------------------- +2022/6/1 11:43:32| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `strand_speed` `strand_speed` int DEFAULT NULL COMMENT '性能基数' +-------------------------------- +2022/6/1 11:43:32| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_base' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/1 11:44:37| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/1 11:44:37| +【SQL参数】: +【SQL语句】:CREATE TABLE `eqmt_collect_except`( +`id` bigint NOT NULL AUTO_INCREMENT, +`gmt_create` datetime DEFAULT NULL , +`gmt_modified` datetime DEFAULT NULL , +`collect_id` varchar(255) DEFAULT NULL , +`eqmt_id` int DEFAULT NULL , +`registor_address` varchar(255) DEFAULT NULL , Primary key(`id`)) +-------------------------------- +2022/6/1 11:44:37| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_except` COMMENT='异常表 (最后一次收集)'; +-------------------------------- +2022/6/1 11:44:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/1 11:44:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/1 11:44:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/1 11:44:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `collect_id` `collect_id` varchar(255) DEFAULT NULL COMMENT '收集唯一ID' +-------------------------------- +2022/6/1 11:44:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备id' +-------------------------------- +2022/6/1 11:44:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `registor_address` `registor_address` varchar(255) DEFAULT NULL COMMENT '寄存器地址(发生异常)' +-------------------------------- +2022/6/1 11:44:37| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_except' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/1 11:47:04| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/1 11:47:04| +【SQL参数】: +【SQL语句】:CREATE TABLE `eqmt_collect_except_his`( +`id` bigint NOT NULL AUTO_INCREMENT, +`gmt_create` datetime DEFAULT NULL , +`gmt_modified` datetime DEFAULT NULL , +`collect_id` varchar(255) DEFAULT NULL , +`eqmt_id` int DEFAULT NULL , +`registor_address` varchar(255) DEFAULT NULL , Primary key(`id`)) +-------------------------------- +2022/6/1 11:47:04| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_except_his` COMMENT='异常表 履历表'; +-------------------------------- +2022/6/1 11:47:04| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_his` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/1 11:47:04| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_his` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/1 11:47:04| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_his` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/1 11:47:04| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_his` change column `collect_id` `collect_id` varchar(255) DEFAULT NULL COMMENT '收集唯一ID' +-------------------------------- +2022/6/1 11:47:04| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_his` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备id' +-------------------------------- +2022/6/1 11:47:04| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_his` change column `registor_address` `registor_address` varchar(255) DEFAULT NULL COMMENT '寄存器地址(发生异常)' +-------------------------------- +2022/6/1 11:47:04| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_except_his' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/1 11:48:26| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/1 11:48:26| +【SQL参数】: +【SQL语句】:CREATE TABLE `eqmt_collect_except_master`( +`id` bigint NOT NULL AUTO_INCREMENT, +`gmt_create` datetime DEFAULT NULL , +`gmt_modified` datetime DEFAULT NULL , +`collect_id` varchar(255) DEFAULT NULL , +`eqmt_id` int DEFAULT NULL , +`except_type` int DEFAULT NULL , +`except_type_name` varchar(255) DEFAULT NULL , +`registor_address` varchar(255) DEFAULT NULL , +`except_message` varchar(255) DEFAULT NULL , Primary key(`id`)) +-------------------------------- +2022/6/1 11:48:26| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_except_master` COMMENT='异常表 基础数据'; +-------------------------------- +2022/6/1 11:48:26| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_master` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/1 11:48:26| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_master` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/1 11:48:26| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_master` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/1 11:48:26| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_master` change column `collect_id` `collect_id` varchar(255) DEFAULT NULL COMMENT '收集唯一ID' +-------------------------------- +2022/6/1 11:48:26| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_master` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备id' +-------------------------------- +2022/6/1 11:48:26| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_master` change column `except_type` `except_type` int DEFAULT NULL COMMENT '报警类型 1:ON报警停机 2:ON报警不停机' +-------------------------------- +2022/6/1 11:48:26| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_master` change column `except_type_name` `except_type_name` varchar(255) DEFAULT NULL COMMENT '报警类型名称 1:ON报警停机 2:ON报警不停机' +-------------------------------- +2022/6/1 11:48:26| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_master` change column `registor_address` `registor_address` varchar(255) DEFAULT NULL COMMENT '寄存器地址' +-------------------------------- +2022/6/1 11:48:26| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_master` change column `except_message` `except_message` varchar(255) DEFAULT NULL COMMENT '报警内容' +-------------------------------- +2022/6/1 11:48:26| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_except_master' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/1 14:44:31| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/1 14:44:31| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_base' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/1 14:44:31| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_base` ADD `strand_speed` int DEFAULT NULL +-------------------------------- +2022/6/1 14:44:31| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `eqmt_id` `eqmt_id` int DEFAULT NULL +-------------------------------- +2022/6/1 14:44:31| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `product` `product` varchar(255) DEFAULT NULL +-------------------------------- +2022/6/1 14:44:31| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_base` COMMENT='基础信息'; +-------------------------------- +2022/6/1 14:44:31| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/1 14:44:31| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/1 14:44:31| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/1 14:44:31| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备ID' +-------------------------------- +2022/6/1 14:44:31| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `line_name` `line_name` varchar(255) DEFAULT NULL COMMENT '设备名称' +-------------------------------- +2022/6/1 14:44:31| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `product` `product` varchar(255) DEFAULT NULL COMMENT '产品名称' +-------------------------------- +2022/6/1 14:44:31| +【SQL参数】: +【SQL语句】:alter table `eqmt_base` change column `strand_speed` `strand_speed` int DEFAULT NULL COMMENT '性能基数' +-------------------------------- +2022/6/1 14:44:31| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_base' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/1 14:50:19| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/1 14:50:19| +【SQL参数】: +【SQL语句】:CREATE TABLE `eqmt_product_spec`( +`id` bigint NOT NULL AUTO_INCREMENT, +`gmt_create` datetime DEFAULT NULL , +`gmt_modified` datetime DEFAULT NULL , +`eqmt_id` int DEFAULT NULL , +`product_type` int DEFAULT NULL , +`product_type_name` varchar(255) DEFAULT NULL , Primary key(`id`)) +-------------------------------- +2022/6/1 14:50:19| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_product_spec` COMMENT='产品型号'; +-------------------------------- +2022/6/1 14:50:19| +【SQL参数】: +【SQL语句】:alter table `eqmt_product_spec` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/1 14:50:19| +【SQL参数】: +【SQL语句】:alter table `eqmt_product_spec` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/1 14:50:19| +【SQL参数】: +【SQL语句】:alter table `eqmt_product_spec` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/1 14:50:19| +【SQL参数】: +【SQL语句】:alter table `eqmt_product_spec` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备ID' +-------------------------------- +2022/6/1 14:50:19| +【SQL参数】: +【SQL语句】:alter table `eqmt_product_spec` change column `product_type` `product_type` int DEFAULT NULL COMMENT '设备名称' +-------------------------------- +2022/6/1 14:50:19| +【SQL参数】: +【SQL语句】:alter table `eqmt_product_spec` change column `product_type_name` `product_type_name` varchar(255) DEFAULT NULL COMMENT '型号名称' +-------------------------------- +2022/6/1 14:50:19| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_product_spec' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/1 14:53:00| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/1 14:53:00| +【SQL参数】: +【SQL语句】:CREATE TABLE `eqmt_product_spec`( +`id` bigint NOT NULL AUTO_INCREMENT, +`gmt_create` datetime DEFAULT NULL , +`gmt_modified` datetime DEFAULT NULL , +`eqmt_id` int DEFAULT NULL , +`product_type` varchar(255) DEFAULT NULL , +`product_type_name` varchar(255) DEFAULT NULL , Primary key(`id`)) +-------------------------------- +2022/6/1 14:53:01| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_product_spec` COMMENT='产品型号'; +-------------------------------- +2022/6/1 14:53:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_product_spec` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/1 14:53:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_product_spec` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/1 14:53:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_product_spec` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/1 14:53:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_product_spec` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备ID' +-------------------------------- +2022/6/1 14:53:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_product_spec` change column `product_type` `product_type` varchar(255) DEFAULT NULL COMMENT '型号' +-------------------------------- +2022/6/1 14:53:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_product_spec` change column `product_type_name` `product_type_name` varchar(255) DEFAULT NULL COMMENT '型号名称' +-------------------------------- +2022/6/1 14:53:01| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_product_spec' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/1 16:18:29| +【SQL参数】:@gmt_create:2022/6/1 16:17:44 +@gmt_modified: +@collect_id:55860039-64ca-4025-9d32-f2824478127b +@eqmt_id:1 +@l271:0 +@l272:1 +@l273:0 +@d60:320 +@d5030:0 +@d5032:39062909 +@d10398:17164 +@d10448:14448 +@d10650:84.176186 +@d10700:5138 +@d10750:6991 +@m88:1 +@d10240:6703195 +@d10250:5689344 +@d10260:54743662 +@d10270:10419164 +@d900:391 +@d901:393 +@d902:389 +@d903:224 +@d904:228 +@d905:225 +@d906:391 +@d907:226 +@d908:176 +@d909:185 +@d910:178 +@d911:0 +@d950:47834 +@d952:52919 +@d954:44494 +@d10900:313 +@d10950:234 +@d10970:391 +@m160:0 +@m161:0 +@m162:0 +@m163:0 +@m164:0 +@m165:0 +@m166:0 +@m167:0 +@m168:0 +@m169:0 +@m170:0 +@m171:0 +@m172:0 +@m173:0 +@m174:0 +@m175:0 +@m176:0 +@m177:0 +@m178:0 +@m179:0 +@m180:0 +@m181:0 +@m182:0 +@m183:0 +@m184:0 +@m185:0 +@m186:0 +@m187:0 +@m188:0 +@m190:0 +@m70:0 +@m700:0 +@m701:0 +@m702:0 +@m703:0 +@m704:0 +@m705:0 +@m706:0 +@m707:0 +@m708:0 +@m709:0 +@m710:0 +@m711:0 +@m712:0 +@m713:0 +@m714:0 +@m728:0 +@m715:0 +@m716:0 +@m717:0 +@m718:0 +@m719:0 +@m720:0 +@m721:0 +@m722:0 +@m723:0 +@m724:0 +@m725:0 +@m736:0 +@m737:0 +@m738:0 +@m739:0 +@m740:0 +@m741:0 +@m742:0 +@m743:0 +@m744:0 +@m745:0 +@m108:0 +@m110:0 +@m109:0 +@m111:0 +@m112:0 +@m113:0 +@m114:0 +@m115:0 +@m116:0 +@m117:0 +@m118:0 +@m119:0 +@m120:0 +@m121:0 +@m50:0 +@m380:0 +@m381:0 +@m382:0 +@m383:0 +@m384:0 +@m385:0 +@m386:0 +@m387:0 +@m388:0 +@m389:0 +@m390:0 +@m391:0 +@m392:0 +@m393:0 +@m394:0 +@b00010:0 +@b00011:0 +@b00012:0 +@b00013:0 +@b00014:0 +@b00015:0 +@b00016:0 +@b00017:0 +@b00018:0 +@b00019:0 +@b0001a:0 +@b0001b:0 +@b0001c:0 +@b0001d:0 +@b0001e:0 +@b0001f:0 +@b00020:0 +@b00021:0 +@b00022:0 +@b00023:0 +@b00024:0 +@b00025:0 +@b00026:0 +@b00027:0 +@b00028:0 +@b00029:0 +@b0002a:0 +@b0002b:0 +@b0002c:0 +@b0002d:0 +@b0002e:0 +@b0002f:0 +@b00510:0 +@b00511:0 +@b00512:0 +@b00513:0 +@b00514:0 +@b00515:0 +@b00516:0 +@b00517:0 +@b00518:0 +@b00519:0 +@b0051a:0 +@b0051b:0 +@b0051c:0 +@b0051d:0 +@b0051e:0 +@b0051f:0 +@b00520:0 +@b00521:0 +@b00522:0 +@b00523:0 +@b00524:0 +@b00525:0 +@b00526:0 +@b00527:0 +@b00528:0 +@b00529:0 +@b0052a:0 +@b0052b:0 +@b0052c:0 +@b0052d:0 +@b0052e:0 +@b0052f:0 +@b00a10:0 +@b00a11:0 +@b00a12:0 +@b00a13:0 +@b00a14:0 +@b00a15:0 +@b00a16:0 +@b00a17:0 +@b00a18:0 +@b00a19:0 +@b00a1a:0 +@b00a1b:0 +@b00a1c:0 +@b00a1d:0 +@b00a1e:0 +@b00a1f:0 +@b00a20:0 +@b00a21:0 +@b00a22:0 +@b00a23:0 +@b00a24:0 +@b00a25:0 +@b00a26:0 +@b00a27:0 +@b00a28:0 +@b00a29:0 +@b00a2a:0 +@b00a2b:0 +@b00a2c:0 +@b00a2d:0 +@b00a2e:0 +@b00a2f:0 +@b01810:0 +@b01811:0 +@b01812:0 +@b01813:0 +@b01814:0 +@b01815:0 +@b01816:0 +@b01817:0 +@b01818:0 +@b01819:0 +@l100:0 +@l101:0 +@l102:0 +@l103:0 +@l104:0 +@l105:0 +@l106:0 +@l107:0 +@l108:0 +@l109:0 +@l110:0 +@l111:0 +@l112:0 +@l113:0 +@l114:0 +@l115:0 +@l116:0 +@l117:0 +@m800:0 +@m801:0 +@m802:0 +@m803:0 +@m804:0 +@m805:0 +@m806:0 +@m807:0 +@m808:0 +@m809:0 +@m810:0 +@m811:0 +@m812:0 +@m813:0 +@m814:0 +@m820:0 +@m821:0 +@m822:0 +@m823:0 +@m824:0 +@m825:0 +@m826:0 +@m827:0 +@m828:0 +@m829:0 +@m830:0 +@m831:0 +@m832:0 +@m834:0 +@m860:0 +@m861:0 +@m862:0 +@m863:0 +@m864:0 +@m865:0 +@m866:0 +@m867:0 +@m868:0 +@m869:0 +@m870:0 +@m871:0 +@m872:0 +@m874:0 +@sm52:0 +@b0000f:0 +@b0050f:0 +@b00a0f:0 + +【SQL语句】:INSERT INTO `eqmt_collect_data13` + (`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`l271`,`l272`,`l273`,`d60`,`d5030`,`d5032`,`d10398`,`d10448`,`d10650`,`d10700`,`d10750`,`m88`,`d10240`,`d10250`,`d10260`,`d10270`,`d900`,`d901`,`d902`,`d903`,`d904`,`d905`,`d906`,`d907`,`d908`,`d909`,`d910`,`d911`,`d950`,`d952`,`d954`,`d10900`,`d10950`,`d10970`,`m160`,`m161`,`m162`,`m163`,`m164`,`m165`,`m166`,`m167`,`m168`,`m169`,`m170`,`m171`,`m172`,`m173`,`m174`,`m175`,`m176`,`m177`,`m178`,`m179`,`m180`,`m181`,`m182`,`m183`,`m184`,`m185`,`m186`,`m187`,`m188`,`m190`,`m70`,`m700`,`m701`,`m702`,`m703`,`m704`,`m705`,`m706`,`m707`,`m708`,`m709`,`m710`,`m711`,`m712`,`m713`,`m714`,`m728`,`m715`,`m716`,`m717`,`m718`,`m719`,`m720`,`m721`,`m722`,`m723`,`m724`,`m725`,`m736`,`m737`,`m738`,`m739`,`m740`,`m741`,`m742`,`m743`,`m744`,`m745`,`m108`,`m110`,`m109`,`m111`,`m112`,`m113`,`m114`,`m115`,`m116`,`m117`,`m118`,`m119`,`m120`,`m121`,`m50`,`m380`,`m381`,`m382`,`m383`,`m384`,`m385`,`m386`,`m387`,`m388`,`m389`,`m390`,`m391`,`m392`,`m393`,`m394`,`b00010`,`b00011`,`b00012`,`b00013`,`b00014`,`b00015`,`b00016`,`b00017`,`b00018`,`b00019`,`b0001a`,`b0001b`,`b0001c`,`b0001d`,`b0001e`,`b0001f`,`b00020`,`b00021`,`b00022`,`b00023`,`b00024`,`b00025`,`b00026`,`b00027`,`b00028`,`b00029`,`b0002a`,`b0002b`,`b0002c`,`b0002d`,`b0002e`,`b0002f`,`b00510`,`b00511`,`b00512`,`b00513`,`b00514`,`b00515`,`b00516`,`b00517`,`b00518`,`b00519`,`b0051a`,`b0051b`,`b0051c`,`b0051d`,`b0051e`,`b0051f`,`b00520`,`b00521`,`b00522`,`b00523`,`b00524`,`b00525`,`b00526`,`b00527`,`b00528`,`b00529`,`b0052a`,`b0052b`,`b0052c`,`b0052d`,`b0052e`,`b0052f`,`b00a10`,`b00a11`,`b00a12`,`b00a13`,`b00a14`,`b00a15`,`b00a16`,`b00a17`,`b00a18`,`b00a19`,`b00a1a`,`b00a1b`,`b00a1c`,`b00a1d`,`b00a1e`,`b00a1f`,`b00a20`,`b00a21`,`b00a22`,`b00a23`,`b00a24`,`b00a25`,`b00a26`,`b00a27`,`b00a28`,`b00a29`,`b00a2a`,`b00a2b`,`b00a2c`,`b00a2d`,`b00a2e`,`b00a2f`,`b01810`,`b01811`,`b01812`,`b01813`,`b01814`,`b01815`,`b01816`,`b01817`,`b01818`,`b01819`,`l100`,`l101`,`l102`,`l103`,`l104`,`l105`,`l106`,`l107`,`l108`,`l109`,`l110`,`l111`,`l112`,`l113`,`l114`,`l115`,`l116`,`l117`,`m800`,`m801`,`m802`,`m803`,`m804`,`m805`,`m806`,`m807`,`m808`,`m809`,`m810`,`m811`,`m812`,`m813`,`m814`,`m820`,`m821`,`m822`,`m823`,`m824`,`m825`,`m826`,`m827`,`m828`,`m829`,`m830`,`m831`,`m832`,`m834`,`m860`,`m861`,`m862`,`m863`,`m864`,`m865`,`m866`,`m867`,`m868`,`m869`,`m870`,`m871`,`m872`,`m874`,`sm52`,`b0000f`,`b0050f`,`b00a0f`) + VALUES + (@gmt_create,@gmt_modified,@collect_id,@eqmt_id,@l271,@l272,@l273,@d60,@d5030,@d5032,@d10398,@d10448,@d10650,@d10700,@d10750,@m88,@d10240,@d10250,@d10260,@d10270,@d900,@d901,@d902,@d903,@d904,@d905,@d906,@d907,@d908,@d909,@d910,@d911,@d950,@d952,@d954,@d10900,@d10950,@d10970,@m160,@m161,@m162,@m163,@m164,@m165,@m166,@m167,@m168,@m169,@m170,@m171,@m172,@m173,@m174,@m175,@m176,@m177,@m178,@m179,@m180,@m181,@m182,@m183,@m184,@m185,@m186,@m187,@m188,@m190,@m70,@m700,@m701,@m702,@m703,@m704,@m705,@m706,@m707,@m708,@m709,@m710,@m711,@m712,@m713,@m714,@m728,@m715,@m716,@m717,@m718,@m719,@m720,@m721,@m722,@m723,@m724,@m725,@m736,@m737,@m738,@m739,@m740,@m741,@m742,@m743,@m744,@m745,@m108,@m110,@m109,@m111,@m112,@m113,@m114,@m115,@m116,@m117,@m118,@m119,@m120,@m121,@m50,@m380,@m381,@m382,@m383,@m384,@m385,@m386,@m387,@m388,@m389,@m390,@m391,@m392,@m393,@m394,@b00010,@b00011,@b00012,@b00013,@b00014,@b00015,@b00016,@b00017,@b00018,@b00019,@b0001a,@b0001b,@b0001c,@b0001d,@b0001e,@b0001f,@b00020,@b00021,@b00022,@b00023,@b00024,@b00025,@b00026,@b00027,@b00028,@b00029,@b0002a,@b0002b,@b0002c,@b0002d,@b0002e,@b0002f,@b00510,@b00511,@b00512,@b00513,@b00514,@b00515,@b00516,@b00517,@b00518,@b00519,@b0051a,@b0051b,@b0051c,@b0051d,@b0051e,@b0051f,@b00520,@b00521,@b00522,@b00523,@b00524,@b00525,@b00526,@b00527,@b00528,@b00529,@b0052a,@b0052b,@b0052c,@b0052d,@b0052e,@b0052f,@b00a10,@b00a11,@b00a12,@b00a13,@b00a14,@b00a15,@b00a16,@b00a17,@b00a18,@b00a19,@b00a1a,@b00a1b,@b00a1c,@b00a1d,@b00a1e,@b00a1f,@b00a20,@b00a21,@b00a22,@b00a23,@b00a24,@b00a25,@b00a26,@b00a27,@b00a28,@b00a29,@b00a2a,@b00a2b,@b00a2c,@b00a2d,@b00a2e,@b00a2f,@b01810,@b01811,@b01812,@b01813,@b01814,@b01815,@b01816,@b01817,@b01818,@b01819,@l100,@l101,@l102,@l103,@l104,@l105,@l106,@l107,@l108,@l109,@l110,@l111,@l112,@l113,@l114,@l115,@l116,@l117,@m800,@m801,@m802,@m803,@m804,@m805,@m806,@m807,@m808,@m809,@m810,@m811,@m812,@m813,@m814,@m820,@m821,@m822,@m823,@m824,@m825,@m826,@m827,@m828,@m829,@m830,@m831,@m832,@m834,@m860,@m861,@m862,@m863,@m864,@m865,@m866,@m867,@m868,@m869,@m870,@m871,@m872,@m874,@sm52,@b0000f,@b0050f,@b00a0f) ; +-------------------------------- +2022/6/1 16:18:30| +【SQL参数】:@gmt_create:2022/6/1 16:17:53 +@gmt_modified: +@collect_id:55860039-64ca-4025-9d32-f2824478127b +@eqmt_id:1 +@product_type:2 +@speed:320 +@total_product_qty:39062909 +@intraday_product_qty:17164 +@intraday_ok_qty:14448 +@intraday_ng_qty:2716 +@intraday_yield_rate:84.176186 +@intraday_eqmt_run_time:12129 +@intraday_eqmt_work_time:5138 +@intraday_eqmt_stop_time:6991 +@intraday_eqmt_stop_times:0 +@eqmt_status:1 +@eqmt_except_flag:1 +@eqmt_alarm_flag:1 + +【SQL语句】:INSERT INTO `eqmt_collect_pub_data` + (`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`product_type`,`speed`,`total_product_qty`,`intraday_product_qty`,`intraday_ok_qty`,`intraday_ng_qty`,`intraday_yield_rate`,`intraday_eqmt_run_time`,`intraday_eqmt_work_time`,`intraday_eqmt_stop_time`,`intraday_eqmt_stop_times`,`eqmt_status`,`eqmt_except_flag`,`eqmt_alarm_flag`) + VALUES + (@gmt_create,@gmt_modified,@collect_id,@eqmt_id,@product_type,@speed,@total_product_qty,@intraday_product_qty,@intraday_ok_qty,@intraday_ng_qty,@intraday_yield_rate,@intraday_eqmt_run_time,@intraday_eqmt_work_time,@intraday_eqmt_stop_time,@intraday_eqmt_stop_times,@eqmt_status,@eqmt_except_flag,@eqmt_alarm_flag) ; +-------------------------------- +2022/6/1 16:18:31| +【SQL参数】:@collect_id1:55860039-64ca-4025-9d32-f2824478127b +@registor_address2:M160 +@collect_id3:55860039-64ca-4025-9d32-f2824478127b +@registor_address4:M161 +@collect_id5:55860039-64ca-4025-9d32-f2824478127b +@registor_address6:M162 +@collect_id7:55860039-64ca-4025-9d32-f2824478127b +@registor_address8:M163 +@collect_id9:55860039-64ca-4025-9d32-f2824478127b +@registor_address10:M164 +@collect_id11:55860039-64ca-4025-9d32-f2824478127b +@registor_address12:M165 +@collect_id13:55860039-64ca-4025-9d32-f2824478127b +@registor_address14:M166 +@collect_id15:55860039-64ca-4025-9d32-f2824478127b +@registor_address16:M167 +@collect_id17:55860039-64ca-4025-9d32-f2824478127b +@registor_address18:M168 +@collect_id19:55860039-64ca-4025-9d32-f2824478127b +@registor_address20:M169 +@collect_id21:55860039-64ca-4025-9d32-f2824478127b +@registor_address22:M170 +@collect_id23:55860039-64ca-4025-9d32-f2824478127b +@registor_address24:M171 +@collect_id25:55860039-64ca-4025-9d32-f2824478127b +@registor_address26:M172 +@collect_id27:55860039-64ca-4025-9d32-f2824478127b +@registor_address28:M173 +@collect_id29:55860039-64ca-4025-9d32-f2824478127b +@registor_address30:M174 +@collect_id31:55860039-64ca-4025-9d32-f2824478127b +@registor_address32:M175 +@collect_id33:55860039-64ca-4025-9d32-f2824478127b +@registor_address34:M176 +@collect_id35:55860039-64ca-4025-9d32-f2824478127b +@registor_address36:M177 +@collect_id37:55860039-64ca-4025-9d32-f2824478127b +@registor_address38:M178 +@collect_id39:55860039-64ca-4025-9d32-f2824478127b +@registor_address40:M179 +@collect_id41:55860039-64ca-4025-9d32-f2824478127b +@registor_address42:M180 +@collect_id43:55860039-64ca-4025-9d32-f2824478127b +@registor_address44:M181 +@collect_id45:55860039-64ca-4025-9d32-f2824478127b +@registor_address46:M182 +@collect_id47:55860039-64ca-4025-9d32-f2824478127b +@registor_address48:M183 +@collect_id49:55860039-64ca-4025-9d32-f2824478127b +@registor_address50:M184 +@collect_id51:55860039-64ca-4025-9d32-f2824478127b +@registor_address52:M185 +@collect_id53:55860039-64ca-4025-9d32-f2824478127b +@registor_address54:M186 +@collect_id55:55860039-64ca-4025-9d32-f2824478127b +@registor_address56:M187 +@collect_id57:55860039-64ca-4025-9d32-f2824478127b +@registor_address58:M188 +@collect_id59:55860039-64ca-4025-9d32-f2824478127b +@registor_address60:M189 +@collect_id61:55860039-64ca-4025-9d32-f2824478127b +@registor_address62:M190 +@collect_id63:55860039-64ca-4025-9d32-f2824478127b +@registor_address64:M70 +@collect_id65:55860039-64ca-4025-9d32-f2824478127b +@registor_address66:M700 +@collect_id67:55860039-64ca-4025-9d32-f2824478127b +@registor_address68:M701 +@collect_id69:55860039-64ca-4025-9d32-f2824478127b +@registor_address70:M702 +@collect_id71:55860039-64ca-4025-9d32-f2824478127b +@registor_address72:M703 +@collect_id73:55860039-64ca-4025-9d32-f2824478127b +@registor_address74:M704 +@collect_id75:55860039-64ca-4025-9d32-f2824478127b +@registor_address76:M705 +@collect_id77:55860039-64ca-4025-9d32-f2824478127b +@registor_address78:M706 +@collect_id79:55860039-64ca-4025-9d32-f2824478127b +@registor_address80:M707 +@collect_id81:55860039-64ca-4025-9d32-f2824478127b +@registor_address82:M708 +@collect_id83:55860039-64ca-4025-9d32-f2824478127b +@registor_address84:M709 +@collect_id85:55860039-64ca-4025-9d32-f2824478127b +@registor_address86:M710 +@collect_id87:55860039-64ca-4025-9d32-f2824478127b +@registor_address88:M711 +@collect_id89:55860039-64ca-4025-9d32-f2824478127b +@registor_address90:M712 +@collect_id91:55860039-64ca-4025-9d32-f2824478127b +@registor_address92:M713 +@collect_id93:55860039-64ca-4025-9d32-f2824478127b +@registor_address94:M714 +@collect_id95:55860039-64ca-4025-9d32-f2824478127b +@registor_address96:M715 +@collect_id97:55860039-64ca-4025-9d32-f2824478127b +@registor_address98:M716 +@collect_id99:55860039-64ca-4025-9d32-f2824478127b +@registor_address100:M717 +@collect_id101:55860039-64ca-4025-9d32-f2824478127b +@registor_address102:M718 +@collect_id103:55860039-64ca-4025-9d32-f2824478127b +@registor_address104:M719 +@collect_id105:55860039-64ca-4025-9d32-f2824478127b +@registor_address106:M720 +@collect_id107:55860039-64ca-4025-9d32-f2824478127b +@registor_address108:M721 +@collect_id109:55860039-64ca-4025-9d32-f2824478127b +@registor_address110:M722 +@collect_id111:55860039-64ca-4025-9d32-f2824478127b +@registor_address112:M723 +@collect_id113:55860039-64ca-4025-9d32-f2824478127b +@registor_address114:M724 +@collect_id115:55860039-64ca-4025-9d32-f2824478127b +@registor_address116:M725 +@collect_id117:55860039-64ca-4025-9d32-f2824478127b +@registor_address118:M726 +@collect_id119:55860039-64ca-4025-9d32-f2824478127b +@registor_address120:M727 +@collect_id121:55860039-64ca-4025-9d32-f2824478127b +@registor_address122:M728 +@collect_id123:55860039-64ca-4025-9d32-f2824478127b +@registor_address124:M729 +@collect_id125:55860039-64ca-4025-9d32-f2824478127b +@registor_address126:M730 +@collect_id127:55860039-64ca-4025-9d32-f2824478127b +@registor_address128:M731 +@collect_id129:55860039-64ca-4025-9d32-f2824478127b +@registor_address130:M732 +@collect_id131:55860039-64ca-4025-9d32-f2824478127b +@registor_address132:M733 +@collect_id133:55860039-64ca-4025-9d32-f2824478127b +@registor_address134:M734 +@collect_id135:55860039-64ca-4025-9d32-f2824478127b +@registor_address136:M735 +@collect_id137:55860039-64ca-4025-9d32-f2824478127b +@registor_address138:M736 +@collect_id139:55860039-64ca-4025-9d32-f2824478127b +@registor_address140:M737 +@collect_id141:55860039-64ca-4025-9d32-f2824478127b +@registor_address142:M738 +@collect_id143:55860039-64ca-4025-9d32-f2824478127b +@registor_address144:M739 +@collect_id145:55860039-64ca-4025-9d32-f2824478127b +@registor_address146:M740 +@collect_id147:55860039-64ca-4025-9d32-f2824478127b +@registor_address148:M741 +@collect_id149:55860039-64ca-4025-9d32-f2824478127b +@registor_address150:M742 +@collect_id151:55860039-64ca-4025-9d32-f2824478127b +@registor_address152:M743 +@collect_id153:55860039-64ca-4025-9d32-f2824478127b +@registor_address154:M744 +@collect_id155:55860039-64ca-4025-9d32-f2824478127b +@registor_address156:M745 +@collect_id157:55860039-64ca-4025-9d32-f2824478127b +@registor_address158:M108 +@collect_id159:55860039-64ca-4025-9d32-f2824478127b +@registor_address160:M109 +@collect_id161:55860039-64ca-4025-9d32-f2824478127b +@registor_address162:M110 +@collect_id163:55860039-64ca-4025-9d32-f2824478127b +@registor_address164:M111 +@collect_id165:55860039-64ca-4025-9d32-f2824478127b +@registor_address166:M112 +@collect_id167:55860039-64ca-4025-9d32-f2824478127b +@registor_address168:M113 +@collect_id169:55860039-64ca-4025-9d32-f2824478127b +@registor_address170:M114 +@collect_id171:55860039-64ca-4025-9d32-f2824478127b +@registor_address172:M115 +@collect_id173:55860039-64ca-4025-9d32-f2824478127b +@registor_address174:M116 +@collect_id175:55860039-64ca-4025-9d32-f2824478127b +@registor_address176:M117 +@collect_id177:55860039-64ca-4025-9d32-f2824478127b +@registor_address178:M118 +@collect_id179:55860039-64ca-4025-9d32-f2824478127b +@registor_address180:M119 +@collect_id181:55860039-64ca-4025-9d32-f2824478127b +@registor_address182:M120 +@collect_id183:55860039-64ca-4025-9d32-f2824478127b +@registor_address184:M121 +@collect_id185:55860039-64ca-4025-9d32-f2824478127b +@registor_address186:M50 +@collect_id187:55860039-64ca-4025-9d32-f2824478127b +@registor_address188:M380 +@collect_id189:55860039-64ca-4025-9d32-f2824478127b +@registor_address190:M381 +@collect_id191:55860039-64ca-4025-9d32-f2824478127b +@registor_address192:M382 +@collect_id193:55860039-64ca-4025-9d32-f2824478127b +@registor_address194:M383 +@collect_id195:55860039-64ca-4025-9d32-f2824478127b +@registor_address196:M384 +@collect_id197:55860039-64ca-4025-9d32-f2824478127b +@registor_address198:M385 +@collect_id199:55860039-64ca-4025-9d32-f2824478127b +@registor_address200:M386 +@collect_id201:55860039-64ca-4025-9d32-f2824478127b +@registor_address202:M387 +@collect_id203:55860039-64ca-4025-9d32-f2824478127b +@registor_address204:M388 +@collect_id205:55860039-64ca-4025-9d32-f2824478127b +@registor_address206:M389 +@collect_id207:55860039-64ca-4025-9d32-f2824478127b +@registor_address208:M390 +@collect_id209:55860039-64ca-4025-9d32-f2824478127b +@registor_address210:M391 +@collect_id211:55860039-64ca-4025-9d32-f2824478127b +@registor_address212:M392 +@collect_id213:55860039-64ca-4025-9d32-f2824478127b +@registor_address214:M393 +@collect_id215:55860039-64ca-4025-9d32-f2824478127b +@registor_address216:M394 +@collect_id217:55860039-64ca-4025-9d32-f2824478127b +@registor_address218:B00010 +@collect_id219:55860039-64ca-4025-9d32-f2824478127b +@registor_address220:B00011 +@collect_id221:55860039-64ca-4025-9d32-f2824478127b +@registor_address222:B00012 +@collect_id223:55860039-64ca-4025-9d32-f2824478127b +@registor_address224:B00013 +@collect_id225:55860039-64ca-4025-9d32-f2824478127b +@registor_address226:B00014 +@collect_id227:55860039-64ca-4025-9d32-f2824478127b +@registor_address228:B00015 +@collect_id229:55860039-64ca-4025-9d32-f2824478127b +@registor_address230:B00016 +@collect_id231:55860039-64ca-4025-9d32-f2824478127b +@registor_address232:B00017 +@collect_id233:55860039-64ca-4025-9d32-f2824478127b +@registor_address234:B00018 +@collect_id235:55860039-64ca-4025-9d32-f2824478127b +@registor_address236:B00019 +@collect_id237:55860039-64ca-4025-9d32-f2824478127b +@registor_address238:B0001A +@collect_id239:55860039-64ca-4025-9d32-f2824478127b +@registor_address240:B0001B +@collect_id241:55860039-64ca-4025-9d32-f2824478127b +@registor_address242:B0001C +@collect_id243:55860039-64ca-4025-9d32-f2824478127b +@registor_address244:B0001D +@collect_id245:55860039-64ca-4025-9d32-f2824478127b +@registor_address246:B0001E +@collect_id247:55860039-64ca-4025-9d32-f2824478127b +@registor_address248:B0001F +@collect_id249:55860039-64ca-4025-9d32-f2824478127b +@registor_address250:B00020 +@collect_id251:55860039-64ca-4025-9d32-f2824478127b +@registor_address252:B00021 +@collect_id253:55860039-64ca-4025-9d32-f2824478127b +@registor_address254:B00022 +@collect_id255:55860039-64ca-4025-9d32-f2824478127b +@registor_address256:B00023 +@collect_id257:55860039-64ca-4025-9d32-f2824478127b +@registor_address258:B00024 +@collect_id259:55860039-64ca-4025-9d32-f2824478127b +@registor_address260:B00025 +@collect_id261:55860039-64ca-4025-9d32-f2824478127b +@registor_address262:B00026 +@collect_id263:55860039-64ca-4025-9d32-f2824478127b +@registor_address264:B00027 +@collect_id265:55860039-64ca-4025-9d32-f2824478127b +@registor_address266:B00028 +@collect_id267:55860039-64ca-4025-9d32-f2824478127b +@registor_address268:B00029 +@collect_id269:55860039-64ca-4025-9d32-f2824478127b +@registor_address270:B0002A +@collect_id271:55860039-64ca-4025-9d32-f2824478127b +@registor_address272:B0002B +@collect_id273:55860039-64ca-4025-9d32-f2824478127b +@registor_address274:B0002C +@collect_id275:55860039-64ca-4025-9d32-f2824478127b +@registor_address276:B0002D +@collect_id277:55860039-64ca-4025-9d32-f2824478127b +@registor_address278:B0002E +@collect_id279:55860039-64ca-4025-9d32-f2824478127b +@registor_address280:B0002F +@collect_id281:55860039-64ca-4025-9d32-f2824478127b +@registor_address282:B00510 +@collect_id283:55860039-64ca-4025-9d32-f2824478127b +@registor_address284:B00511 +@collect_id285:55860039-64ca-4025-9d32-f2824478127b +@registor_address286:B00512 +@collect_id287:55860039-64ca-4025-9d32-f2824478127b +@registor_address288:B00513 +@collect_id289:55860039-64ca-4025-9d32-f2824478127b +@registor_address290:B00514 +@collect_id291:55860039-64ca-4025-9d32-f2824478127b +@registor_address292:B00515 +@collect_id293:55860039-64ca-4025-9d32-f2824478127b +@registor_address294:B00516 +@collect_id295:55860039-64ca-4025-9d32-f2824478127b +@registor_address296:B00517 +@collect_id297:55860039-64ca-4025-9d32-f2824478127b +@registor_address298:B00518 +@collect_id299:55860039-64ca-4025-9d32-f2824478127b +@registor_address300:B00519 +@collect_id301:55860039-64ca-4025-9d32-f2824478127b +@registor_address302:B0051A +@collect_id303:55860039-64ca-4025-9d32-f2824478127b +@registor_address304:B0051B +@collect_id305:55860039-64ca-4025-9d32-f2824478127b +@registor_address306:B0051C +@collect_id307:55860039-64ca-4025-9d32-f2824478127b +@registor_address308:B0051D +@collect_id309:55860039-64ca-4025-9d32-f2824478127b +@registor_address310:B0051E +@collect_id311:55860039-64ca-4025-9d32-f2824478127b +@registor_address312:B0051F +@collect_id313:55860039-64ca-4025-9d32-f2824478127b +@registor_address314:B00520 +@collect_id315:55860039-64ca-4025-9d32-f2824478127b +@registor_address316:B00521 +@collect_id317:55860039-64ca-4025-9d32-f2824478127b +@registor_address318:B00522 +@collect_id319:55860039-64ca-4025-9d32-f2824478127b +@registor_address320:B00523 +@collect_id321:55860039-64ca-4025-9d32-f2824478127b +@registor_address322:B00524 +@collect_id323:55860039-64ca-4025-9d32-f2824478127b +@registor_address324:B00525 +@collect_id325:55860039-64ca-4025-9d32-f2824478127b +@registor_address326:B00526 +@collect_id327:55860039-64ca-4025-9d32-f2824478127b +@registor_address328:B00527 +@collect_id329:55860039-64ca-4025-9d32-f2824478127b +@registor_address330:B00528 +@collect_id331:55860039-64ca-4025-9d32-f2824478127b +@registor_address332:B00529 +@collect_id333:55860039-64ca-4025-9d32-f2824478127b +@registor_address334:B0052A +@collect_id335:55860039-64ca-4025-9d32-f2824478127b +@registor_address336:B0052B +@collect_id337:55860039-64ca-4025-9d32-f2824478127b +@registor_address338:B0052C +@collect_id339:55860039-64ca-4025-9d32-f2824478127b +@registor_address340:B0052D +@collect_id341:55860039-64ca-4025-9d32-f2824478127b +@registor_address342:B0052E +@collect_id343:55860039-64ca-4025-9d32-f2824478127b +@registor_address344:B0052F +@collect_id345:55860039-64ca-4025-9d32-f2824478127b +@registor_address346:B00A10 +@collect_id347:55860039-64ca-4025-9d32-f2824478127b +@registor_address348:B00A11 +@collect_id349:55860039-64ca-4025-9d32-f2824478127b +@registor_address350:B00A12 +@collect_id351:55860039-64ca-4025-9d32-f2824478127b +@registor_address352:B00A13 +@collect_id353:55860039-64ca-4025-9d32-f2824478127b +@registor_address354:B00A14 +@collect_id355:55860039-64ca-4025-9d32-f2824478127b +@registor_address356:B00A15 +@collect_id357:55860039-64ca-4025-9d32-f2824478127b +@registor_address358:B00A16 +@collect_id359:55860039-64ca-4025-9d32-f2824478127b +@registor_address360:B00A17 +@collect_id361:55860039-64ca-4025-9d32-f2824478127b +@registor_address362:B00A18 +@collect_id363:55860039-64ca-4025-9d32-f2824478127b +@registor_address364:B00A19 +@collect_id365:55860039-64ca-4025-9d32-f2824478127b +@registor_address366:B00A1A +@collect_id367:55860039-64ca-4025-9d32-f2824478127b +@registor_address368:B00A1B +@collect_id369:55860039-64ca-4025-9d32-f2824478127b +@registor_address370:B00A1C +@collect_id371:55860039-64ca-4025-9d32-f2824478127b +@registor_address372:B00A1D +@collect_id373:55860039-64ca-4025-9d32-f2824478127b +@registor_address374:B00A1E +@collect_id375:55860039-64ca-4025-9d32-f2824478127b +@registor_address376:B00A1F +@collect_id377:55860039-64ca-4025-9d32-f2824478127b +@registor_address378:B00A20 +@collect_id379:55860039-64ca-4025-9d32-f2824478127b +@registor_address380:B00A21 +@collect_id381:55860039-64ca-4025-9d32-f2824478127b +@registor_address382:B00A22 +@collect_id383:55860039-64ca-4025-9d32-f2824478127b +@registor_address384:B00A23 +@collect_id385:55860039-64ca-4025-9d32-f2824478127b +@registor_address386:B00A24 +@collect_id387:55860039-64ca-4025-9d32-f2824478127b +@registor_address388:B00A25 +@collect_id389:55860039-64ca-4025-9d32-f2824478127b +@registor_address390:B00A26 +@collect_id391:55860039-64ca-4025-9d32-f2824478127b +@registor_address392:B00A27 +@collect_id393:55860039-64ca-4025-9d32-f2824478127b +@registor_address394:B00A28 +@collect_id395:55860039-64ca-4025-9d32-f2824478127b +@registor_address396:B00A29 +@collect_id397:55860039-64ca-4025-9d32-f2824478127b +@registor_address398:B00A2A +@collect_id399:55860039-64ca-4025-9d32-f2824478127b +@registor_address400:B00A2B +@collect_id401:55860039-64ca-4025-9d32-f2824478127b +@registor_address402:B00A2C +@collect_id403:55860039-64ca-4025-9d32-f2824478127b +@registor_address404:B00A2D +@collect_id405:55860039-64ca-4025-9d32-f2824478127b +@registor_address406:B00A2E +@collect_id407:55860039-64ca-4025-9d32-f2824478127b +@registor_address408:B00A2F +@collect_id409:55860039-64ca-4025-9d32-f2824478127b +@registor_address410:B01810 +@collect_id411:55860039-64ca-4025-9d32-f2824478127b +@registor_address412:B01811 +@collect_id413:55860039-64ca-4025-9d32-f2824478127b +@registor_address414:B01812 +@collect_id415:55860039-64ca-4025-9d32-f2824478127b +@registor_address416:B01813 +@collect_id417:55860039-64ca-4025-9d32-f2824478127b +@registor_address418:B01814 +@collect_id419:55860039-64ca-4025-9d32-f2824478127b +@registor_address420:B01815 +@collect_id421:55860039-64ca-4025-9d32-f2824478127b +@registor_address422:B01816 +@collect_id423:55860039-64ca-4025-9d32-f2824478127b +@registor_address424:B01817 +@collect_id425:55860039-64ca-4025-9d32-f2824478127b +@registor_address426:B01818 +@collect_id427:55860039-64ca-4025-9d32-f2824478127b +@registor_address428:B01819 +@collect_id429:55860039-64ca-4025-9d32-f2824478127b +@registor_address430:M160 +@collect_id431:55860039-64ca-4025-9d32-f2824478127b +@registor_address432:M161 +@collect_id433:55860039-64ca-4025-9d32-f2824478127b +@registor_address434:M162 +@collect_id435:55860039-64ca-4025-9d32-f2824478127b +@registor_address436:M163 +@collect_id437:55860039-64ca-4025-9d32-f2824478127b +@registor_address438:M164 +@collect_id439:55860039-64ca-4025-9d32-f2824478127b +@registor_address440:M165 +@collect_id441:55860039-64ca-4025-9d32-f2824478127b +@registor_address442:M166 +@collect_id443:55860039-64ca-4025-9d32-f2824478127b +@registor_address444:M167 +@collect_id445:55860039-64ca-4025-9d32-f2824478127b +@registor_address446:M168 +@collect_id447:55860039-64ca-4025-9d32-f2824478127b +@registor_address448:M169 +@collect_id449:55860039-64ca-4025-9d32-f2824478127b +@registor_address450:M170 +@collect_id451:55860039-64ca-4025-9d32-f2824478127b +@registor_address452:M171 +@collect_id453:55860039-64ca-4025-9d32-f2824478127b +@registor_address454:M172 +@collect_id455:55860039-64ca-4025-9d32-f2824478127b +@registor_address456:M173 +@collect_id457:55860039-64ca-4025-9d32-f2824478127b +@registor_address458:M174 +@collect_id459:55860039-64ca-4025-9d32-f2824478127b +@registor_address460:M175 +@collect_id461:55860039-64ca-4025-9d32-f2824478127b +@registor_address462:M176 +@collect_id463:55860039-64ca-4025-9d32-f2824478127b +@registor_address464:M177 +@collect_id465:55860039-64ca-4025-9d32-f2824478127b +@registor_address466:M178 +@collect_id467:55860039-64ca-4025-9d32-f2824478127b +@registor_address468:M179 +@collect_id469:55860039-64ca-4025-9d32-f2824478127b +@registor_address470:M180 +@collect_id471:55860039-64ca-4025-9d32-f2824478127b +@registor_address472:M181 +@collect_id473:55860039-64ca-4025-9d32-f2824478127b +@registor_address474:M182 +@collect_id475:55860039-64ca-4025-9d32-f2824478127b +@registor_address476:M183 +@collect_id477:55860039-64ca-4025-9d32-f2824478127b +@registor_address478:M184 +@collect_id479:55860039-64ca-4025-9d32-f2824478127b +@registor_address480:M185 +@collect_id481:55860039-64ca-4025-9d32-f2824478127b +@registor_address482:M186 +@collect_id483:55860039-64ca-4025-9d32-f2824478127b +@registor_address484:M187 +@collect_id485:55860039-64ca-4025-9d32-f2824478127b +@registor_address486:M188 +@collect_id487:55860039-64ca-4025-9d32-f2824478127b +@registor_address488:M189 +@collect_id489:55860039-64ca-4025-9d32-f2824478127b +@registor_address490:M190 +@collect_id491:55860039-64ca-4025-9d32-f2824478127b +@registor_address492:M70 +@collect_id493:55860039-64ca-4025-9d32-f2824478127b +@registor_address494:M700 +@collect_id495:55860039-64ca-4025-9d32-f2824478127b +@registor_address496:M701 +@collect_id497:55860039-64ca-4025-9d32-f2824478127b +@registor_address498:M702 +@collect_id499:55860039-64ca-4025-9d32-f2824478127b +@registor_address500:M703 +@collect_id501:55860039-64ca-4025-9d32-f2824478127b +@registor_address502:M704 +@collect_id503:55860039-64ca-4025-9d32-f2824478127b +@registor_address504:M705 +@collect_id505:55860039-64ca-4025-9d32-f2824478127b +@registor_address506:M706 +@collect_id507:55860039-64ca-4025-9d32-f2824478127b +@registor_address508:M707 +@collect_id509:55860039-64ca-4025-9d32-f2824478127b +@registor_address510:M708 +@collect_id511:55860039-64ca-4025-9d32-f2824478127b +@registor_address512:M709 +@collect_id513:55860039-64ca-4025-9d32-f2824478127b +@registor_address514:M710 +@collect_id515:55860039-64ca-4025-9d32-f2824478127b +@registor_address516:M711 +@collect_id517:55860039-64ca-4025-9d32-f2824478127b +@registor_address518:M712 +@collect_id519:55860039-64ca-4025-9d32-f2824478127b +@registor_address520:M713 +@collect_id521:55860039-64ca-4025-9d32-f2824478127b +@registor_address522:M714 +@collect_id523:55860039-64ca-4025-9d32-f2824478127b +@registor_address524:M715 +@collect_id525:55860039-64ca-4025-9d32-f2824478127b +@registor_address526:M716 +@collect_id527:55860039-64ca-4025-9d32-f2824478127b +@registor_address528:M717 +@collect_id529:55860039-64ca-4025-9d32-f2824478127b +@registor_address530:M718 +@collect_id531:55860039-64ca-4025-9d32-f2824478127b +@registor_address532:M719 +@collect_id533:55860039-64ca-4025-9d32-f2824478127b +@registor_address534:M720 +@collect_id535:55860039-64ca-4025-9d32-f2824478127b +@registor_address536:M721 +@collect_id537:55860039-64ca-4025-9d32-f2824478127b +@registor_address538:M722 +@collect_id539:55860039-64ca-4025-9d32-f2824478127b +@registor_address540:M723 +@collect_id541:55860039-64ca-4025-9d32-f2824478127b +@registor_address542:M724 +@collect_id543:55860039-64ca-4025-9d32-f2824478127b +@registor_address544:M725 +@collect_id545:55860039-64ca-4025-9d32-f2824478127b +@registor_address546:M726 +@collect_id547:55860039-64ca-4025-9d32-f2824478127b +@registor_address548:M727 +@collect_id549:55860039-64ca-4025-9d32-f2824478127b +@registor_address550:M728 +@collect_id551:55860039-64ca-4025-9d32-f2824478127b +@registor_address552:M729 +@collect_id553:55860039-64ca-4025-9d32-f2824478127b +@registor_address554:M730 +@collect_id555:55860039-64ca-4025-9d32-f2824478127b +@registor_address556:M731 +@collect_id557:55860039-64ca-4025-9d32-f2824478127b +@registor_address558:M732 +@collect_id559:55860039-64ca-4025-9d32-f2824478127b +@registor_address560:M733 +@collect_id561:55860039-64ca-4025-9d32-f2824478127b +@registor_address562:M734 +@collect_id563:55860039-64ca-4025-9d32-f2824478127b +@registor_address564:M735 +@collect_id565:55860039-64ca-4025-9d32-f2824478127b +@registor_address566:M736 +@collect_id567:55860039-64ca-4025-9d32-f2824478127b +@registor_address568:M737 +@collect_id569:55860039-64ca-4025-9d32-f2824478127b +@registor_address570:M738 +@collect_id571:55860039-64ca-4025-9d32-f2824478127b +@registor_address572:M739 +@collect_id573:55860039-64ca-4025-9d32-f2824478127b +@registor_address574:M740 +@collect_id575:55860039-64ca-4025-9d32-f2824478127b +@registor_address576:M741 +@collect_id577:55860039-64ca-4025-9d32-f2824478127b +@registor_address578:M742 +@collect_id579:55860039-64ca-4025-9d32-f2824478127b +@registor_address580:M743 +@collect_id581:55860039-64ca-4025-9d32-f2824478127b +@registor_address582:M744 +@collect_id583:55860039-64ca-4025-9d32-f2824478127b +@registor_address584:M745 +@collect_id585:55860039-64ca-4025-9d32-f2824478127b +@registor_address586:M108 +@collect_id587:55860039-64ca-4025-9d32-f2824478127b +@registor_address588:M109 +@collect_id589:55860039-64ca-4025-9d32-f2824478127b +@registor_address590:M110 +@collect_id591:55860039-64ca-4025-9d32-f2824478127b +@registor_address592:M111 +@collect_id593:55860039-64ca-4025-9d32-f2824478127b +@registor_address594:M112 +@collect_id595:55860039-64ca-4025-9d32-f2824478127b +@registor_address596:M113 +@collect_id597:55860039-64ca-4025-9d32-f2824478127b +@registor_address598:M114 +@collect_id599:55860039-64ca-4025-9d32-f2824478127b +@registor_address600:M115 +@collect_id601:55860039-64ca-4025-9d32-f2824478127b +@registor_address602:M116 +@collect_id603:55860039-64ca-4025-9d32-f2824478127b +@registor_address604:M117 +@collect_id605:55860039-64ca-4025-9d32-f2824478127b +@registor_address606:M118 +@collect_id607:55860039-64ca-4025-9d32-f2824478127b +@registor_address608:M119 +@collect_id609:55860039-64ca-4025-9d32-f2824478127b +@registor_address610:M120 +@collect_id611:55860039-64ca-4025-9d32-f2824478127b +@registor_address612:M121 +@collect_id613:55860039-64ca-4025-9d32-f2824478127b +@registor_address614:M50 +@collect_id615:55860039-64ca-4025-9d32-f2824478127b +@registor_address616:M380 +@collect_id617:55860039-64ca-4025-9d32-f2824478127b +@registor_address618:M381 +@collect_id619:55860039-64ca-4025-9d32-f2824478127b +@registor_address620:M382 +@collect_id621:55860039-64ca-4025-9d32-f2824478127b +@registor_address622:M383 +@collect_id623:55860039-64ca-4025-9d32-f2824478127b +@registor_address624:M384 +@collect_id625:55860039-64ca-4025-9d32-f2824478127b +@registor_address626:M385 +@collect_id627:55860039-64ca-4025-9d32-f2824478127b +@registor_address628:M386 +@collect_id629:55860039-64ca-4025-9d32-f2824478127b +@registor_address630:M387 +@collect_id631:55860039-64ca-4025-9d32-f2824478127b +@registor_address632:M388 +@collect_id633:55860039-64ca-4025-9d32-f2824478127b +@registor_address634:M389 +@collect_id635:55860039-64ca-4025-9d32-f2824478127b +@registor_address636:M390 +@collect_id637:55860039-64ca-4025-9d32-f2824478127b +@registor_address638:M391 +@collect_id639:55860039-64ca-4025-9d32-f2824478127b +@registor_address640:M392 +@collect_id641:55860039-64ca-4025-9d32-f2824478127b +@registor_address642:M393 +@collect_id643:55860039-64ca-4025-9d32-f2824478127b +@registor_address644:M394 +@collect_id645:55860039-64ca-4025-9d32-f2824478127b +@registor_address646:B00010 +@collect_id647:55860039-64ca-4025-9d32-f2824478127b +@registor_address648:B00011 +@collect_id649:55860039-64ca-4025-9d32-f2824478127b +@registor_address650:B00012 +@collect_id651:55860039-64ca-4025-9d32-f2824478127b +@registor_address652:B00013 +@collect_id653:55860039-64ca-4025-9d32-f2824478127b +@registor_address654:B00014 +@collect_id655:55860039-64ca-4025-9d32-f2824478127b +@registor_address656:B00015 +@collect_id657:55860039-64ca-4025-9d32-f2824478127b +@registor_address658:B00016 +@collect_id659:55860039-64ca-4025-9d32-f2824478127b +@registor_address660:B00017 +@collect_id661:55860039-64ca-4025-9d32-f2824478127b +@registor_address662:B00018 +@collect_id663:55860039-64ca-4025-9d32-f2824478127b +@registor_address664:B00019 +@collect_id665:55860039-64ca-4025-9d32-f2824478127b +@registor_address666:B0001A +@collect_id667:55860039-64ca-4025-9d32-f2824478127b +@registor_address668:B0001B +@collect_id669:55860039-64ca-4025-9d32-f2824478127b +@registor_address670:B0001C +@collect_id671:55860039-64ca-4025-9d32-f2824478127b +@registor_address672:B0001D +@collect_id673:55860039-64ca-4025-9d32-f2824478127b +@registor_address674:B0001E +@collect_id675:55860039-64ca-4025-9d32-f2824478127b +@registor_address676:B0001F +@collect_id677:55860039-64ca-4025-9d32-f2824478127b +@registor_address678:B00020 +@collect_id679:55860039-64ca-4025-9d32-f2824478127b +@registor_address680:B00021 +@collect_id681:55860039-64ca-4025-9d32-f2824478127b +@registor_address682:B00022 +@collect_id683:55860039-64ca-4025-9d32-f2824478127b +@registor_address684:B00023 +@collect_id685:55860039-64ca-4025-9d32-f2824478127b +@registor_address686:B00024 +@collect_id687:55860039-64ca-4025-9d32-f2824478127b +@registor_address688:B00025 +@collect_id689:55860039-64ca-4025-9d32-f2824478127b +@registor_address690:B00026 +@collect_id691:55860039-64ca-4025-9d32-f2824478127b +@registor_address692:B00027 +@collect_id693:55860039-64ca-4025-9d32-f2824478127b +@registor_address694:B00028 +@collect_id695:55860039-64ca-4025-9d32-f2824478127b +@registor_address696:B00029 +@collect_id697:55860039-64ca-4025-9d32-f2824478127b +@registor_address698:B0002A +@collect_id699:55860039-64ca-4025-9d32-f2824478127b +@registor_address700:B0002B +@collect_id701:55860039-64ca-4025-9d32-f2824478127b +@registor_address702:B0002C +@collect_id703:55860039-64ca-4025-9d32-f2824478127b +@registor_address704:B0002D +@collect_id705:55860039-64ca-4025-9d32-f2824478127b +@registor_address706:B0002E +@collect_id707:55860039-64ca-4025-9d32-f2824478127b +@registor_address708:B0002F +@collect_id709:55860039-64ca-4025-9d32-f2824478127b +@registor_address710:B00510 +@collect_id711:55860039-64ca-4025-9d32-f2824478127b +@registor_address712:B00511 +@collect_id713:55860039-64ca-4025-9d32-f2824478127b +@registor_address714:B00512 +@collect_id715:55860039-64ca-4025-9d32-f2824478127b +@registor_address716:B00513 +@collect_id717:55860039-64ca-4025-9d32-f2824478127b +@registor_address718:B00514 +@collect_id719:55860039-64ca-4025-9d32-f2824478127b +@registor_address720:B00515 +@collect_id721:55860039-64ca-4025-9d32-f2824478127b +@registor_address722:B00516 +@collect_id723:55860039-64ca-4025-9d32-f2824478127b +@registor_address724:B00517 +@collect_id725:55860039-64ca-4025-9d32-f2824478127b +@registor_address726:B00518 +@collect_id727:55860039-64ca-4025-9d32-f2824478127b +@registor_address728:B00519 +@collect_id729:55860039-64ca-4025-9d32-f2824478127b +@registor_address730:B0051A +@collect_id731:55860039-64ca-4025-9d32-f2824478127b +@registor_address732:B0051B +@collect_id733:55860039-64ca-4025-9d32-f2824478127b +@registor_address734:B0051C +@collect_id735:55860039-64ca-4025-9d32-f2824478127b +@registor_address736:B0051D +@collect_id737:55860039-64ca-4025-9d32-f2824478127b +@registor_address738:B0051E +@collect_id739:55860039-64ca-4025-9d32-f2824478127b +@registor_address740:B0051F +@collect_id741:55860039-64ca-4025-9d32-f2824478127b +@registor_address742:B00520 +@collect_id743:55860039-64ca-4025-9d32-f2824478127b +@registor_address744:B00521 +@collect_id745:55860039-64ca-4025-9d32-f2824478127b +@registor_address746:B00522 +@collect_id747:55860039-64ca-4025-9d32-f2824478127b +@registor_address748:B00523 +@collect_id749:55860039-64ca-4025-9d32-f2824478127b +@registor_address750:B00524 +@collect_id751:55860039-64ca-4025-9d32-f2824478127b +@registor_address752:B00525 +@collect_id753:55860039-64ca-4025-9d32-f2824478127b +@registor_address754:B00526 +@collect_id755:55860039-64ca-4025-9d32-f2824478127b +@registor_address756:B00527 +@collect_id757:55860039-64ca-4025-9d32-f2824478127b +@registor_address758:B00528 +@collect_id759:55860039-64ca-4025-9d32-f2824478127b +@registor_address760:B00529 +@collect_id761:55860039-64ca-4025-9d32-f2824478127b +@registor_address762:B0052A +@collect_id763:55860039-64ca-4025-9d32-f2824478127b +@registor_address764:B0052B +@collect_id765:55860039-64ca-4025-9d32-f2824478127b +@registor_address766:B0052C +@collect_id767:55860039-64ca-4025-9d32-f2824478127b +@registor_address768:B0052D +@collect_id769:55860039-64ca-4025-9d32-f2824478127b +@registor_address770:B0052E +@collect_id771:55860039-64ca-4025-9d32-f2824478127b +@registor_address772:B0052F +@collect_id773:55860039-64ca-4025-9d32-f2824478127b +@registor_address774:B00A10 +@collect_id775:55860039-64ca-4025-9d32-f2824478127b +@registor_address776:B00A11 +@collect_id777:55860039-64ca-4025-9d32-f2824478127b +@registor_address778:B00A12 +@collect_id779:55860039-64ca-4025-9d32-f2824478127b +@registor_address780:B00A13 +@collect_id781:55860039-64ca-4025-9d32-f2824478127b +@registor_address782:B00A14 +@collect_id783:55860039-64ca-4025-9d32-f2824478127b +@registor_address784:B00A15 +@collect_id785:55860039-64ca-4025-9d32-f2824478127b +@registor_address786:B00A16 +@collect_id787:55860039-64ca-4025-9d32-f2824478127b +@registor_address788:B00A17 +@collect_id789:55860039-64ca-4025-9d32-f2824478127b +@registor_address790:B00A18 +@collect_id791:55860039-64ca-4025-9d32-f2824478127b +@registor_address792:B00A19 +@collect_id793:55860039-64ca-4025-9d32-f2824478127b +@registor_address794:B00A1A +@collect_id795:55860039-64ca-4025-9d32-f2824478127b +@registor_address796:B00A1B +@collect_id797:55860039-64ca-4025-9d32-f2824478127b +@registor_address798:B00A1C +@collect_id799:55860039-64ca-4025-9d32-f2824478127b +@registor_address800:B00A1D +@collect_id801:55860039-64ca-4025-9d32-f2824478127b +@registor_address802:B00A1E +@collect_id803:55860039-64ca-4025-9d32-f2824478127b +@registor_address804:B00A1F +@collect_id805:55860039-64ca-4025-9d32-f2824478127b +@registor_address806:B00A20 +@collect_id807:55860039-64ca-4025-9d32-f2824478127b +@registor_address808:B00A21 +@collect_id809:55860039-64ca-4025-9d32-f2824478127b +@registor_address810:B00A22 +@collect_id811:55860039-64ca-4025-9d32-f2824478127b +@registor_address812:B00A23 +@collect_id813:55860039-64ca-4025-9d32-f2824478127b +@registor_address814:B00A24 +@collect_id815:55860039-64ca-4025-9d32-f2824478127b +@registor_address816:B00A25 +@collect_id817:55860039-64ca-4025-9d32-f2824478127b +@registor_address818:B00A26 +@collect_id819:55860039-64ca-4025-9d32-f2824478127b +@registor_address820:B00A27 +@collect_id821:55860039-64ca-4025-9d32-f2824478127b +@registor_address822:B00A28 +@collect_id823:55860039-64ca-4025-9d32-f2824478127b +@registor_address824:B00A29 +@collect_id825:55860039-64ca-4025-9d32-f2824478127b +@registor_address826:B00A2A +@collect_id827:55860039-64ca-4025-9d32-f2824478127b +@registor_address828:B00A2B +@collect_id829:55860039-64ca-4025-9d32-f2824478127b +@registor_address830:B00A2C +@collect_id831:55860039-64ca-4025-9d32-f2824478127b +@registor_address832:B00A2D +@collect_id833:55860039-64ca-4025-9d32-f2824478127b +@registor_address834:B00A2E +@collect_id835:55860039-64ca-4025-9d32-f2824478127b +@registor_address836:B00A2F +@collect_id837:55860039-64ca-4025-9d32-f2824478127b +@registor_address838:B01810 +@collect_id839:55860039-64ca-4025-9d32-f2824478127b +@registor_address840:B01811 +@collect_id841:55860039-64ca-4025-9d32-f2824478127b +@registor_address842:B01812 +@collect_id843:55860039-64ca-4025-9d32-f2824478127b +@registor_address844:B01813 +@collect_id845:55860039-64ca-4025-9d32-f2824478127b +@registor_address846:B01814 +@collect_id847:55860039-64ca-4025-9d32-f2824478127b +@registor_address848:B01815 +@collect_id849:55860039-64ca-4025-9d32-f2824478127b +@registor_address850:B01816 +@collect_id851:55860039-64ca-4025-9d32-f2824478127b +@registor_address852:B01817 +@collect_id853:55860039-64ca-4025-9d32-f2824478127b +@registor_address854:B01818 +@collect_id855:55860039-64ca-4025-9d32-f2824478127b +@registor_address856:B01819 + +【SQL语句】:INSERT INTO `eqmt_collect_except_his` (`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`registor_address`) VALUES('2022-06-01 16:18:21.310',NULL,@collect_id1,N'1',@registor_address2), ('2022-06-01 16:18:21.310',NULL,@collect_id3,N'1',@registor_address4), ('2022-06-01 16:18:21.310',NULL,@collect_id5,N'1',@registor_address6), ('2022-06-01 16:18:21.310',NULL,@collect_id7,N'1',@registor_address8), ('2022-06-01 16:18:21.310',NULL,@collect_id9,N'1',@registor_address10), ('2022-06-01 16:18:21.310',NULL,@collect_id11,N'1',@registor_address12), ('2022-06-01 16:18:21.310',NULL,@collect_id13,N'1',@registor_address14), ('2022-06-01 16:18:21.310',NULL,@collect_id15,N'1',@registor_address16), ('2022-06-01 16:18:21.310',NULL,@collect_id17,N'1',@registor_address18), ('2022-06-01 16:18:21.310',NULL,@collect_id19,N'1',@registor_address20), ('2022-06-01 16:18:21.310',NULL,@collect_id21,N'1',@registor_address22), ('2022-06-01 16:18:21.310',NULL,@collect_id23,N'1',@registor_address24), ('2022-06-01 16:18:21.310',NULL,@collect_id25,N'1',@registor_address26), ('2022-06-01 16:18:21.310',NULL,@collect_id27,N'1',@registor_address28), ('2022-06-01 16:18:21.310',NULL,@collect_id29,N'1',@registor_address30), ('2022-06-01 16:18:21.310',NULL,@collect_id31,N'1',@registor_address32), ('2022-06-01 16:18:21.310',NULL,@collect_id33,N'1',@registor_address34), ('2022-06-01 16:18:21.310',NULL,@collect_id35,N'1',@registor_address36), ('2022-06-01 16:18:21.310',NULL,@collect_id37,N'1',@registor_address38), ('2022-06-01 16:18:21.310',NULL,@collect_id39,N'1',@registor_address40), ('2022-06-01 16:18:21.310',NULL,@collect_id41,N'1',@registor_address42), ('2022-06-01 16:18:21.310',NULL,@collect_id43,N'1',@registor_address44), ('2022-06-01 16:18:21.310',NULL,@collect_id45,N'1',@registor_address46), ('2022-06-01 16:18:21.310',NULL,@collect_id47,N'1',@registor_address48), ('2022-06-01 16:18:21.310',NULL,@collect_id49,N'1',@registor_address50), ('2022-06-01 16:18:21.310',NULL,@collect_id51,N'1',@registor_address52), ('2022-06-01 16:18:21.310',NULL,@collect_id53,N'1',@registor_address54), ('2022-06-01 16:18:21.310',NULL,@collect_id55,N'1',@registor_address56), ('2022-06-01 16:18:21.310',NULL,@collect_id57,N'1',@registor_address58), ('2022-06-01 16:18:21.310',NULL,@collect_id59,N'1',@registor_address60), ('2022-06-01 16:18:21.310',NULL,@collect_id61,N'1',@registor_address62), ('2022-06-01 16:18:21.310',NULL,@collect_id63,N'1',@registor_address64), ('2022-06-01 16:18:21.310',NULL,@collect_id65,N'1',@registor_address66), ('2022-06-01 16:18:21.310',NULL,@collect_id67,N'1',@registor_address68), ('2022-06-01 16:18:21.310',NULL,@collect_id69,N'1',@registor_address70), ('2022-06-01 16:18:21.310',NULL,@collect_id71,N'1',@registor_address72), ('2022-06-01 16:18:21.310',NULL,@collect_id73,N'1',@registor_address74), ('2022-06-01 16:18:21.310',NULL,@collect_id75,N'1',@registor_address76), ('2022-06-01 16:18:21.310',NULL,@collect_id77,N'1',@registor_address78), ('2022-06-01 16:18:21.310',NULL,@collect_id79,N'1',@registor_address80), ('2022-06-01 16:18:21.310',NULL,@collect_id81,N'1',@registor_address82), ('2022-06-01 16:18:21.310',NULL,@collect_id83,N'1',@registor_address84), ('2022-06-01 16:18:21.310',NULL,@collect_id85,N'1',@registor_address86), ('2022-06-01 16:18:21.310',NULL,@collect_id87,N'1',@registor_address88), ('2022-06-01 16:18:21.310',NULL,@collect_id89,N'1',@registor_address90), ('2022-06-01 16:18:21.310',NULL,@collect_id91,N'1',@registor_address92), ('2022-06-01 16:18:21.310',NULL,@collect_id93,N'1',@registor_address94), ('2022-06-01 16:18:21.310',NULL,@collect_id95,N'1',@registor_address96), ('2022-06-01 16:18:21.310',NULL,@collect_id97,N'1',@registor_address98), ('2022-06-01 16:18:21.310',NULL,@collect_id99,N'1',@registor_address100), ('2022-06-01 16:18:21.310',NULL,@collect_id101,N'1',@registor_address102), ('2022-06-01 16:18:21.310',NULL,@collect_id103,N'1',@registor_address104), ('2022-06-01 16:18:21.310',NULL,@collect_id105,N'1',@registor_address106), ('2022-06-01 16:18:21.310',NULL,@collect_id107,N'1',@registor_address108), ('2022-06-01 16:18:21.310',NULL,@collect_id109,N'1',@registor_address110), ('2022-06-01 16:18:21.310',NULL,@collect_id111,N'1',@registor_address112), ('2022-06-01 16:18:21.310',NULL,@collect_id113,N'1',@registor_address114), ('2022-06-01 16:18:21.310',NULL,@collect_id115,N'1',@registor_address116), ('2022-06-01 16:18:21.310',NULL,@collect_id117,N'1',@registor_address118), ('2022-06-01 16:18:21.310',NULL,@collect_id119,N'1',@registor_address120), ('2022-06-01 16:18:21.310',NULL,@collect_id121,N'1',@registor_address122), ('2022-06-01 16:18:21.310',NULL,@collect_id123,N'1',@registor_address124), ('2022-06-01 16:18:21.310',NULL,@collect_id125,N'1',@registor_address126), ('2022-06-01 16:18:21.310',NULL,@collect_id127,N'1',@registor_address128), ('2022-06-01 16:18:21.310',NULL,@collect_id129,N'1',@registor_address130), ('2022-06-01 16:18:21.310',NULL,@collect_id131,N'1',@registor_address132), ('2022-06-01 16:18:21.310',NULL,@collect_id133,N'1',@registor_address134), ('2022-06-01 16:18:21.310',NULL,@collect_id135,N'1',@registor_address136), ('2022-06-01 16:18:21.310',NULL,@collect_id137,N'1',@registor_address138), ('2022-06-01 16:18:21.310',NULL,@collect_id139,N'1',@registor_address140), ('2022-06-01 16:18:21.310',NULL,@collect_id141,N'1',@registor_address142), ('2022-06-01 16:18:21.310',NULL,@collect_id143,N'1',@registor_address144), ('2022-06-01 16:18:21.310',NULL,@collect_id145,N'1',@registor_address146), ('2022-06-01 16:18:21.310',NULL,@collect_id147,N'1',@registor_address148), ('2022-06-01 16:18:21.310',NULL,@collect_id149,N'1',@registor_address150), ('2022-06-01 16:18:21.310',NULL,@collect_id151,N'1',@registor_address152), ('2022-06-01 16:18:21.310',NULL,@collect_id153,N'1',@registor_address154), ('2022-06-01 16:18:21.310',NULL,@collect_id155,N'1',@registor_address156), ('2022-06-01 16:18:21.310',NULL,@collect_id157,N'1',@registor_address158), ('2022-06-01 16:18:21.310',NULL,@collect_id159,N'1',@registor_address160), ('2022-06-01 16:18:21.310',NULL,@collect_id161,N'1',@registor_address162), ('2022-06-01 16:18:21.310',NULL,@collect_id163,N'1',@registor_address164), ('2022-06-01 16:18:21.310',NULL,@collect_id165,N'1',@registor_address166), ('2022-06-01 16:18:21.310',NULL,@collect_id167,N'1',@registor_address168), ('2022-06-01 16:18:21.310',NULL,@collect_id169,N'1',@registor_address170), ('2022-06-01 16:18:21.310',NULL,@collect_id171,N'1',@registor_address172), ('2022-06-01 16:18:21.310',NULL,@collect_id173,N'1',@registor_address174), ('2022-06-01 16:18:21.310',NULL,@collect_id175,N'1',@registor_address176), ('2022-06-01 16:18:21.310',NULL,@collect_id177,N'1',@registor_address178), ('2022-06-01 16:18:21.310',NULL,@collect_id179,N'1',@registor_address180), ('2022-06-01 16:18:21.310',NULL,@collect_id181,N'1',@registor_address182), ('2022-06-01 16:18:21.310',NULL,@collect_id183,N'1',@registor_address184), ('2022-06-01 16:18:21.310',NULL,@collect_id185,N'1',@registor_address186), ('2022-06-01 16:18:21.310',NULL,@collect_id187,N'1',@registor_address188), ('2022-06-01 16:18:21.310',NULL,@collect_id189,N'1',@registor_address190), ('2022-06-01 16:18:21.310',NULL,@collect_id191,N'1',@registor_address192), ('2022-06-01 16:18:21.310',NULL,@collect_id193,N'1',@registor_address194), ('2022-06-01 16:18:21.310',NULL,@collect_id195,N'1',@registor_address196), ('2022-06-01 16:18:21.310',NULL,@collect_id197,N'1',@registor_address198), ('2022-06-01 16:18:21.310',NULL,@collect_id199,N'1',@registor_address200), ('2022-06-01 16:18:21.310',NULL,@collect_id201,N'1',@registor_address202), ('2022-06-01 16:18:21.310',NULL,@collect_id203,N'1',@registor_address204), ('2022-06-01 16:18:21.310',NULL,@collect_id205,N'1',@registor_address206), ('2022-06-01 16:18:21.310',NULL,@collect_id207,N'1',@registor_address208), ('2022-06-01 16:18:21.310',NULL,@collect_id209,N'1',@registor_address210), ('2022-06-01 16:18:21.310',NULL,@collect_id211,N'1',@registor_address212), ('2022-06-01 16:18:21.310',NULL,@collect_id213,N'1',@registor_address214), ('2022-06-01 16:18:21.310',NULL,@collect_id215,N'1',@registor_address216), ('2022-06-01 16:18:21.310',NULL,@collect_id217,N'1',@registor_address218), ('2022-06-01 16:18:21.310',NULL,@collect_id219,N'1',@registor_address220), ('2022-06-01 16:18:21.310',NULL,@collect_id221,N'1',@registor_address222), ('2022-06-01 16:18:21.310',NULL,@collect_id223,N'1',@registor_address224), ('2022-06-01 16:18:21.310',NULL,@collect_id225,N'1',@registor_address226), ('2022-06-01 16:18:21.310',NULL,@collect_id227,N'1',@registor_address228), ('2022-06-01 16:18:21.310',NULL,@collect_id229,N'1',@registor_address230), ('2022-06-01 16:18:21.310',NULL,@collect_id231,N'1',@registor_address232), ('2022-06-01 16:18:21.310',NULL,@collect_id233,N'1',@registor_address234), ('2022-06-01 16:18:21.310',NULL,@collect_id235,N'1',@registor_address236), ('2022-06-01 16:18:21.310',NULL,@collect_id237,N'1',@registor_address238), ('2022-06-01 16:18:21.310',NULL,@collect_id239,N'1',@registor_address240), ('2022-06-01 16:18:21.310',NULL,@collect_id241,N'1',@registor_address242), ('2022-06-01 16:18:21.310',NULL,@collect_id243,N'1',@registor_address244), ('2022-06-01 16:18:21.310',NULL,@collect_id245,N'1',@registor_address246), ('2022-06-01 16:18:21.310',NULL,@collect_id247,N'1',@registor_address248), ('2022-06-01 16:18:21.310',NULL,@collect_id249,N'1',@registor_address250), ('2022-06-01 16:18:21.310',NULL,@collect_id251,N'1',@registor_address252), ('2022-06-01 16:18:21.310',NULL,@collect_id253,N'1',@registor_address254), ('2022-06-01 16:18:21.310',NULL,@collect_id255,N'1',@registor_address256), ('2022-06-01 16:18:21.310',NULL,@collect_id257,N'1',@registor_address258), ('2022-06-01 16:18:21.310',NULL,@collect_id259,N'1',@registor_address260), ('2022-06-01 16:18:21.310',NULL,@collect_id261,N'1',@registor_address262), ('2022-06-01 16:18:21.310',NULL,@collect_id263,N'1',@registor_address264), ('2022-06-01 16:18:21.310',NULL,@collect_id265,N'1',@registor_address266), ('2022-06-01 16:18:21.310',NULL,@collect_id267,N'1',@registor_address268), ('2022-06-01 16:18:21.310',NULL,@collect_id269,N'1',@registor_address270), ('2022-06-01 16:18:21.310',NULL,@collect_id271,N'1',@registor_address272), ('2022-06-01 16:18:21.310',NULL,@collect_id273,N'1',@registor_address274), ('2022-06-01 16:18:21.310',NULL,@collect_id275,N'1',@registor_address276), ('2022-06-01 16:18:21.310',NULL,@collect_id277,N'1',@registor_address278), ('2022-06-01 16:18:21.310',NULL,@collect_id279,N'1',@registor_address280), ('2022-06-01 16:18:21.310',NULL,@collect_id281,N'1',@registor_address282), ('2022-06-01 16:18:21.310',NULL,@collect_id283,N'1',@registor_address284), ('2022-06-01 16:18:21.310',NULL,@collect_id285,N'1',@registor_address286), ('2022-06-01 16:18:21.310',NULL,@collect_id287,N'1',@registor_address288), ('2022-06-01 16:18:21.310',NULL,@collect_id289,N'1',@registor_address290), ('2022-06-01 16:18:21.310',NULL,@collect_id291,N'1',@registor_address292), ('2022-06-01 16:18:21.310',NULL,@collect_id293,N'1',@registor_address294), ('2022-06-01 16:18:21.310',NULL,@collect_id295,N'1',@registor_address296), ('2022-06-01 16:18:21.310',NULL,@collect_id297,N'1',@registor_address298), ('2022-06-01 16:18:21.310',NULL,@collect_id299,N'1',@registor_address300), ('2022-06-01 16:18:21.310',NULL,@collect_id301,N'1',@registor_address302), ('2022-06-01 16:18:21.310',NULL,@collect_id303,N'1',@registor_address304), ('2022-06-01 16:18:21.310',NULL,@collect_id305,N'1',@registor_address306), ('2022-06-01 16:18:21.310',NULL,@collect_id307,N'1',@registor_address308), ('2022-06-01 16:18:21.310',NULL,@collect_id309,N'1',@registor_address310), ('2022-06-01 16:18:21.310',NULL,@collect_id311,N'1',@registor_address312), ('2022-06-01 16:18:21.310',NULL,@collect_id313,N'1',@registor_address314), ('2022-06-01 16:18:21.310',NULL,@collect_id315,N'1',@registor_address316), ('2022-06-01 16:18:21.310',NULL,@collect_id317,N'1',@registor_address318), ('2022-06-01 16:18:21.310',NULL,@collect_id319,N'1',@registor_address320), ('2022-06-01 16:18:21.310',NULL,@collect_id321,N'1',@registor_address322), ('2022-06-01 16:18:21.310',NULL,@collect_id323,N'1',@registor_address324), ('2022-06-01 16:18:21.310',NULL,@collect_id325,N'1',@registor_address326), ('2022-06-01 16:18:21.310',NULL,@collect_id327,N'1',@registor_address328), ('2022-06-01 16:18:21.310',NULL,@collect_id329,N'1',@registor_address330), ('2022-06-01 16:18:21.310',NULL,@collect_id331,N'1',@registor_address332), ('2022-06-01 16:18:21.310',NULL,@collect_id333,N'1',@registor_address334), ('2022-06-01 16:18:21.310',NULL,@collect_id335,N'1',@registor_address336), ('2022-06-01 16:18:21.310',NULL,@collect_id337,N'1',@registor_address338), ('2022-06-01 16:18:21.310',NULL,@collect_id339,N'1',@registor_address340), ('2022-06-01 16:18:21.310',NULL,@collect_id341,N'1',@registor_address342), ('2022-06-01 16:18:21.310',NULL,@collect_id343,N'1',@registor_address344), ('2022-06-01 16:18:21.310',NULL,@collect_id345,N'1',@registor_address346), ('2022-06-01 16:18:21.310',NULL,@collect_id347,N'1',@registor_address348), ('2022-06-01 16:18:21.310',NULL,@collect_id349,N'1',@registor_address350), ('2022-06-01 16:18:21.310',NULL,@collect_id351,N'1',@registor_address352), ('2022-06-01 16:18:21.310',NULL,@collect_id353,N'1',@registor_address354), ('2022-06-01 16:18:21.310',NULL,@collect_id355,N'1',@registor_address356), ('2022-06-01 16:18:21.310',NULL,@collect_id357,N'1',@registor_address358), ('2022-06-01 16:18:21.310',NULL,@collect_id359,N'1',@registor_address360), ('2022-06-01 16:18:21.310',NULL,@collect_id361,N'1',@registor_address362), ('2022-06-01 16:18:21.310',NULL,@collect_id363,N'1',@registor_address364), ('2022-06-01 16:18:21.310',NULL,@collect_id365,N'1',@registor_address366), ('2022-06-01 16:18:21.310',NULL,@collect_id367,N'1',@registor_address368), ('2022-06-01 16:18:21.310',NULL,@collect_id369,N'1',@registor_address370), ('2022-06-01 16:18:21.310',NULL,@collect_id371,N'1',@registor_address372), ('2022-06-01 16:18:21.310',NULL,@collect_id373,N'1',@registor_address374), ('2022-06-01 16:18:21.310',NULL,@collect_id375,N'1',@registor_address376), ('2022-06-01 16:18:21.310',NULL,@collect_id377,N'1',@registor_address378), ('2022-06-01 16:18:21.310',NULL,@collect_id379,N'1',@registor_address380), ('2022-06-01 16:18:21.310',NULL,@collect_id381,N'1',@registor_address382), ('2022-06-01 16:18:21.310',NULL,@collect_id383,N'1',@registor_address384), ('2022-06-01 16:18:21.310',NULL,@collect_id385,N'1',@registor_address386), ('2022-06-01 16:18:21.310',NULL,@collect_id387,N'1',@registor_address388), ('2022-06-01 16:18:21.310',NULL,@collect_id389,N'1',@registor_address390), ('2022-06-01 16:18:21.310',NULL,@collect_id391,N'1',@registor_address392), ('2022-06-01 16:18:21.310',NULL,@collect_id393,N'1',@registor_address394), ('2022-06-01 16:18:21.310',NULL,@collect_id395,N'1',@registor_address396), ('2022-06-01 16:18:21.310',NULL,@collect_id397,N'1',@registor_address398), ('2022-06-01 16:18:21.310',NULL,@collect_id399,N'1',@registor_address400), ('2022-06-01 16:18:21.310',NULL,@collect_id401,N'1',@registor_address402), ('2022-06-01 16:18:21.310',NULL,@collect_id403,N'1',@registor_address404), ('2022-06-01 16:18:21.310',NULL,@collect_id405,N'1',@registor_address406), ('2022-06-01 16:18:21.310',NULL,@collect_id407,N'1',@registor_address408), ('2022-06-01 16:18:21.310',NULL,@collect_id409,N'1',@registor_address410), ('2022-06-01 16:18:21.310',NULL,@collect_id411,N'1',@registor_address412), ('2022-06-01 16:18:21.310',NULL,@collect_id413,N'1',@registor_address414), ('2022-06-01 16:18:21.310',NULL,@collect_id415,N'1',@registor_address416), ('2022-06-01 16:18:21.310',NULL,@collect_id417,N'1',@registor_address418), ('2022-06-01 16:18:21.310',NULL,@collect_id419,N'1',@registor_address420), ('2022-06-01 16:18:21.310',NULL,@collect_id421,N'1',@registor_address422), ('2022-06-01 16:18:21.310',NULL,@collect_id423,N'1',@registor_address424), ('2022-06-01 16:18:21.310',NULL,@collect_id425,N'1',@registor_address426), ('2022-06-01 16:18:21.310',NULL,@collect_id427,N'1',@registor_address428), ('2022-06-01 16:18:26.160',NULL,@collect_id429,N'1',@registor_address430), ('2022-06-01 16:18:26.160',NULL,@collect_id431,N'1',@registor_address432), ('2022-06-01 16:18:26.160',NULL,@collect_id433,N'1',@registor_address434), ('2022-06-01 16:18:26.160',NULL,@collect_id435,N'1',@registor_address436), ('2022-06-01 16:18:26.160',NULL,@collect_id437,N'1',@registor_address438), ('2022-06-01 16:18:26.160',NULL,@collect_id439,N'1',@registor_address440), ('2022-06-01 16:18:26.160',NULL,@collect_id441,N'1',@registor_address442), ('2022-06-01 16:18:26.160',NULL,@collect_id443,N'1',@registor_address444), ('2022-06-01 16:18:26.160',NULL,@collect_id445,N'1',@registor_address446), ('2022-06-01 16:18:26.160',NULL,@collect_id447,N'1',@registor_address448), ('2022-06-01 16:18:26.160',NULL,@collect_id449,N'1',@registor_address450), ('2022-06-01 16:18:26.160',NULL,@collect_id451,N'1',@registor_address452), ('2022-06-01 16:18:26.160',NULL,@collect_id453,N'1',@registor_address454), ('2022-06-01 16:18:26.160',NULL,@collect_id455,N'1',@registor_address456), ('2022-06-01 16:18:26.160',NULL,@collect_id457,N'1',@registor_address458), ('2022-06-01 16:18:26.160',NULL,@collect_id459,N'1',@registor_address460), ('2022-06-01 16:18:26.160',NULL,@collect_id461,N'1',@registor_address462), ('2022-06-01 16:18:26.160',NULL,@collect_id463,N'1',@registor_address464), ('2022-06-01 16:18:26.160',NULL,@collect_id465,N'1',@registor_address466), ('2022-06-01 16:18:26.160',NULL,@collect_id467,N'1',@registor_address468), ('2022-06-01 16:18:26.160',NULL,@collect_id469,N'1',@registor_address470), ('2022-06-01 16:18:26.160',NULL,@collect_id471,N'1',@registor_address472), ('2022-06-01 16:18:26.160',NULL,@collect_id473,N'1',@registor_address474), ('2022-06-01 16:18:26.160',NULL,@collect_id475,N'1',@registor_address476), ('2022-06-01 16:18:26.160',NULL,@collect_id477,N'1',@registor_address478), ('2022-06-01 16:18:26.160',NULL,@collect_id479,N'1',@registor_address480), ('2022-06-01 16:18:26.160',NULL,@collect_id481,N'1',@registor_address482), ('2022-06-01 16:18:26.160',NULL,@collect_id483,N'1',@registor_address484), ('2022-06-01 16:18:26.160',NULL,@collect_id485,N'1',@registor_address486), ('2022-06-01 16:18:26.160',NULL,@collect_id487,N'1',@registor_address488), ('2022-06-01 16:18:26.160',NULL,@collect_id489,N'1',@registor_address490), ('2022-06-01 16:18:26.160',NULL,@collect_id491,N'1',@registor_address492), ('2022-06-01 16:18:26.160',NULL,@collect_id493,N'1',@registor_address494), ('2022-06-01 16:18:26.160',NULL,@collect_id495,N'1',@registor_address496), ('2022-06-01 16:18:26.160',NULL,@collect_id497,N'1',@registor_address498), ('2022-06-01 16:18:26.160',NULL,@collect_id499,N'1',@registor_address500), ('2022-06-01 16:18:26.160',NULL,@collect_id501,N'1',@registor_address502), ('2022-06-01 16:18:26.160',NULL,@collect_id503,N'1',@registor_address504), ('2022-06-01 16:18:26.160',NULL,@collect_id505,N'1',@registor_address506), ('2022-06-01 16:18:26.160',NULL,@collect_id507,N'1',@registor_address508), ('2022-06-01 16:18:26.160',NULL,@collect_id509,N'1',@registor_address510), ('2022-06-01 16:18:26.160',NULL,@collect_id511,N'1',@registor_address512), ('2022-06-01 16:18:26.160',NULL,@collect_id513,N'1',@registor_address514), ('2022-06-01 16:18:26.160',NULL,@collect_id515,N'1',@registor_address516), ('2022-06-01 16:18:26.160',NULL,@collect_id517,N'1',@registor_address518), ('2022-06-01 16:18:26.160',NULL,@collect_id519,N'1',@registor_address520), ('2022-06-01 16:18:26.160',NULL,@collect_id521,N'1',@registor_address522), ('2022-06-01 16:18:26.160',NULL,@collect_id523,N'1',@registor_address524), ('2022-06-01 16:18:26.160',NULL,@collect_id525,N'1',@registor_address526), ('2022-06-01 16:18:26.160',NULL,@collect_id527,N'1',@registor_address528), ('2022-06-01 16:18:26.160',NULL,@collect_id529,N'1',@registor_address530), ('2022-06-01 16:18:26.160',NULL,@collect_id531,N'1',@registor_address532), ('2022-06-01 16:18:26.160',NULL,@collect_id533,N'1',@registor_address534), ('2022-06-01 16:18:26.160',NULL,@collect_id535,N'1',@registor_address536), ('2022-06-01 16:18:26.160',NULL,@collect_id537,N'1',@registor_address538), ('2022-06-01 16:18:26.160',NULL,@collect_id539,N'1',@registor_address540), ('2022-06-01 16:18:26.160',NULL,@collect_id541,N'1',@registor_address542), ('2022-06-01 16:18:26.160',NULL,@collect_id543,N'1',@registor_address544), ('2022-06-01 16:18:26.160',NULL,@collect_id545,N'1',@registor_address546), ('2022-06-01 16:18:26.160',NULL,@collect_id547,N'1',@registor_address548), ('2022-06-01 16:18:26.160',NULL,@collect_id549,N'1',@registor_address550), ('2022-06-01 16:18:26.160',NULL,@collect_id551,N'1',@registor_address552), ('2022-06-01 16:18:26.160',NULL,@collect_id553,N'1',@registor_address554), ('2022-06-01 16:18:26.160',NULL,@collect_id555,N'1',@registor_address556), ('2022-06-01 16:18:26.160',NULL,@collect_id557,N'1',@registor_address558), ('2022-06-01 16:18:26.160',NULL,@collect_id559,N'1',@registor_address560), ('2022-06-01 16:18:26.160',NULL,@collect_id561,N'1',@registor_address562), ('2022-06-01 16:18:26.160',NULL,@collect_id563,N'1',@registor_address564), ('2022-06-01 16:18:26.160',NULL,@collect_id565,N'1',@registor_address566), ('2022-06-01 16:18:26.160',NULL,@collect_id567,N'1',@registor_address568), ('2022-06-01 16:18:26.160',NULL,@collect_id569,N'1',@registor_address570), ('2022-06-01 16:18:26.160',NULL,@collect_id571,N'1',@registor_address572), ('2022-06-01 16:18:26.160',NULL,@collect_id573,N'1',@registor_address574), ('2022-06-01 16:18:26.160',NULL,@collect_id575,N'1',@registor_address576), ('2022-06-01 16:18:26.160',NULL,@collect_id577,N'1',@registor_address578), ('2022-06-01 16:18:26.160',NULL,@collect_id579,N'1',@registor_address580), ('2022-06-01 16:18:26.160',NULL,@collect_id581,N'1',@registor_address582), ('2022-06-01 16:18:26.160',NULL,@collect_id583,N'1',@registor_address584), ('2022-06-01 16:18:26.160',NULL,@collect_id585,N'1',@registor_address586), ('2022-06-01 16:18:26.160',NULL,@collect_id587,N'1',@registor_address588), ('2022-06-01 16:18:26.160',NULL,@collect_id589,N'1',@registor_address590), ('2022-06-01 16:18:26.160',NULL,@collect_id591,N'1',@registor_address592), ('2022-06-01 16:18:26.160',NULL,@collect_id593,N'1',@registor_address594), ('2022-06-01 16:18:26.160',NULL,@collect_id595,N'1',@registor_address596), ('2022-06-01 16:18:26.160',NULL,@collect_id597,N'1',@registor_address598), ('2022-06-01 16:18:26.160',NULL,@collect_id599,N'1',@registor_address600), ('2022-06-01 16:18:26.160',NULL,@collect_id601,N'1',@registor_address602), ('2022-06-01 16:18:26.160',NULL,@collect_id603,N'1',@registor_address604), ('2022-06-01 16:18:26.160',NULL,@collect_id605,N'1',@registor_address606), ('2022-06-01 16:18:26.160',NULL,@collect_id607,N'1',@registor_address608), ('2022-06-01 16:18:26.160',NULL,@collect_id609,N'1',@registor_address610), ('2022-06-01 16:18:26.160',NULL,@collect_id611,N'1',@registor_address612), ('2022-06-01 16:18:26.160',NULL,@collect_id613,N'1',@registor_address614), ('2022-06-01 16:18:26.160',NULL,@collect_id615,N'1',@registor_address616), ('2022-06-01 16:18:26.160',NULL,@collect_id617,N'1',@registor_address618), ('2022-06-01 16:18:26.160',NULL,@collect_id619,N'1',@registor_address620), ('2022-06-01 16:18:26.160',NULL,@collect_id621,N'1',@registor_address622), ('2022-06-01 16:18:26.160',NULL,@collect_id623,N'1',@registor_address624), ('2022-06-01 16:18:26.160',NULL,@collect_id625,N'1',@registor_address626), ('2022-06-01 16:18:26.160',NULL,@collect_id627,N'1',@registor_address628), ('2022-06-01 16:18:26.160',NULL,@collect_id629,N'1',@registor_address630), ('2022-06-01 16:18:26.160',NULL,@collect_id631,N'1',@registor_address632), ('2022-06-01 16:18:26.160',NULL,@collect_id633,N'1',@registor_address634), ('2022-06-01 16:18:26.160',NULL,@collect_id635,N'1',@registor_address636), ('2022-06-01 16:18:26.160',NULL,@collect_id637,N'1',@registor_address638), ('2022-06-01 16:18:26.160',NULL,@collect_id639,N'1',@registor_address640), ('2022-06-01 16:18:26.160',NULL,@collect_id641,N'1',@registor_address642), ('2022-06-01 16:18:26.160',NULL,@collect_id643,N'1',@registor_address644), ('2022-06-01 16:18:26.160',NULL,@collect_id645,N'1',@registor_address646), ('2022-06-01 16:18:26.160',NULL,@collect_id647,N'1',@registor_address648), ('2022-06-01 16:18:26.160',NULL,@collect_id649,N'1',@registor_address650), ('2022-06-01 16:18:26.160',NULL,@collect_id651,N'1',@registor_address652), ('2022-06-01 16:18:26.160',NULL,@collect_id653,N'1',@registor_address654), ('2022-06-01 16:18:26.160',NULL,@collect_id655,N'1',@registor_address656), ('2022-06-01 16:18:26.160',NULL,@collect_id657,N'1',@registor_address658), ('2022-06-01 16:18:26.160',NULL,@collect_id659,N'1',@registor_address660), ('2022-06-01 16:18:26.160',NULL,@collect_id661,N'1',@registor_address662), ('2022-06-01 16:18:26.160',NULL,@collect_id663,N'1',@registor_address664), ('2022-06-01 16:18:26.160',NULL,@collect_id665,N'1',@registor_address666), ('2022-06-01 16:18:26.160',NULL,@collect_id667,N'1',@registor_address668), ('2022-06-01 16:18:26.160',NULL,@collect_id669,N'1',@registor_address670), ('2022-06-01 16:18:26.160',NULL,@collect_id671,N'1',@registor_address672), ('2022-06-01 16:18:26.160',NULL,@collect_id673,N'1',@registor_address674), ('2022-06-01 16:18:26.160',NULL,@collect_id675,N'1',@registor_address676), ('2022-06-01 16:18:26.160',NULL,@collect_id677,N'1',@registor_address678), ('2022-06-01 16:18:26.160',NULL,@collect_id679,N'1',@registor_address680), ('2022-06-01 16:18:26.160',NULL,@collect_id681,N'1',@registor_address682), ('2022-06-01 16:18:26.160',NULL,@collect_id683,N'1',@registor_address684), ('2022-06-01 16:18:26.160',NULL,@collect_id685,N'1',@registor_address686), ('2022-06-01 16:18:26.160',NULL,@collect_id687,N'1',@registor_address688), ('2022-06-01 16:18:26.160',NULL,@collect_id689,N'1',@registor_address690), ('2022-06-01 16:18:26.160',NULL,@collect_id691,N'1',@registor_address692), ('2022-06-01 16:18:26.160',NULL,@collect_id693,N'1',@registor_address694), ('2022-06-01 16:18:26.160',NULL,@collect_id695,N'1',@registor_address696), ('2022-06-01 16:18:26.160',NULL,@collect_id697,N'1',@registor_address698), ('2022-06-01 16:18:26.160',NULL,@collect_id699,N'1',@registor_address700), ('2022-06-01 16:18:26.160',NULL,@collect_id701,N'1',@registor_address702), ('2022-06-01 16:18:26.160',NULL,@collect_id703,N'1',@registor_address704), ('2022-06-01 16:18:26.160',NULL,@collect_id705,N'1',@registor_address706), ('2022-06-01 16:18:26.160',NULL,@collect_id707,N'1',@registor_address708), ('2022-06-01 16:18:26.160',NULL,@collect_id709,N'1',@registor_address710), ('2022-06-01 16:18:26.160',NULL,@collect_id711,N'1',@registor_address712), ('2022-06-01 16:18:26.160',NULL,@collect_id713,N'1',@registor_address714), ('2022-06-01 16:18:26.160',NULL,@collect_id715,N'1',@registor_address716), ('2022-06-01 16:18:26.160',NULL,@collect_id717,N'1',@registor_address718), ('2022-06-01 16:18:26.160',NULL,@collect_id719,N'1',@registor_address720), ('2022-06-01 16:18:26.160',NULL,@collect_id721,N'1',@registor_address722), ('2022-06-01 16:18:26.160',NULL,@collect_id723,N'1',@registor_address724), ('2022-06-01 16:18:26.160',NULL,@collect_id725,N'1',@registor_address726), ('2022-06-01 16:18:26.160',NULL,@collect_id727,N'1',@registor_address728), ('2022-06-01 16:18:26.160',NULL,@collect_id729,N'1',@registor_address730), ('2022-06-01 16:18:26.160',NULL,@collect_id731,N'1',@registor_address732), ('2022-06-01 16:18:26.160',NULL,@collect_id733,N'1',@registor_address734), ('2022-06-01 16:18:26.160',NULL,@collect_id735,N'1',@registor_address736), ('2022-06-01 16:18:26.160',NULL,@collect_id737,N'1',@registor_address738), ('2022-06-01 16:18:26.160',NULL,@collect_id739,N'1',@registor_address740), ('2022-06-01 16:18:26.160',NULL,@collect_id741,N'1',@registor_address742), ('2022-06-01 16:18:26.160',NULL,@collect_id743,N'1',@registor_address744), ('2022-06-01 16:18:26.160',NULL,@collect_id745,N'1',@registor_address746), ('2022-06-01 16:18:26.160',NULL,@collect_id747,N'1',@registor_address748), ('2022-06-01 16:18:26.160',NULL,@collect_id749,N'1',@registor_address750), ('2022-06-01 16:18:26.160',NULL,@collect_id751,N'1',@registor_address752), ('2022-06-01 16:18:26.160',NULL,@collect_id753,N'1',@registor_address754), ('2022-06-01 16:18:26.160',NULL,@collect_id755,N'1',@registor_address756), ('2022-06-01 16:18:26.160',NULL,@collect_id757,N'1',@registor_address758), ('2022-06-01 16:18:26.160',NULL,@collect_id759,N'1',@registor_address760), ('2022-06-01 16:18:26.160',NULL,@collect_id761,N'1',@registor_address762), ('2022-06-01 16:18:26.160',NULL,@collect_id763,N'1',@registor_address764), ('2022-06-01 16:18:26.160',NULL,@collect_id765,N'1',@registor_address766), ('2022-06-01 16:18:26.160',NULL,@collect_id767,N'1',@registor_address768), ('2022-06-01 16:18:26.160',NULL,@collect_id769,N'1',@registor_address770), ('2022-06-01 16:18:26.160',NULL,@collect_id771,N'1',@registor_address772), ('2022-06-01 16:18:26.160',NULL,@collect_id773,N'1',@registor_address774), ('2022-06-01 16:18:26.160',NULL,@collect_id775,N'1',@registor_address776), ('2022-06-01 16:18:26.160',NULL,@collect_id777,N'1',@registor_address778), ('2022-06-01 16:18:26.160',NULL,@collect_id779,N'1',@registor_address780), ('2022-06-01 16:18:26.160',NULL,@collect_id781,N'1',@registor_address782), ('2022-06-01 16:18:26.160',NULL,@collect_id783,N'1',@registor_address784), ('2022-06-01 16:18:26.160',NULL,@collect_id785,N'1',@registor_address786), ('2022-06-01 16:18:26.160',NULL,@collect_id787,N'1',@registor_address788), ('2022-06-01 16:18:26.160',NULL,@collect_id789,N'1',@registor_address790), ('2022-06-01 16:18:26.160',NULL,@collect_id791,N'1',@registor_address792), ('2022-06-01 16:18:26.160',NULL,@collect_id793,N'1',@registor_address794), ('2022-06-01 16:18:26.160',NULL,@collect_id795,N'1',@registor_address796), ('2022-06-01 16:18:26.160',NULL,@collect_id797,N'1',@registor_address798), ('2022-06-01 16:18:26.160',NULL,@collect_id799,N'1',@registor_address800), ('2022-06-01 16:18:26.160',NULL,@collect_id801,N'1',@registor_address802), ('2022-06-01 16:18:26.160',NULL,@collect_id803,N'1',@registor_address804), ('2022-06-01 16:18:26.160',NULL,@collect_id805,N'1',@registor_address806), ('2022-06-01 16:18:26.160',NULL,@collect_id807,N'1',@registor_address808), ('2022-06-01 16:18:26.160',NULL,@collect_id809,N'1',@registor_address810), ('2022-06-01 16:18:26.160',NULL,@collect_id811,N'1',@registor_address812), ('2022-06-01 16:18:26.160',NULL,@collect_id813,N'1',@registor_address814), ('2022-06-01 16:18:26.160',NULL,@collect_id815,N'1',@registor_address816), ('2022-06-01 16:18:26.160',NULL,@collect_id817,N'1',@registor_address818), ('2022-06-01 16:18:26.160',NULL,@collect_id819,N'1',@registor_address820), ('2022-06-01 16:18:26.160',NULL,@collect_id821,N'1',@registor_address822), ('2022-06-01 16:18:26.160',NULL,@collect_id823,N'1',@registor_address824), ('2022-06-01 16:18:26.160',NULL,@collect_id825,N'1',@registor_address826), ('2022-06-01 16:18:26.160',NULL,@collect_id827,N'1',@registor_address828), ('2022-06-01 16:18:26.160',NULL,@collect_id829,N'1',@registor_address830), ('2022-06-01 16:18:26.160',NULL,@collect_id831,N'1',@registor_address832), ('2022-06-01 16:18:26.160',NULL,@collect_id833,N'1',@registor_address834), ('2022-06-01 16:18:26.160',NULL,@collect_id835,N'1',@registor_address836), ('2022-06-01 16:18:26.160',NULL,@collect_id837,N'1',@registor_address838), ('2022-06-01 16:18:26.160',NULL,@collect_id839,N'1',@registor_address840), ('2022-06-01 16:18:26.160',NULL,@collect_id841,N'1',@registor_address842), ('2022-06-01 16:18:26.160',NULL,@collect_id843,N'1',@registor_address844), ('2022-06-01 16:18:26.160',NULL,@collect_id845,N'1',@registor_address846), ('2022-06-01 16:18:26.160',NULL,@collect_id847,N'1',@registor_address848), ('2022-06-01 16:18:26.160',NULL,@collect_id849,N'1',@registor_address850), ('2022-06-01 16:18:26.160',NULL,@collect_id851,N'1',@registor_address852), ('2022-06-01 16:18:26.160',NULL,@collect_id853,N'1',@registor_address854), ('2022-06-01 16:18:26.160',NULL,@collect_id855,N'1',@registor_address856) ;select @@IDENTITY + +-------------------------------- +2022/6/1 16:18:32| +【SQL参数】:@eqmt_id0:1 + +【SQL语句】:DELETE FROM `eqmt_collect_except` WHERE ( `eqmt_id` = @eqmt_id0 ) +-------------------------------- +2022/6/1 16:18:33| +【SQL参数】:@collect_id1:55860039-64ca-4025-9d32-f2824478127b +@registor_address2:M160 +@collect_id3:55860039-64ca-4025-9d32-f2824478127b +@registor_address4:M161 +@collect_id5:55860039-64ca-4025-9d32-f2824478127b +@registor_address6:M162 +@collect_id7:55860039-64ca-4025-9d32-f2824478127b +@registor_address8:M163 +@collect_id9:55860039-64ca-4025-9d32-f2824478127b +@registor_address10:M164 +@collect_id11:55860039-64ca-4025-9d32-f2824478127b +@registor_address12:M165 +@collect_id13:55860039-64ca-4025-9d32-f2824478127b +@registor_address14:M166 +@collect_id15:55860039-64ca-4025-9d32-f2824478127b +@registor_address16:M167 +@collect_id17:55860039-64ca-4025-9d32-f2824478127b +@registor_address18:M168 +@collect_id19:55860039-64ca-4025-9d32-f2824478127b +@registor_address20:M169 +@collect_id21:55860039-64ca-4025-9d32-f2824478127b +@registor_address22:M170 +@collect_id23:55860039-64ca-4025-9d32-f2824478127b +@registor_address24:M171 +@collect_id25:55860039-64ca-4025-9d32-f2824478127b +@registor_address26:M172 +@collect_id27:55860039-64ca-4025-9d32-f2824478127b +@registor_address28:M173 +@collect_id29:55860039-64ca-4025-9d32-f2824478127b +@registor_address30:M174 +@collect_id31:55860039-64ca-4025-9d32-f2824478127b +@registor_address32:M175 +@collect_id33:55860039-64ca-4025-9d32-f2824478127b +@registor_address34:M176 +@collect_id35:55860039-64ca-4025-9d32-f2824478127b +@registor_address36:M177 +@collect_id37:55860039-64ca-4025-9d32-f2824478127b +@registor_address38:M178 +@collect_id39:55860039-64ca-4025-9d32-f2824478127b +@registor_address40:M179 +@collect_id41:55860039-64ca-4025-9d32-f2824478127b +@registor_address42:M180 +@collect_id43:55860039-64ca-4025-9d32-f2824478127b +@registor_address44:M181 +@collect_id45:55860039-64ca-4025-9d32-f2824478127b +@registor_address46:M182 +@collect_id47:55860039-64ca-4025-9d32-f2824478127b +@registor_address48:M183 +@collect_id49:55860039-64ca-4025-9d32-f2824478127b +@registor_address50:M184 +@collect_id51:55860039-64ca-4025-9d32-f2824478127b +@registor_address52:M185 +@collect_id53:55860039-64ca-4025-9d32-f2824478127b +@registor_address54:M186 +@collect_id55:55860039-64ca-4025-9d32-f2824478127b +@registor_address56:M187 +@collect_id57:55860039-64ca-4025-9d32-f2824478127b +@registor_address58:M188 +@collect_id59:55860039-64ca-4025-9d32-f2824478127b +@registor_address60:M189 +@collect_id61:55860039-64ca-4025-9d32-f2824478127b +@registor_address62:M190 +@collect_id63:55860039-64ca-4025-9d32-f2824478127b +@registor_address64:M70 +@collect_id65:55860039-64ca-4025-9d32-f2824478127b +@registor_address66:M700 +@collect_id67:55860039-64ca-4025-9d32-f2824478127b +@registor_address68:M701 +@collect_id69:55860039-64ca-4025-9d32-f2824478127b +@registor_address70:M702 +@collect_id71:55860039-64ca-4025-9d32-f2824478127b +@registor_address72:M703 +@collect_id73:55860039-64ca-4025-9d32-f2824478127b +@registor_address74:M704 +@collect_id75:55860039-64ca-4025-9d32-f2824478127b +@registor_address76:M705 +@collect_id77:55860039-64ca-4025-9d32-f2824478127b +@registor_address78:M706 +@collect_id79:55860039-64ca-4025-9d32-f2824478127b +@registor_address80:M707 +@collect_id81:55860039-64ca-4025-9d32-f2824478127b +@registor_address82:M708 +@collect_id83:55860039-64ca-4025-9d32-f2824478127b +@registor_address84:M709 +@collect_id85:55860039-64ca-4025-9d32-f2824478127b +@registor_address86:M710 +@collect_id87:55860039-64ca-4025-9d32-f2824478127b +@registor_address88:M711 +@collect_id89:55860039-64ca-4025-9d32-f2824478127b +@registor_address90:M712 +@collect_id91:55860039-64ca-4025-9d32-f2824478127b +@registor_address92:M713 +@collect_id93:55860039-64ca-4025-9d32-f2824478127b +@registor_address94:M714 +@collect_id95:55860039-64ca-4025-9d32-f2824478127b +@registor_address96:M715 +@collect_id97:55860039-64ca-4025-9d32-f2824478127b +@registor_address98:M716 +@collect_id99:55860039-64ca-4025-9d32-f2824478127b +@registor_address100:M717 +@collect_id101:55860039-64ca-4025-9d32-f2824478127b +@registor_address102:M718 +@collect_id103:55860039-64ca-4025-9d32-f2824478127b +@registor_address104:M719 +@collect_id105:55860039-64ca-4025-9d32-f2824478127b +@registor_address106:M720 +@collect_id107:55860039-64ca-4025-9d32-f2824478127b +@registor_address108:M721 +@collect_id109:55860039-64ca-4025-9d32-f2824478127b +@registor_address110:M722 +@collect_id111:55860039-64ca-4025-9d32-f2824478127b +@registor_address112:M723 +@collect_id113:55860039-64ca-4025-9d32-f2824478127b +@registor_address114:M724 +@collect_id115:55860039-64ca-4025-9d32-f2824478127b +@registor_address116:M725 +@collect_id117:55860039-64ca-4025-9d32-f2824478127b +@registor_address118:M726 +@collect_id119:55860039-64ca-4025-9d32-f2824478127b +@registor_address120:M727 +@collect_id121:55860039-64ca-4025-9d32-f2824478127b +@registor_address122:M728 +@collect_id123:55860039-64ca-4025-9d32-f2824478127b +@registor_address124:M729 +@collect_id125:55860039-64ca-4025-9d32-f2824478127b +@registor_address126:M730 +@collect_id127:55860039-64ca-4025-9d32-f2824478127b +@registor_address128:M731 +@collect_id129:55860039-64ca-4025-9d32-f2824478127b +@registor_address130:M732 +@collect_id131:55860039-64ca-4025-9d32-f2824478127b +@registor_address132:M733 +@collect_id133:55860039-64ca-4025-9d32-f2824478127b +@registor_address134:M734 +@collect_id135:55860039-64ca-4025-9d32-f2824478127b +@registor_address136:M735 +@collect_id137:55860039-64ca-4025-9d32-f2824478127b +@registor_address138:M736 +@collect_id139:55860039-64ca-4025-9d32-f2824478127b +@registor_address140:M737 +@collect_id141:55860039-64ca-4025-9d32-f2824478127b +@registor_address142:M738 +@collect_id143:55860039-64ca-4025-9d32-f2824478127b +@registor_address144:M739 +@collect_id145:55860039-64ca-4025-9d32-f2824478127b +@registor_address146:M740 +@collect_id147:55860039-64ca-4025-9d32-f2824478127b +@registor_address148:M741 +@collect_id149:55860039-64ca-4025-9d32-f2824478127b +@registor_address150:M742 +@collect_id151:55860039-64ca-4025-9d32-f2824478127b +@registor_address152:M743 +@collect_id153:55860039-64ca-4025-9d32-f2824478127b +@registor_address154:M744 +@collect_id155:55860039-64ca-4025-9d32-f2824478127b +@registor_address156:M745 +@collect_id157:55860039-64ca-4025-9d32-f2824478127b +@registor_address158:M108 +@collect_id159:55860039-64ca-4025-9d32-f2824478127b +@registor_address160:M109 +@collect_id161:55860039-64ca-4025-9d32-f2824478127b +@registor_address162:M110 +@collect_id163:55860039-64ca-4025-9d32-f2824478127b +@registor_address164:M111 +@collect_id165:55860039-64ca-4025-9d32-f2824478127b +@registor_address166:M112 +@collect_id167:55860039-64ca-4025-9d32-f2824478127b +@registor_address168:M113 +@collect_id169:55860039-64ca-4025-9d32-f2824478127b +@registor_address170:M114 +@collect_id171:55860039-64ca-4025-9d32-f2824478127b +@registor_address172:M115 +@collect_id173:55860039-64ca-4025-9d32-f2824478127b +@registor_address174:M116 +@collect_id175:55860039-64ca-4025-9d32-f2824478127b +@registor_address176:M117 +@collect_id177:55860039-64ca-4025-9d32-f2824478127b +@registor_address178:M118 +@collect_id179:55860039-64ca-4025-9d32-f2824478127b +@registor_address180:M119 +@collect_id181:55860039-64ca-4025-9d32-f2824478127b +@registor_address182:M120 +@collect_id183:55860039-64ca-4025-9d32-f2824478127b +@registor_address184:M121 +@collect_id185:55860039-64ca-4025-9d32-f2824478127b +@registor_address186:M50 +@collect_id187:55860039-64ca-4025-9d32-f2824478127b +@registor_address188:M380 +@collect_id189:55860039-64ca-4025-9d32-f2824478127b +@registor_address190:M381 +@collect_id191:55860039-64ca-4025-9d32-f2824478127b +@registor_address192:M382 +@collect_id193:55860039-64ca-4025-9d32-f2824478127b +@registor_address194:M383 +@collect_id195:55860039-64ca-4025-9d32-f2824478127b +@registor_address196:M384 +@collect_id197:55860039-64ca-4025-9d32-f2824478127b +@registor_address198:M385 +@collect_id199:55860039-64ca-4025-9d32-f2824478127b +@registor_address200:M386 +@collect_id201:55860039-64ca-4025-9d32-f2824478127b +@registor_address202:M387 +@collect_id203:55860039-64ca-4025-9d32-f2824478127b +@registor_address204:M388 +@collect_id205:55860039-64ca-4025-9d32-f2824478127b +@registor_address206:M389 +@collect_id207:55860039-64ca-4025-9d32-f2824478127b +@registor_address208:M390 +@collect_id209:55860039-64ca-4025-9d32-f2824478127b +@registor_address210:M391 +@collect_id211:55860039-64ca-4025-9d32-f2824478127b +@registor_address212:M392 +@collect_id213:55860039-64ca-4025-9d32-f2824478127b +@registor_address214:M393 +@collect_id215:55860039-64ca-4025-9d32-f2824478127b +@registor_address216:M394 +@collect_id217:55860039-64ca-4025-9d32-f2824478127b +@registor_address218:B00010 +@collect_id219:55860039-64ca-4025-9d32-f2824478127b +@registor_address220:B00011 +@collect_id221:55860039-64ca-4025-9d32-f2824478127b +@registor_address222:B00012 +@collect_id223:55860039-64ca-4025-9d32-f2824478127b +@registor_address224:B00013 +@collect_id225:55860039-64ca-4025-9d32-f2824478127b +@registor_address226:B00014 +@collect_id227:55860039-64ca-4025-9d32-f2824478127b +@registor_address228:B00015 +@collect_id229:55860039-64ca-4025-9d32-f2824478127b +@registor_address230:B00016 +@collect_id231:55860039-64ca-4025-9d32-f2824478127b +@registor_address232:B00017 +@collect_id233:55860039-64ca-4025-9d32-f2824478127b +@registor_address234:B00018 +@collect_id235:55860039-64ca-4025-9d32-f2824478127b +@registor_address236:B00019 +@collect_id237:55860039-64ca-4025-9d32-f2824478127b +@registor_address238:B0001A +@collect_id239:55860039-64ca-4025-9d32-f2824478127b +@registor_address240:B0001B +@collect_id241:55860039-64ca-4025-9d32-f2824478127b +@registor_address242:B0001C +@collect_id243:55860039-64ca-4025-9d32-f2824478127b +@registor_address244:B0001D +@collect_id245:55860039-64ca-4025-9d32-f2824478127b +@registor_address246:B0001E +@collect_id247:55860039-64ca-4025-9d32-f2824478127b +@registor_address248:B0001F +@collect_id249:55860039-64ca-4025-9d32-f2824478127b +@registor_address250:B00020 +@collect_id251:55860039-64ca-4025-9d32-f2824478127b +@registor_address252:B00021 +@collect_id253:55860039-64ca-4025-9d32-f2824478127b +@registor_address254:B00022 +@collect_id255:55860039-64ca-4025-9d32-f2824478127b +@registor_address256:B00023 +@collect_id257:55860039-64ca-4025-9d32-f2824478127b +@registor_address258:B00024 +@collect_id259:55860039-64ca-4025-9d32-f2824478127b +@registor_address260:B00025 +@collect_id261:55860039-64ca-4025-9d32-f2824478127b +@registor_address262:B00026 +@collect_id263:55860039-64ca-4025-9d32-f2824478127b +@registor_address264:B00027 +@collect_id265:55860039-64ca-4025-9d32-f2824478127b +@registor_address266:B00028 +@collect_id267:55860039-64ca-4025-9d32-f2824478127b +@registor_address268:B00029 +@collect_id269:55860039-64ca-4025-9d32-f2824478127b +@registor_address270:B0002A +@collect_id271:55860039-64ca-4025-9d32-f2824478127b +@registor_address272:B0002B +@collect_id273:55860039-64ca-4025-9d32-f2824478127b +@registor_address274:B0002C +@collect_id275:55860039-64ca-4025-9d32-f2824478127b +@registor_address276:B0002D +@collect_id277:55860039-64ca-4025-9d32-f2824478127b +@registor_address278:B0002E +@collect_id279:55860039-64ca-4025-9d32-f2824478127b +@registor_address280:B0002F +@collect_id281:55860039-64ca-4025-9d32-f2824478127b +@registor_address282:B00510 +@collect_id283:55860039-64ca-4025-9d32-f2824478127b +@registor_address284:B00511 +@collect_id285:55860039-64ca-4025-9d32-f2824478127b +@registor_address286:B00512 +@collect_id287:55860039-64ca-4025-9d32-f2824478127b +@registor_address288:B00513 +@collect_id289:55860039-64ca-4025-9d32-f2824478127b +@registor_address290:B00514 +@collect_id291:55860039-64ca-4025-9d32-f2824478127b +@registor_address292:B00515 +@collect_id293:55860039-64ca-4025-9d32-f2824478127b +@registor_address294:B00516 +@collect_id295:55860039-64ca-4025-9d32-f2824478127b +@registor_address296:B00517 +@collect_id297:55860039-64ca-4025-9d32-f2824478127b +@registor_address298:B00518 +@collect_id299:55860039-64ca-4025-9d32-f2824478127b +@registor_address300:B00519 +@collect_id301:55860039-64ca-4025-9d32-f2824478127b +@registor_address302:B0051A +@collect_id303:55860039-64ca-4025-9d32-f2824478127b +@registor_address304:B0051B +@collect_id305:55860039-64ca-4025-9d32-f2824478127b +@registor_address306:B0051C +@collect_id307:55860039-64ca-4025-9d32-f2824478127b +@registor_address308:B0051D +@collect_id309:55860039-64ca-4025-9d32-f2824478127b +@registor_address310:B0051E +@collect_id311:55860039-64ca-4025-9d32-f2824478127b +@registor_address312:B0051F +@collect_id313:55860039-64ca-4025-9d32-f2824478127b +@registor_address314:B00520 +@collect_id315:55860039-64ca-4025-9d32-f2824478127b +@registor_address316:B00521 +@collect_id317:55860039-64ca-4025-9d32-f2824478127b +@registor_address318:B00522 +@collect_id319:55860039-64ca-4025-9d32-f2824478127b +@registor_address320:B00523 +@collect_id321:55860039-64ca-4025-9d32-f2824478127b +@registor_address322:B00524 +@collect_id323:55860039-64ca-4025-9d32-f2824478127b +@registor_address324:B00525 +@collect_id325:55860039-64ca-4025-9d32-f2824478127b +@registor_address326:B00526 +@collect_id327:55860039-64ca-4025-9d32-f2824478127b +@registor_address328:B00527 +@collect_id329:55860039-64ca-4025-9d32-f2824478127b +@registor_address330:B00528 +@collect_id331:55860039-64ca-4025-9d32-f2824478127b +@registor_address332:B00529 +@collect_id333:55860039-64ca-4025-9d32-f2824478127b +@registor_address334:B0052A +@collect_id335:55860039-64ca-4025-9d32-f2824478127b +@registor_address336:B0052B +@collect_id337:55860039-64ca-4025-9d32-f2824478127b +@registor_address338:B0052C +@collect_id339:55860039-64ca-4025-9d32-f2824478127b +@registor_address340:B0052D +@collect_id341:55860039-64ca-4025-9d32-f2824478127b +@registor_address342:B0052E +@collect_id343:55860039-64ca-4025-9d32-f2824478127b +@registor_address344:B0052F +@collect_id345:55860039-64ca-4025-9d32-f2824478127b +@registor_address346:B00A10 +@collect_id347:55860039-64ca-4025-9d32-f2824478127b +@registor_address348:B00A11 +@collect_id349:55860039-64ca-4025-9d32-f2824478127b +@registor_address350:B00A12 +@collect_id351:55860039-64ca-4025-9d32-f2824478127b +@registor_address352:B00A13 +@collect_id353:55860039-64ca-4025-9d32-f2824478127b +@registor_address354:B00A14 +@collect_id355:55860039-64ca-4025-9d32-f2824478127b +@registor_address356:B00A15 +@collect_id357:55860039-64ca-4025-9d32-f2824478127b +@registor_address358:B00A16 +@collect_id359:55860039-64ca-4025-9d32-f2824478127b +@registor_address360:B00A17 +@collect_id361:55860039-64ca-4025-9d32-f2824478127b +@registor_address362:B00A18 +@collect_id363:55860039-64ca-4025-9d32-f2824478127b +@registor_address364:B00A19 +@collect_id365:55860039-64ca-4025-9d32-f2824478127b +@registor_address366:B00A1A +@collect_id367:55860039-64ca-4025-9d32-f2824478127b +@registor_address368:B00A1B +@collect_id369:55860039-64ca-4025-9d32-f2824478127b +@registor_address370:B00A1C +@collect_id371:55860039-64ca-4025-9d32-f2824478127b +@registor_address372:B00A1D +@collect_id373:55860039-64ca-4025-9d32-f2824478127b +@registor_address374:B00A1E +@collect_id375:55860039-64ca-4025-9d32-f2824478127b +@registor_address376:B00A1F +@collect_id377:55860039-64ca-4025-9d32-f2824478127b +@registor_address378:B00A20 +@collect_id379:55860039-64ca-4025-9d32-f2824478127b +@registor_address380:B00A21 +@collect_id381:55860039-64ca-4025-9d32-f2824478127b +@registor_address382:B00A22 +@collect_id383:55860039-64ca-4025-9d32-f2824478127b +@registor_address384:B00A23 +@collect_id385:55860039-64ca-4025-9d32-f2824478127b +@registor_address386:B00A24 +@collect_id387:55860039-64ca-4025-9d32-f2824478127b +@registor_address388:B00A25 +@collect_id389:55860039-64ca-4025-9d32-f2824478127b +@registor_address390:B00A26 +@collect_id391:55860039-64ca-4025-9d32-f2824478127b +@registor_address392:B00A27 +@collect_id393:55860039-64ca-4025-9d32-f2824478127b +@registor_address394:B00A28 +@collect_id395:55860039-64ca-4025-9d32-f2824478127b +@registor_address396:B00A29 +@collect_id397:55860039-64ca-4025-9d32-f2824478127b +@registor_address398:B00A2A +@collect_id399:55860039-64ca-4025-9d32-f2824478127b +@registor_address400:B00A2B +@collect_id401:55860039-64ca-4025-9d32-f2824478127b +@registor_address402:B00A2C +@collect_id403:55860039-64ca-4025-9d32-f2824478127b +@registor_address404:B00A2D +@collect_id405:55860039-64ca-4025-9d32-f2824478127b +@registor_address406:B00A2E +@collect_id407:55860039-64ca-4025-9d32-f2824478127b +@registor_address408:B00A2F +@collect_id409:55860039-64ca-4025-9d32-f2824478127b +@registor_address410:B01810 +@collect_id411:55860039-64ca-4025-9d32-f2824478127b +@registor_address412:B01811 +@collect_id413:55860039-64ca-4025-9d32-f2824478127b +@registor_address414:B01812 +@collect_id415:55860039-64ca-4025-9d32-f2824478127b +@registor_address416:B01813 +@collect_id417:55860039-64ca-4025-9d32-f2824478127b +@registor_address418:B01814 +@collect_id419:55860039-64ca-4025-9d32-f2824478127b +@registor_address420:B01815 +@collect_id421:55860039-64ca-4025-9d32-f2824478127b +@registor_address422:B01816 +@collect_id423:55860039-64ca-4025-9d32-f2824478127b +@registor_address424:B01817 +@collect_id425:55860039-64ca-4025-9d32-f2824478127b +@registor_address426:B01818 +@collect_id427:55860039-64ca-4025-9d32-f2824478127b +@registor_address428:B01819 +@collect_id429:55860039-64ca-4025-9d32-f2824478127b +@registor_address430:M160 +@collect_id431:55860039-64ca-4025-9d32-f2824478127b +@registor_address432:M161 +@collect_id433:55860039-64ca-4025-9d32-f2824478127b +@registor_address434:M162 +@collect_id435:55860039-64ca-4025-9d32-f2824478127b +@registor_address436:M163 +@collect_id437:55860039-64ca-4025-9d32-f2824478127b +@registor_address438:M164 +@collect_id439:55860039-64ca-4025-9d32-f2824478127b +@registor_address440:M165 +@collect_id441:55860039-64ca-4025-9d32-f2824478127b +@registor_address442:M166 +@collect_id443:55860039-64ca-4025-9d32-f2824478127b +@registor_address444:M167 +@collect_id445:55860039-64ca-4025-9d32-f2824478127b +@registor_address446:M168 +@collect_id447:55860039-64ca-4025-9d32-f2824478127b +@registor_address448:M169 +@collect_id449:55860039-64ca-4025-9d32-f2824478127b +@registor_address450:M170 +@collect_id451:55860039-64ca-4025-9d32-f2824478127b +@registor_address452:M171 +@collect_id453:55860039-64ca-4025-9d32-f2824478127b +@registor_address454:M172 +@collect_id455:55860039-64ca-4025-9d32-f2824478127b +@registor_address456:M173 +@collect_id457:55860039-64ca-4025-9d32-f2824478127b +@registor_address458:M174 +@collect_id459:55860039-64ca-4025-9d32-f2824478127b +@registor_address460:M175 +@collect_id461:55860039-64ca-4025-9d32-f2824478127b +@registor_address462:M176 +@collect_id463:55860039-64ca-4025-9d32-f2824478127b +@registor_address464:M177 +@collect_id465:55860039-64ca-4025-9d32-f2824478127b +@registor_address466:M178 +@collect_id467:55860039-64ca-4025-9d32-f2824478127b +@registor_address468:M179 +@collect_id469:55860039-64ca-4025-9d32-f2824478127b +@registor_address470:M180 +@collect_id471:55860039-64ca-4025-9d32-f2824478127b +@registor_address472:M181 +@collect_id473:55860039-64ca-4025-9d32-f2824478127b +@registor_address474:M182 +@collect_id475:55860039-64ca-4025-9d32-f2824478127b +@registor_address476:M183 +@collect_id477:55860039-64ca-4025-9d32-f2824478127b +@registor_address478:M184 +@collect_id479:55860039-64ca-4025-9d32-f2824478127b +@registor_address480:M185 +@collect_id481:55860039-64ca-4025-9d32-f2824478127b +@registor_address482:M186 +@collect_id483:55860039-64ca-4025-9d32-f2824478127b +@registor_address484:M187 +@collect_id485:55860039-64ca-4025-9d32-f2824478127b +@registor_address486:M188 +@collect_id487:55860039-64ca-4025-9d32-f2824478127b +@registor_address488:M189 +@collect_id489:55860039-64ca-4025-9d32-f2824478127b +@registor_address490:M190 +@collect_id491:55860039-64ca-4025-9d32-f2824478127b +@registor_address492:M70 +@collect_id493:55860039-64ca-4025-9d32-f2824478127b +@registor_address494:M700 +@collect_id495:55860039-64ca-4025-9d32-f2824478127b +@registor_address496:M701 +@collect_id497:55860039-64ca-4025-9d32-f2824478127b +@registor_address498:M702 +@collect_id499:55860039-64ca-4025-9d32-f2824478127b +@registor_address500:M703 +@collect_id501:55860039-64ca-4025-9d32-f2824478127b +@registor_address502:M704 +@collect_id503:55860039-64ca-4025-9d32-f2824478127b +@registor_address504:M705 +@collect_id505:55860039-64ca-4025-9d32-f2824478127b +@registor_address506:M706 +@collect_id507:55860039-64ca-4025-9d32-f2824478127b +@registor_address508:M707 +@collect_id509:55860039-64ca-4025-9d32-f2824478127b +@registor_address510:M708 +@collect_id511:55860039-64ca-4025-9d32-f2824478127b +@registor_address512:M709 +@collect_id513:55860039-64ca-4025-9d32-f2824478127b +@registor_address514:M710 +@collect_id515:55860039-64ca-4025-9d32-f2824478127b +@registor_address516:M711 +@collect_id517:55860039-64ca-4025-9d32-f2824478127b +@registor_address518:M712 +@collect_id519:55860039-64ca-4025-9d32-f2824478127b +@registor_address520:M713 +@collect_id521:55860039-64ca-4025-9d32-f2824478127b +@registor_address522:M714 +@collect_id523:55860039-64ca-4025-9d32-f2824478127b +@registor_address524:M715 +@collect_id525:55860039-64ca-4025-9d32-f2824478127b +@registor_address526:M716 +@collect_id527:55860039-64ca-4025-9d32-f2824478127b +@registor_address528:M717 +@collect_id529:55860039-64ca-4025-9d32-f2824478127b +@registor_address530:M718 +@collect_id531:55860039-64ca-4025-9d32-f2824478127b +@registor_address532:M719 +@collect_id533:55860039-64ca-4025-9d32-f2824478127b +@registor_address534:M720 +@collect_id535:55860039-64ca-4025-9d32-f2824478127b +@registor_address536:M721 +@collect_id537:55860039-64ca-4025-9d32-f2824478127b +@registor_address538:M722 +@collect_id539:55860039-64ca-4025-9d32-f2824478127b +@registor_address540:M723 +@collect_id541:55860039-64ca-4025-9d32-f2824478127b +@registor_address542:M724 +@collect_id543:55860039-64ca-4025-9d32-f2824478127b +@registor_address544:M725 +@collect_id545:55860039-64ca-4025-9d32-f2824478127b +@registor_address546:M726 +@collect_id547:55860039-64ca-4025-9d32-f2824478127b +@registor_address548:M727 +@collect_id549:55860039-64ca-4025-9d32-f2824478127b +@registor_address550:M728 +@collect_id551:55860039-64ca-4025-9d32-f2824478127b +@registor_address552:M729 +@collect_id553:55860039-64ca-4025-9d32-f2824478127b +@registor_address554:M730 +@collect_id555:55860039-64ca-4025-9d32-f2824478127b +@registor_address556:M731 +@collect_id557:55860039-64ca-4025-9d32-f2824478127b +@registor_address558:M732 +@collect_id559:55860039-64ca-4025-9d32-f2824478127b +@registor_address560:M733 +@collect_id561:55860039-64ca-4025-9d32-f2824478127b +@registor_address562:M734 +@collect_id563:55860039-64ca-4025-9d32-f2824478127b +@registor_address564:M735 +@collect_id565:55860039-64ca-4025-9d32-f2824478127b +@registor_address566:M736 +@collect_id567:55860039-64ca-4025-9d32-f2824478127b +@registor_address568:M737 +@collect_id569:55860039-64ca-4025-9d32-f2824478127b +@registor_address570:M738 +@collect_id571:55860039-64ca-4025-9d32-f2824478127b +@registor_address572:M739 +@collect_id573:55860039-64ca-4025-9d32-f2824478127b +@registor_address574:M740 +@collect_id575:55860039-64ca-4025-9d32-f2824478127b +@registor_address576:M741 +@collect_id577:55860039-64ca-4025-9d32-f2824478127b +@registor_address578:M742 +@collect_id579:55860039-64ca-4025-9d32-f2824478127b +@registor_address580:M743 +@collect_id581:55860039-64ca-4025-9d32-f2824478127b +@registor_address582:M744 +@collect_id583:55860039-64ca-4025-9d32-f2824478127b +@registor_address584:M745 +@collect_id585:55860039-64ca-4025-9d32-f2824478127b +@registor_address586:M108 +@collect_id587:55860039-64ca-4025-9d32-f2824478127b +@registor_address588:M109 +@collect_id589:55860039-64ca-4025-9d32-f2824478127b +@registor_address590:M110 +@collect_id591:55860039-64ca-4025-9d32-f2824478127b +@registor_address592:M111 +@collect_id593:55860039-64ca-4025-9d32-f2824478127b +@registor_address594:M112 +@collect_id595:55860039-64ca-4025-9d32-f2824478127b +@registor_address596:M113 +@collect_id597:55860039-64ca-4025-9d32-f2824478127b +@registor_address598:M114 +@collect_id599:55860039-64ca-4025-9d32-f2824478127b +@registor_address600:M115 +@collect_id601:55860039-64ca-4025-9d32-f2824478127b +@registor_address602:M116 +@collect_id603:55860039-64ca-4025-9d32-f2824478127b +@registor_address604:M117 +@collect_id605:55860039-64ca-4025-9d32-f2824478127b +@registor_address606:M118 +@collect_id607:55860039-64ca-4025-9d32-f2824478127b +@registor_address608:M119 +@collect_id609:55860039-64ca-4025-9d32-f2824478127b +@registor_address610:M120 +@collect_id611:55860039-64ca-4025-9d32-f2824478127b +@registor_address612:M121 +@collect_id613:55860039-64ca-4025-9d32-f2824478127b +@registor_address614:M50 +@collect_id615:55860039-64ca-4025-9d32-f2824478127b +@registor_address616:M380 +@collect_id617:55860039-64ca-4025-9d32-f2824478127b +@registor_address618:M381 +@collect_id619:55860039-64ca-4025-9d32-f2824478127b +@registor_address620:M382 +@collect_id621:55860039-64ca-4025-9d32-f2824478127b +@registor_address622:M383 +@collect_id623:55860039-64ca-4025-9d32-f2824478127b +@registor_address624:M384 +@collect_id625:55860039-64ca-4025-9d32-f2824478127b +@registor_address626:M385 +@collect_id627:55860039-64ca-4025-9d32-f2824478127b +@registor_address628:M386 +@collect_id629:55860039-64ca-4025-9d32-f2824478127b +@registor_address630:M387 +@collect_id631:55860039-64ca-4025-9d32-f2824478127b +@registor_address632:M388 +@collect_id633:55860039-64ca-4025-9d32-f2824478127b +@registor_address634:M389 +@collect_id635:55860039-64ca-4025-9d32-f2824478127b +@registor_address636:M390 +@collect_id637:55860039-64ca-4025-9d32-f2824478127b +@registor_address638:M391 +@collect_id639:55860039-64ca-4025-9d32-f2824478127b +@registor_address640:M392 +@collect_id641:55860039-64ca-4025-9d32-f2824478127b +@registor_address642:M393 +@collect_id643:55860039-64ca-4025-9d32-f2824478127b +@registor_address644:M394 +@collect_id645:55860039-64ca-4025-9d32-f2824478127b +@registor_address646:B00010 +@collect_id647:55860039-64ca-4025-9d32-f2824478127b +@registor_address648:B00011 +@collect_id649:55860039-64ca-4025-9d32-f2824478127b +@registor_address650:B00012 +@collect_id651:55860039-64ca-4025-9d32-f2824478127b +@registor_address652:B00013 +@collect_id653:55860039-64ca-4025-9d32-f2824478127b +@registor_address654:B00014 +@collect_id655:55860039-64ca-4025-9d32-f2824478127b +@registor_address656:B00015 +@collect_id657:55860039-64ca-4025-9d32-f2824478127b +@registor_address658:B00016 +@collect_id659:55860039-64ca-4025-9d32-f2824478127b +@registor_address660:B00017 +@collect_id661:55860039-64ca-4025-9d32-f2824478127b +@registor_address662:B00018 +@collect_id663:55860039-64ca-4025-9d32-f2824478127b +@registor_address664:B00019 +@collect_id665:55860039-64ca-4025-9d32-f2824478127b +@registor_address666:B0001A +@collect_id667:55860039-64ca-4025-9d32-f2824478127b +@registor_address668:B0001B +@collect_id669:55860039-64ca-4025-9d32-f2824478127b +@registor_address670:B0001C +@collect_id671:55860039-64ca-4025-9d32-f2824478127b +@registor_address672:B0001D +@collect_id673:55860039-64ca-4025-9d32-f2824478127b +@registor_address674:B0001E +@collect_id675:55860039-64ca-4025-9d32-f2824478127b +@registor_address676:B0001F +@collect_id677:55860039-64ca-4025-9d32-f2824478127b +@registor_address678:B00020 +@collect_id679:55860039-64ca-4025-9d32-f2824478127b +@registor_address680:B00021 +@collect_id681:55860039-64ca-4025-9d32-f2824478127b +@registor_address682:B00022 +@collect_id683:55860039-64ca-4025-9d32-f2824478127b +@registor_address684:B00023 +@collect_id685:55860039-64ca-4025-9d32-f2824478127b +@registor_address686:B00024 +@collect_id687:55860039-64ca-4025-9d32-f2824478127b +@registor_address688:B00025 +@collect_id689:55860039-64ca-4025-9d32-f2824478127b +@registor_address690:B00026 +@collect_id691:55860039-64ca-4025-9d32-f2824478127b +@registor_address692:B00027 +@collect_id693:55860039-64ca-4025-9d32-f2824478127b +@registor_address694:B00028 +@collect_id695:55860039-64ca-4025-9d32-f2824478127b +@registor_address696:B00029 +@collect_id697:55860039-64ca-4025-9d32-f2824478127b +@registor_address698:B0002A +@collect_id699:55860039-64ca-4025-9d32-f2824478127b +@registor_address700:B0002B +@collect_id701:55860039-64ca-4025-9d32-f2824478127b +@registor_address702:B0002C +@collect_id703:55860039-64ca-4025-9d32-f2824478127b +@registor_address704:B0002D +@collect_id705:55860039-64ca-4025-9d32-f2824478127b +@registor_address706:B0002E +@collect_id707:55860039-64ca-4025-9d32-f2824478127b +@registor_address708:B0002F +@collect_id709:55860039-64ca-4025-9d32-f2824478127b +@registor_address710:B00510 +@collect_id711:55860039-64ca-4025-9d32-f2824478127b +@registor_address712:B00511 +@collect_id713:55860039-64ca-4025-9d32-f2824478127b +@registor_address714:B00512 +@collect_id715:55860039-64ca-4025-9d32-f2824478127b +@registor_address716:B00513 +@collect_id717:55860039-64ca-4025-9d32-f2824478127b +@registor_address718:B00514 +@collect_id719:55860039-64ca-4025-9d32-f2824478127b +@registor_address720:B00515 +@collect_id721:55860039-64ca-4025-9d32-f2824478127b +@registor_address722:B00516 +@collect_id723:55860039-64ca-4025-9d32-f2824478127b +@registor_address724:B00517 +@collect_id725:55860039-64ca-4025-9d32-f2824478127b +@registor_address726:B00518 +@collect_id727:55860039-64ca-4025-9d32-f2824478127b +@registor_address728:B00519 +@collect_id729:55860039-64ca-4025-9d32-f2824478127b +@registor_address730:B0051A +@collect_id731:55860039-64ca-4025-9d32-f2824478127b +@registor_address732:B0051B +@collect_id733:55860039-64ca-4025-9d32-f2824478127b +@registor_address734:B0051C +@collect_id735:55860039-64ca-4025-9d32-f2824478127b +@registor_address736:B0051D +@collect_id737:55860039-64ca-4025-9d32-f2824478127b +@registor_address738:B0051E +@collect_id739:55860039-64ca-4025-9d32-f2824478127b +@registor_address740:B0051F +@collect_id741:55860039-64ca-4025-9d32-f2824478127b +@registor_address742:B00520 +@collect_id743:55860039-64ca-4025-9d32-f2824478127b +@registor_address744:B00521 +@collect_id745:55860039-64ca-4025-9d32-f2824478127b +@registor_address746:B00522 +@collect_id747:55860039-64ca-4025-9d32-f2824478127b +@registor_address748:B00523 +@collect_id749:55860039-64ca-4025-9d32-f2824478127b +@registor_address750:B00524 +@collect_id751:55860039-64ca-4025-9d32-f2824478127b +@registor_address752:B00525 +@collect_id753:55860039-64ca-4025-9d32-f2824478127b +@registor_address754:B00526 +@collect_id755:55860039-64ca-4025-9d32-f2824478127b +@registor_address756:B00527 +@collect_id757:55860039-64ca-4025-9d32-f2824478127b +@registor_address758:B00528 +@collect_id759:55860039-64ca-4025-9d32-f2824478127b +@registor_address760:B00529 +@collect_id761:55860039-64ca-4025-9d32-f2824478127b +@registor_address762:B0052A +@collect_id763:55860039-64ca-4025-9d32-f2824478127b +@registor_address764:B0052B +@collect_id765:55860039-64ca-4025-9d32-f2824478127b +@registor_address766:B0052C +@collect_id767:55860039-64ca-4025-9d32-f2824478127b +@registor_address768:B0052D +@collect_id769:55860039-64ca-4025-9d32-f2824478127b +@registor_address770:B0052E +@collect_id771:55860039-64ca-4025-9d32-f2824478127b +@registor_address772:B0052F +@collect_id773:55860039-64ca-4025-9d32-f2824478127b +@registor_address774:B00A10 +@collect_id775:55860039-64ca-4025-9d32-f2824478127b +@registor_address776:B00A11 +@collect_id777:55860039-64ca-4025-9d32-f2824478127b +@registor_address778:B00A12 +@collect_id779:55860039-64ca-4025-9d32-f2824478127b +@registor_address780:B00A13 +@collect_id781:55860039-64ca-4025-9d32-f2824478127b +@registor_address782:B00A14 +@collect_id783:55860039-64ca-4025-9d32-f2824478127b +@registor_address784:B00A15 +@collect_id785:55860039-64ca-4025-9d32-f2824478127b +@registor_address786:B00A16 +@collect_id787:55860039-64ca-4025-9d32-f2824478127b +@registor_address788:B00A17 +@collect_id789:55860039-64ca-4025-9d32-f2824478127b +@registor_address790:B00A18 +@collect_id791:55860039-64ca-4025-9d32-f2824478127b +@registor_address792:B00A19 +@collect_id793:55860039-64ca-4025-9d32-f2824478127b +@registor_address794:B00A1A +@collect_id795:55860039-64ca-4025-9d32-f2824478127b +@registor_address796:B00A1B +@collect_id797:55860039-64ca-4025-9d32-f2824478127b +@registor_address798:B00A1C +@collect_id799:55860039-64ca-4025-9d32-f2824478127b +@registor_address800:B00A1D +@collect_id801:55860039-64ca-4025-9d32-f2824478127b +@registor_address802:B00A1E +@collect_id803:55860039-64ca-4025-9d32-f2824478127b +@registor_address804:B00A1F +@collect_id805:55860039-64ca-4025-9d32-f2824478127b +@registor_address806:B00A20 +@collect_id807:55860039-64ca-4025-9d32-f2824478127b +@registor_address808:B00A21 +@collect_id809:55860039-64ca-4025-9d32-f2824478127b +@registor_address810:B00A22 +@collect_id811:55860039-64ca-4025-9d32-f2824478127b +@registor_address812:B00A23 +@collect_id813:55860039-64ca-4025-9d32-f2824478127b +@registor_address814:B00A24 +@collect_id815:55860039-64ca-4025-9d32-f2824478127b +@registor_address816:B00A25 +@collect_id817:55860039-64ca-4025-9d32-f2824478127b +@registor_address818:B00A26 +@collect_id819:55860039-64ca-4025-9d32-f2824478127b +@registor_address820:B00A27 +@collect_id821:55860039-64ca-4025-9d32-f2824478127b +@registor_address822:B00A28 +@collect_id823:55860039-64ca-4025-9d32-f2824478127b +@registor_address824:B00A29 +@collect_id825:55860039-64ca-4025-9d32-f2824478127b +@registor_address826:B00A2A +@collect_id827:55860039-64ca-4025-9d32-f2824478127b +@registor_address828:B00A2B +@collect_id829:55860039-64ca-4025-9d32-f2824478127b +@registor_address830:B00A2C +@collect_id831:55860039-64ca-4025-9d32-f2824478127b +@registor_address832:B00A2D +@collect_id833:55860039-64ca-4025-9d32-f2824478127b +@registor_address834:B00A2E +@collect_id835:55860039-64ca-4025-9d32-f2824478127b +@registor_address836:B00A2F +@collect_id837:55860039-64ca-4025-9d32-f2824478127b +@registor_address838:B01810 +@collect_id839:55860039-64ca-4025-9d32-f2824478127b +@registor_address840:B01811 +@collect_id841:55860039-64ca-4025-9d32-f2824478127b +@registor_address842:B01812 +@collect_id843:55860039-64ca-4025-9d32-f2824478127b +@registor_address844:B01813 +@collect_id845:55860039-64ca-4025-9d32-f2824478127b +@registor_address846:B01814 +@collect_id847:55860039-64ca-4025-9d32-f2824478127b +@registor_address848:B01815 +@collect_id849:55860039-64ca-4025-9d32-f2824478127b +@registor_address850:B01816 +@collect_id851:55860039-64ca-4025-9d32-f2824478127b +@registor_address852:B01817 +@collect_id853:55860039-64ca-4025-9d32-f2824478127b +@registor_address854:B01818 +@collect_id855:55860039-64ca-4025-9d32-f2824478127b +@registor_address856:B01819 + +【SQL语句】:INSERT INTO `eqmt_collect_except` (`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`registor_address`) VALUES('2022-06-01 16:18:33.401',NULL,@collect_id1,N'1',@registor_address2), ('2022-06-01 16:18:33.402',NULL,@collect_id3,N'1',@registor_address4), ('2022-06-01 16:18:33.402',NULL,@collect_id5,N'1',@registor_address6), ('2022-06-01 16:18:33.402',NULL,@collect_id7,N'1',@registor_address8), ('2022-06-01 16:18:33.402',NULL,@collect_id9,N'1',@registor_address10), ('2022-06-01 16:18:33.402',NULL,@collect_id11,N'1',@registor_address12), ('2022-06-01 16:18:33.402',NULL,@collect_id13,N'1',@registor_address14), ('2022-06-01 16:18:33.402',NULL,@collect_id15,N'1',@registor_address16), ('2022-06-01 16:18:33.402',NULL,@collect_id17,N'1',@registor_address18), ('2022-06-01 16:18:33.402',NULL,@collect_id19,N'1',@registor_address20), ('2022-06-01 16:18:33.402',NULL,@collect_id21,N'1',@registor_address22), ('2022-06-01 16:18:33.402',NULL,@collect_id23,N'1',@registor_address24), ('2022-06-01 16:18:33.402',NULL,@collect_id25,N'1',@registor_address26), ('2022-06-01 16:18:33.402',NULL,@collect_id27,N'1',@registor_address28), ('2022-06-01 16:18:33.402',NULL,@collect_id29,N'1',@registor_address30), ('2022-06-01 16:18:33.402',NULL,@collect_id31,N'1',@registor_address32), ('2022-06-01 16:18:33.402',NULL,@collect_id33,N'1',@registor_address34), ('2022-06-01 16:18:33.402',NULL,@collect_id35,N'1',@registor_address36), ('2022-06-01 16:18:33.402',NULL,@collect_id37,N'1',@registor_address38), ('2022-06-01 16:18:33.402',NULL,@collect_id39,N'1',@registor_address40), ('2022-06-01 16:18:33.402',NULL,@collect_id41,N'1',@registor_address42), ('2022-06-01 16:18:33.402',NULL,@collect_id43,N'1',@registor_address44), ('2022-06-01 16:18:33.402',NULL,@collect_id45,N'1',@registor_address46), ('2022-06-01 16:18:33.402',NULL,@collect_id47,N'1',@registor_address48), ('2022-06-01 16:18:33.402',NULL,@collect_id49,N'1',@registor_address50), ('2022-06-01 16:18:33.402',NULL,@collect_id51,N'1',@registor_address52), ('2022-06-01 16:18:33.402',NULL,@collect_id53,N'1',@registor_address54), ('2022-06-01 16:18:33.402',NULL,@collect_id55,N'1',@registor_address56), ('2022-06-01 16:18:33.402',NULL,@collect_id57,N'1',@registor_address58), ('2022-06-01 16:18:33.402',NULL,@collect_id59,N'1',@registor_address60), ('2022-06-01 16:18:33.402',NULL,@collect_id61,N'1',@registor_address62), ('2022-06-01 16:18:33.402',NULL,@collect_id63,N'1',@registor_address64), ('2022-06-01 16:18:33.402',NULL,@collect_id65,N'1',@registor_address66), ('2022-06-01 16:18:33.402',NULL,@collect_id67,N'1',@registor_address68), ('2022-06-01 16:18:33.402',NULL,@collect_id69,N'1',@registor_address70), ('2022-06-01 16:18:33.402',NULL,@collect_id71,N'1',@registor_address72), ('2022-06-01 16:18:33.402',NULL,@collect_id73,N'1',@registor_address74), ('2022-06-01 16:18:33.402',NULL,@collect_id75,N'1',@registor_address76), ('2022-06-01 16:18:33.402',NULL,@collect_id77,N'1',@registor_address78), ('2022-06-01 16:18:33.402',NULL,@collect_id79,N'1',@registor_address80), ('2022-06-01 16:18:33.402',NULL,@collect_id81,N'1',@registor_address82), ('2022-06-01 16:18:33.402',NULL,@collect_id83,N'1',@registor_address84), ('2022-06-01 16:18:33.402',NULL,@collect_id85,N'1',@registor_address86), ('2022-06-01 16:18:33.402',NULL,@collect_id87,N'1',@registor_address88), ('2022-06-01 16:18:33.402',NULL,@collect_id89,N'1',@registor_address90), ('2022-06-01 16:18:33.402',NULL,@collect_id91,N'1',@registor_address92), ('2022-06-01 16:18:33.402',NULL,@collect_id93,N'1',@registor_address94), ('2022-06-01 16:18:33.402',NULL,@collect_id95,N'1',@registor_address96), ('2022-06-01 16:18:33.402',NULL,@collect_id97,N'1',@registor_address98), ('2022-06-01 16:18:33.402',NULL,@collect_id99,N'1',@registor_address100), ('2022-06-01 16:18:33.402',NULL,@collect_id101,N'1',@registor_address102), ('2022-06-01 16:18:33.402',NULL,@collect_id103,N'1',@registor_address104), ('2022-06-01 16:18:33.402',NULL,@collect_id105,N'1',@registor_address106), ('2022-06-01 16:18:33.402',NULL,@collect_id107,N'1',@registor_address108), ('2022-06-01 16:18:33.402',NULL,@collect_id109,N'1',@registor_address110), ('2022-06-01 16:18:33.402',NULL,@collect_id111,N'1',@registor_address112), ('2022-06-01 16:18:33.402',NULL,@collect_id113,N'1',@registor_address114), ('2022-06-01 16:18:33.402',NULL,@collect_id115,N'1',@registor_address116), ('2022-06-01 16:18:33.402',NULL,@collect_id117,N'1',@registor_address118), ('2022-06-01 16:18:33.402',NULL,@collect_id119,N'1',@registor_address120), ('2022-06-01 16:18:33.402',NULL,@collect_id121,N'1',@registor_address122), ('2022-06-01 16:18:33.402',NULL,@collect_id123,N'1',@registor_address124), ('2022-06-01 16:18:33.402',NULL,@collect_id125,N'1',@registor_address126), ('2022-06-01 16:18:33.402',NULL,@collect_id127,N'1',@registor_address128), ('2022-06-01 16:18:33.402',NULL,@collect_id129,N'1',@registor_address130), ('2022-06-01 16:18:33.402',NULL,@collect_id131,N'1',@registor_address132), ('2022-06-01 16:18:33.402',NULL,@collect_id133,N'1',@registor_address134), ('2022-06-01 16:18:33.402',NULL,@collect_id135,N'1',@registor_address136), ('2022-06-01 16:18:33.402',NULL,@collect_id137,N'1',@registor_address138), ('2022-06-01 16:18:33.402',NULL,@collect_id139,N'1',@registor_address140), ('2022-06-01 16:18:33.402',NULL,@collect_id141,N'1',@registor_address142), ('2022-06-01 16:18:33.402',NULL,@collect_id143,N'1',@registor_address144), ('2022-06-01 16:18:33.402',NULL,@collect_id145,N'1',@registor_address146), ('2022-06-01 16:18:33.402',NULL,@collect_id147,N'1',@registor_address148), ('2022-06-01 16:18:33.402',NULL,@collect_id149,N'1',@registor_address150), ('2022-06-01 16:18:33.402',NULL,@collect_id151,N'1',@registor_address152), ('2022-06-01 16:18:33.402',NULL,@collect_id153,N'1',@registor_address154), ('2022-06-01 16:18:33.402',NULL,@collect_id155,N'1',@registor_address156), ('2022-06-01 16:18:33.402',NULL,@collect_id157,N'1',@registor_address158), ('2022-06-01 16:18:33.402',NULL,@collect_id159,N'1',@registor_address160), ('2022-06-01 16:18:33.402',NULL,@collect_id161,N'1',@registor_address162), ('2022-06-01 16:18:33.402',NULL,@collect_id163,N'1',@registor_address164), ('2022-06-01 16:18:33.402',NULL,@collect_id165,N'1',@registor_address166), ('2022-06-01 16:18:33.402',NULL,@collect_id167,N'1',@registor_address168), ('2022-06-01 16:18:33.402',NULL,@collect_id169,N'1',@registor_address170), ('2022-06-01 16:18:33.402',NULL,@collect_id171,N'1',@registor_address172), ('2022-06-01 16:18:33.402',NULL,@collect_id173,N'1',@registor_address174), ('2022-06-01 16:18:33.402',NULL,@collect_id175,N'1',@registor_address176), ('2022-06-01 16:18:33.402',NULL,@collect_id177,N'1',@registor_address178), ('2022-06-01 16:18:33.402',NULL,@collect_id179,N'1',@registor_address180), ('2022-06-01 16:18:33.402',NULL,@collect_id181,N'1',@registor_address182), ('2022-06-01 16:18:33.402',NULL,@collect_id183,N'1',@registor_address184), ('2022-06-01 16:18:33.402',NULL,@collect_id185,N'1',@registor_address186), ('2022-06-01 16:18:33.402',NULL,@collect_id187,N'1',@registor_address188), ('2022-06-01 16:18:33.402',NULL,@collect_id189,N'1',@registor_address190), ('2022-06-01 16:18:33.402',NULL,@collect_id191,N'1',@registor_address192), ('2022-06-01 16:18:33.402',NULL,@collect_id193,N'1',@registor_address194), ('2022-06-01 16:18:33.402',NULL,@collect_id195,N'1',@registor_address196), ('2022-06-01 16:18:33.402',NULL,@collect_id197,N'1',@registor_address198), ('2022-06-01 16:18:33.402',NULL,@collect_id199,N'1',@registor_address200), ('2022-06-01 16:18:33.402',NULL,@collect_id201,N'1',@registor_address202), ('2022-06-01 16:18:33.402',NULL,@collect_id203,N'1',@registor_address204), ('2022-06-01 16:18:33.402',NULL,@collect_id205,N'1',@registor_address206), ('2022-06-01 16:18:33.402',NULL,@collect_id207,N'1',@registor_address208), ('2022-06-01 16:18:33.402',NULL,@collect_id209,N'1',@registor_address210), ('2022-06-01 16:18:33.402',NULL,@collect_id211,N'1',@registor_address212), ('2022-06-01 16:18:33.402',NULL,@collect_id213,N'1',@registor_address214), ('2022-06-01 16:18:33.402',NULL,@collect_id215,N'1',@registor_address216), ('2022-06-01 16:18:33.402',NULL,@collect_id217,N'1',@registor_address218), ('2022-06-01 16:18:33.402',NULL,@collect_id219,N'1',@registor_address220), ('2022-06-01 16:18:33.402',NULL,@collect_id221,N'1',@registor_address222), ('2022-06-01 16:18:33.402',NULL,@collect_id223,N'1',@registor_address224), ('2022-06-01 16:18:33.402',NULL,@collect_id225,N'1',@registor_address226), ('2022-06-01 16:18:33.402',NULL,@collect_id227,N'1',@registor_address228), ('2022-06-01 16:18:33.402',NULL,@collect_id229,N'1',@registor_address230), ('2022-06-01 16:18:33.402',NULL,@collect_id231,N'1',@registor_address232), ('2022-06-01 16:18:33.402',NULL,@collect_id233,N'1',@registor_address234), ('2022-06-01 16:18:33.402',NULL,@collect_id235,N'1',@registor_address236), ('2022-06-01 16:18:33.402',NULL,@collect_id237,N'1',@registor_address238), ('2022-06-01 16:18:33.402',NULL,@collect_id239,N'1',@registor_address240), ('2022-06-01 16:18:33.402',NULL,@collect_id241,N'1',@registor_address242), ('2022-06-01 16:18:33.402',NULL,@collect_id243,N'1',@registor_address244), ('2022-06-01 16:18:33.402',NULL,@collect_id245,N'1',@registor_address246), ('2022-06-01 16:18:33.402',NULL,@collect_id247,N'1',@registor_address248), ('2022-06-01 16:18:33.402',NULL,@collect_id249,N'1',@registor_address250), ('2022-06-01 16:18:33.402',NULL,@collect_id251,N'1',@registor_address252), ('2022-06-01 16:18:33.402',NULL,@collect_id253,N'1',@registor_address254), ('2022-06-01 16:18:33.402',NULL,@collect_id255,N'1',@registor_address256), ('2022-06-01 16:18:33.402',NULL,@collect_id257,N'1',@registor_address258), ('2022-06-01 16:18:33.402',NULL,@collect_id259,N'1',@registor_address260), ('2022-06-01 16:18:33.402',NULL,@collect_id261,N'1',@registor_address262), ('2022-06-01 16:18:33.402',NULL,@collect_id263,N'1',@registor_address264), ('2022-06-01 16:18:33.402',NULL,@collect_id265,N'1',@registor_address266), ('2022-06-01 16:18:33.402',NULL,@collect_id267,N'1',@registor_address268), ('2022-06-01 16:18:33.402',NULL,@collect_id269,N'1',@registor_address270), ('2022-06-01 16:18:33.402',NULL,@collect_id271,N'1',@registor_address272), ('2022-06-01 16:18:33.402',NULL,@collect_id273,N'1',@registor_address274), ('2022-06-01 16:18:33.402',NULL,@collect_id275,N'1',@registor_address276), ('2022-06-01 16:18:33.402',NULL,@collect_id277,N'1',@registor_address278), ('2022-06-01 16:18:33.402',NULL,@collect_id279,N'1',@registor_address280), ('2022-06-01 16:18:33.402',NULL,@collect_id281,N'1',@registor_address282), ('2022-06-01 16:18:33.402',NULL,@collect_id283,N'1',@registor_address284), ('2022-06-01 16:18:33.402',NULL,@collect_id285,N'1',@registor_address286), ('2022-06-01 16:18:33.402',NULL,@collect_id287,N'1',@registor_address288), ('2022-06-01 16:18:33.402',NULL,@collect_id289,N'1',@registor_address290), ('2022-06-01 16:18:33.402',NULL,@collect_id291,N'1',@registor_address292), ('2022-06-01 16:18:33.402',NULL,@collect_id293,N'1',@registor_address294), ('2022-06-01 16:18:33.402',NULL,@collect_id295,N'1',@registor_address296), ('2022-06-01 16:18:33.402',NULL,@collect_id297,N'1',@registor_address298), ('2022-06-01 16:18:33.402',NULL,@collect_id299,N'1',@registor_address300), ('2022-06-01 16:18:33.402',NULL,@collect_id301,N'1',@registor_address302), ('2022-06-01 16:18:33.402',NULL,@collect_id303,N'1',@registor_address304), ('2022-06-01 16:18:33.402',NULL,@collect_id305,N'1',@registor_address306), ('2022-06-01 16:18:33.402',NULL,@collect_id307,N'1',@registor_address308), ('2022-06-01 16:18:33.402',NULL,@collect_id309,N'1',@registor_address310), ('2022-06-01 16:18:33.402',NULL,@collect_id311,N'1',@registor_address312), ('2022-06-01 16:18:33.402',NULL,@collect_id313,N'1',@registor_address314), ('2022-06-01 16:18:33.402',NULL,@collect_id315,N'1',@registor_address316), ('2022-06-01 16:18:33.402',NULL,@collect_id317,N'1',@registor_address318), ('2022-06-01 16:18:33.402',NULL,@collect_id319,N'1',@registor_address320), ('2022-06-01 16:18:33.402',NULL,@collect_id321,N'1',@registor_address322), ('2022-06-01 16:18:33.402',NULL,@collect_id323,N'1',@registor_address324), ('2022-06-01 16:18:33.402',NULL,@collect_id325,N'1',@registor_address326), ('2022-06-01 16:18:33.402',NULL,@collect_id327,N'1',@registor_address328), ('2022-06-01 16:18:33.402',NULL,@collect_id329,N'1',@registor_address330), ('2022-06-01 16:18:33.402',NULL,@collect_id331,N'1',@registor_address332), ('2022-06-01 16:18:33.402',NULL,@collect_id333,N'1',@registor_address334), ('2022-06-01 16:18:33.402',NULL,@collect_id335,N'1',@registor_address336), ('2022-06-01 16:18:33.402',NULL,@collect_id337,N'1',@registor_address338), ('2022-06-01 16:18:33.402',NULL,@collect_id339,N'1',@registor_address340), ('2022-06-01 16:18:33.402',NULL,@collect_id341,N'1',@registor_address342), ('2022-06-01 16:18:33.402',NULL,@collect_id343,N'1',@registor_address344), ('2022-06-01 16:18:33.402',NULL,@collect_id345,N'1',@registor_address346), ('2022-06-01 16:18:33.402',NULL,@collect_id347,N'1',@registor_address348), ('2022-06-01 16:18:33.402',NULL,@collect_id349,N'1',@registor_address350), ('2022-06-01 16:18:33.402',NULL,@collect_id351,N'1',@registor_address352), ('2022-06-01 16:18:33.402',NULL,@collect_id353,N'1',@registor_address354), ('2022-06-01 16:18:33.402',NULL,@collect_id355,N'1',@registor_address356), ('2022-06-01 16:18:33.402',NULL,@collect_id357,N'1',@registor_address358), ('2022-06-01 16:18:33.402',NULL,@collect_id359,N'1',@registor_address360), ('2022-06-01 16:18:33.402',NULL,@collect_id361,N'1',@registor_address362), ('2022-06-01 16:18:33.402',NULL,@collect_id363,N'1',@registor_address364), ('2022-06-01 16:18:33.402',NULL,@collect_id365,N'1',@registor_address366), ('2022-06-01 16:18:33.402',NULL,@collect_id367,N'1',@registor_address368), ('2022-06-01 16:18:33.402',NULL,@collect_id369,N'1',@registor_address370), ('2022-06-01 16:18:33.402',NULL,@collect_id371,N'1',@registor_address372), ('2022-06-01 16:18:33.402',NULL,@collect_id373,N'1',@registor_address374), ('2022-06-01 16:18:33.402',NULL,@collect_id375,N'1',@registor_address376), ('2022-06-01 16:18:33.402',NULL,@collect_id377,N'1',@registor_address378), ('2022-06-01 16:18:33.402',NULL,@collect_id379,N'1',@registor_address380), ('2022-06-01 16:18:33.402',NULL,@collect_id381,N'1',@registor_address382), ('2022-06-01 16:18:33.402',NULL,@collect_id383,N'1',@registor_address384), ('2022-06-01 16:18:33.402',NULL,@collect_id385,N'1',@registor_address386), ('2022-06-01 16:18:33.402',NULL,@collect_id387,N'1',@registor_address388), ('2022-06-01 16:18:33.402',NULL,@collect_id389,N'1',@registor_address390), ('2022-06-01 16:18:33.402',NULL,@collect_id391,N'1',@registor_address392), ('2022-06-01 16:18:33.402',NULL,@collect_id393,N'1',@registor_address394), ('2022-06-01 16:18:33.402',NULL,@collect_id395,N'1',@registor_address396), ('2022-06-01 16:18:33.402',NULL,@collect_id397,N'1',@registor_address398), ('2022-06-01 16:18:33.402',NULL,@collect_id399,N'1',@registor_address400), ('2022-06-01 16:18:33.402',NULL,@collect_id401,N'1',@registor_address402), ('2022-06-01 16:18:33.402',NULL,@collect_id403,N'1',@registor_address404), ('2022-06-01 16:18:33.402',NULL,@collect_id405,N'1',@registor_address406), ('2022-06-01 16:18:33.402',NULL,@collect_id407,N'1',@registor_address408), ('2022-06-01 16:18:33.402',NULL,@collect_id409,N'1',@registor_address410), ('2022-06-01 16:18:33.402',NULL,@collect_id411,N'1',@registor_address412), ('2022-06-01 16:18:33.402',NULL,@collect_id413,N'1',@registor_address414), ('2022-06-01 16:18:33.402',NULL,@collect_id415,N'1',@registor_address416), ('2022-06-01 16:18:33.402',NULL,@collect_id417,N'1',@registor_address418), ('2022-06-01 16:18:33.402',NULL,@collect_id419,N'1',@registor_address420), ('2022-06-01 16:18:33.402',NULL,@collect_id421,N'1',@registor_address422), ('2022-06-01 16:18:33.402',NULL,@collect_id423,N'1',@registor_address424), ('2022-06-01 16:18:33.402',NULL,@collect_id425,N'1',@registor_address426), ('2022-06-01 16:18:33.402',NULL,@collect_id427,N'1',@registor_address428), ('2022-06-01 16:18:33.402',NULL,@collect_id429,N'1',@registor_address430), ('2022-06-01 16:18:33.402',NULL,@collect_id431,N'1',@registor_address432), ('2022-06-01 16:18:33.402',NULL,@collect_id433,N'1',@registor_address434), ('2022-06-01 16:18:33.402',NULL,@collect_id435,N'1',@registor_address436), ('2022-06-01 16:18:33.402',NULL,@collect_id437,N'1',@registor_address438), ('2022-06-01 16:18:33.402',NULL,@collect_id439,N'1',@registor_address440), ('2022-06-01 16:18:33.402',NULL,@collect_id441,N'1',@registor_address442), ('2022-06-01 16:18:33.402',NULL,@collect_id443,N'1',@registor_address444), ('2022-06-01 16:18:33.402',NULL,@collect_id445,N'1',@registor_address446), ('2022-06-01 16:18:33.402',NULL,@collect_id447,N'1',@registor_address448), ('2022-06-01 16:18:33.402',NULL,@collect_id449,N'1',@registor_address450), ('2022-06-01 16:18:33.402',NULL,@collect_id451,N'1',@registor_address452), ('2022-06-01 16:18:33.402',NULL,@collect_id453,N'1',@registor_address454), ('2022-06-01 16:18:33.402',NULL,@collect_id455,N'1',@registor_address456), ('2022-06-01 16:18:33.402',NULL,@collect_id457,N'1',@registor_address458), ('2022-06-01 16:18:33.402',NULL,@collect_id459,N'1',@registor_address460), ('2022-06-01 16:18:33.402',NULL,@collect_id461,N'1',@registor_address462), ('2022-06-01 16:18:33.402',NULL,@collect_id463,N'1',@registor_address464), ('2022-06-01 16:18:33.402',NULL,@collect_id465,N'1',@registor_address466), ('2022-06-01 16:18:33.402',NULL,@collect_id467,N'1',@registor_address468), ('2022-06-01 16:18:33.402',NULL,@collect_id469,N'1',@registor_address470), ('2022-06-01 16:18:33.402',NULL,@collect_id471,N'1',@registor_address472), ('2022-06-01 16:18:33.402',NULL,@collect_id473,N'1',@registor_address474), ('2022-06-01 16:18:33.402',NULL,@collect_id475,N'1',@registor_address476), ('2022-06-01 16:18:33.402',NULL,@collect_id477,N'1',@registor_address478), ('2022-06-01 16:18:33.402',NULL,@collect_id479,N'1',@registor_address480), ('2022-06-01 16:18:33.402',NULL,@collect_id481,N'1',@registor_address482), ('2022-06-01 16:18:33.402',NULL,@collect_id483,N'1',@registor_address484), ('2022-06-01 16:18:33.402',NULL,@collect_id485,N'1',@registor_address486), ('2022-06-01 16:18:33.402',NULL,@collect_id487,N'1',@registor_address488), ('2022-06-01 16:18:33.402',NULL,@collect_id489,N'1',@registor_address490), ('2022-06-01 16:18:33.402',NULL,@collect_id491,N'1',@registor_address492), ('2022-06-01 16:18:33.402',NULL,@collect_id493,N'1',@registor_address494), ('2022-06-01 16:18:33.402',NULL,@collect_id495,N'1',@registor_address496), ('2022-06-01 16:18:33.402',NULL,@collect_id497,N'1',@registor_address498), ('2022-06-01 16:18:33.402',NULL,@collect_id499,N'1',@registor_address500), ('2022-06-01 16:18:33.402',NULL,@collect_id501,N'1',@registor_address502), ('2022-06-01 16:18:33.402',NULL,@collect_id503,N'1',@registor_address504), ('2022-06-01 16:18:33.402',NULL,@collect_id505,N'1',@registor_address506), ('2022-06-01 16:18:33.402',NULL,@collect_id507,N'1',@registor_address508), ('2022-06-01 16:18:33.402',NULL,@collect_id509,N'1',@registor_address510), ('2022-06-01 16:18:33.402',NULL,@collect_id511,N'1',@registor_address512), ('2022-06-01 16:18:33.402',NULL,@collect_id513,N'1',@registor_address514), ('2022-06-01 16:18:33.402',NULL,@collect_id515,N'1',@registor_address516), ('2022-06-01 16:18:33.402',NULL,@collect_id517,N'1',@registor_address518), ('2022-06-01 16:18:33.402',NULL,@collect_id519,N'1',@registor_address520), ('2022-06-01 16:18:33.402',NULL,@collect_id521,N'1',@registor_address522), ('2022-06-01 16:18:33.402',NULL,@collect_id523,N'1',@registor_address524), ('2022-06-01 16:18:33.402',NULL,@collect_id525,N'1',@registor_address526), ('2022-06-01 16:18:33.402',NULL,@collect_id527,N'1',@registor_address528), ('2022-06-01 16:18:33.402',NULL,@collect_id529,N'1',@registor_address530), ('2022-06-01 16:18:33.402',NULL,@collect_id531,N'1',@registor_address532), ('2022-06-01 16:18:33.402',NULL,@collect_id533,N'1',@registor_address534), ('2022-06-01 16:18:33.402',NULL,@collect_id535,N'1',@registor_address536), ('2022-06-01 16:18:33.402',NULL,@collect_id537,N'1',@registor_address538), ('2022-06-01 16:18:33.402',NULL,@collect_id539,N'1',@registor_address540), ('2022-06-01 16:18:33.402',NULL,@collect_id541,N'1',@registor_address542), ('2022-06-01 16:18:33.402',NULL,@collect_id543,N'1',@registor_address544), ('2022-06-01 16:18:33.402',NULL,@collect_id545,N'1',@registor_address546), ('2022-06-01 16:18:33.402',NULL,@collect_id547,N'1',@registor_address548), ('2022-06-01 16:18:33.402',NULL,@collect_id549,N'1',@registor_address550), ('2022-06-01 16:18:33.402',NULL,@collect_id551,N'1',@registor_address552), ('2022-06-01 16:18:33.402',NULL,@collect_id553,N'1',@registor_address554), ('2022-06-01 16:18:33.402',NULL,@collect_id555,N'1',@registor_address556), ('2022-06-01 16:18:33.402',NULL,@collect_id557,N'1',@registor_address558), ('2022-06-01 16:18:33.402',NULL,@collect_id559,N'1',@registor_address560), ('2022-06-01 16:18:33.402',NULL,@collect_id561,N'1',@registor_address562), ('2022-06-01 16:18:33.402',NULL,@collect_id563,N'1',@registor_address564), ('2022-06-01 16:18:33.402',NULL,@collect_id565,N'1',@registor_address566), ('2022-06-01 16:18:33.402',NULL,@collect_id567,N'1',@registor_address568), ('2022-06-01 16:18:33.402',NULL,@collect_id569,N'1',@registor_address570), ('2022-06-01 16:18:33.402',NULL,@collect_id571,N'1',@registor_address572), ('2022-06-01 16:18:33.402',NULL,@collect_id573,N'1',@registor_address574), ('2022-06-01 16:18:33.402',NULL,@collect_id575,N'1',@registor_address576), ('2022-06-01 16:18:33.402',NULL,@collect_id577,N'1',@registor_address578), ('2022-06-01 16:18:33.402',NULL,@collect_id579,N'1',@registor_address580), ('2022-06-01 16:18:33.402',NULL,@collect_id581,N'1',@registor_address582), ('2022-06-01 16:18:33.402',NULL,@collect_id583,N'1',@registor_address584), ('2022-06-01 16:18:33.402',NULL,@collect_id585,N'1',@registor_address586), ('2022-06-01 16:18:33.402',NULL,@collect_id587,N'1',@registor_address588), ('2022-06-01 16:18:33.402',NULL,@collect_id589,N'1',@registor_address590), ('2022-06-01 16:18:33.402',NULL,@collect_id591,N'1',@registor_address592), ('2022-06-01 16:18:33.402',NULL,@collect_id593,N'1',@registor_address594), ('2022-06-01 16:18:33.402',NULL,@collect_id595,N'1',@registor_address596), ('2022-06-01 16:18:33.402',NULL,@collect_id597,N'1',@registor_address598), ('2022-06-01 16:18:33.402',NULL,@collect_id599,N'1',@registor_address600), ('2022-06-01 16:18:33.402',NULL,@collect_id601,N'1',@registor_address602), ('2022-06-01 16:18:33.402',NULL,@collect_id603,N'1',@registor_address604), ('2022-06-01 16:18:33.402',NULL,@collect_id605,N'1',@registor_address606), ('2022-06-01 16:18:33.402',NULL,@collect_id607,N'1',@registor_address608), ('2022-06-01 16:18:33.402',NULL,@collect_id609,N'1',@registor_address610), ('2022-06-01 16:18:33.402',NULL,@collect_id611,N'1',@registor_address612), ('2022-06-01 16:18:33.402',NULL,@collect_id613,N'1',@registor_address614), ('2022-06-01 16:18:33.402',NULL,@collect_id615,N'1',@registor_address616), ('2022-06-01 16:18:33.402',NULL,@collect_id617,N'1',@registor_address618), ('2022-06-01 16:18:33.402',NULL,@collect_id619,N'1',@registor_address620), ('2022-06-01 16:18:33.402',NULL,@collect_id621,N'1',@registor_address622), ('2022-06-01 16:18:33.402',NULL,@collect_id623,N'1',@registor_address624), ('2022-06-01 16:18:33.402',NULL,@collect_id625,N'1',@registor_address626), ('2022-06-01 16:18:33.402',NULL,@collect_id627,N'1',@registor_address628), ('2022-06-01 16:18:33.402',NULL,@collect_id629,N'1',@registor_address630), ('2022-06-01 16:18:33.402',NULL,@collect_id631,N'1',@registor_address632), ('2022-06-01 16:18:33.402',NULL,@collect_id633,N'1',@registor_address634), ('2022-06-01 16:18:33.402',NULL,@collect_id635,N'1',@registor_address636), ('2022-06-01 16:18:33.402',NULL,@collect_id637,N'1',@registor_address638), ('2022-06-01 16:18:33.402',NULL,@collect_id639,N'1',@registor_address640), ('2022-06-01 16:18:33.402',NULL,@collect_id641,N'1',@registor_address642), ('2022-06-01 16:18:33.402',NULL,@collect_id643,N'1',@registor_address644), ('2022-06-01 16:18:33.402',NULL,@collect_id645,N'1',@registor_address646), ('2022-06-01 16:18:33.402',NULL,@collect_id647,N'1',@registor_address648), ('2022-06-01 16:18:33.402',NULL,@collect_id649,N'1',@registor_address650), ('2022-06-01 16:18:33.402',NULL,@collect_id651,N'1',@registor_address652), ('2022-06-01 16:18:33.402',NULL,@collect_id653,N'1',@registor_address654), ('2022-06-01 16:18:33.402',NULL,@collect_id655,N'1',@registor_address656), ('2022-06-01 16:18:33.402',NULL,@collect_id657,N'1',@registor_address658), ('2022-06-01 16:18:33.402',NULL,@collect_id659,N'1',@registor_address660), ('2022-06-01 16:18:33.402',NULL,@collect_id661,N'1',@registor_address662), ('2022-06-01 16:18:33.402',NULL,@collect_id663,N'1',@registor_address664), ('2022-06-01 16:18:33.402',NULL,@collect_id665,N'1',@registor_address666), ('2022-06-01 16:18:33.402',NULL,@collect_id667,N'1',@registor_address668), ('2022-06-01 16:18:33.402',NULL,@collect_id669,N'1',@registor_address670), ('2022-06-01 16:18:33.402',NULL,@collect_id671,N'1',@registor_address672), ('2022-06-01 16:18:33.402',NULL,@collect_id673,N'1',@registor_address674), ('2022-06-01 16:18:33.402',NULL,@collect_id675,N'1',@registor_address676), ('2022-06-01 16:18:33.402',NULL,@collect_id677,N'1',@registor_address678), ('2022-06-01 16:18:33.402',NULL,@collect_id679,N'1',@registor_address680), ('2022-06-01 16:18:33.402',NULL,@collect_id681,N'1',@registor_address682), ('2022-06-01 16:18:33.402',NULL,@collect_id683,N'1',@registor_address684), ('2022-06-01 16:18:33.402',NULL,@collect_id685,N'1',@registor_address686), ('2022-06-01 16:18:33.402',NULL,@collect_id687,N'1',@registor_address688), ('2022-06-01 16:18:33.402',NULL,@collect_id689,N'1',@registor_address690), ('2022-06-01 16:18:33.402',NULL,@collect_id691,N'1',@registor_address692), ('2022-06-01 16:18:33.402',NULL,@collect_id693,N'1',@registor_address694), ('2022-06-01 16:18:33.402',NULL,@collect_id695,N'1',@registor_address696), ('2022-06-01 16:18:33.402',NULL,@collect_id697,N'1',@registor_address698), ('2022-06-01 16:18:33.402',NULL,@collect_id699,N'1',@registor_address700), ('2022-06-01 16:18:33.402',NULL,@collect_id701,N'1',@registor_address702), ('2022-06-01 16:18:33.402',NULL,@collect_id703,N'1',@registor_address704), ('2022-06-01 16:18:33.402',NULL,@collect_id705,N'1',@registor_address706), ('2022-06-01 16:18:33.402',NULL,@collect_id707,N'1',@registor_address708), ('2022-06-01 16:18:33.402',NULL,@collect_id709,N'1',@registor_address710), ('2022-06-01 16:18:33.402',NULL,@collect_id711,N'1',@registor_address712), ('2022-06-01 16:18:33.402',NULL,@collect_id713,N'1',@registor_address714), ('2022-06-01 16:18:33.402',NULL,@collect_id715,N'1',@registor_address716), ('2022-06-01 16:18:33.402',NULL,@collect_id717,N'1',@registor_address718), ('2022-06-01 16:18:33.402',NULL,@collect_id719,N'1',@registor_address720), ('2022-06-01 16:18:33.402',NULL,@collect_id721,N'1',@registor_address722), ('2022-06-01 16:18:33.402',NULL,@collect_id723,N'1',@registor_address724), ('2022-06-01 16:18:33.402',NULL,@collect_id725,N'1',@registor_address726), ('2022-06-01 16:18:33.402',NULL,@collect_id727,N'1',@registor_address728), ('2022-06-01 16:18:33.402',NULL,@collect_id729,N'1',@registor_address730), ('2022-06-01 16:18:33.402',NULL,@collect_id731,N'1',@registor_address732), ('2022-06-01 16:18:33.402',NULL,@collect_id733,N'1',@registor_address734), ('2022-06-01 16:18:33.402',NULL,@collect_id735,N'1',@registor_address736), ('2022-06-01 16:18:33.402',NULL,@collect_id737,N'1',@registor_address738), ('2022-06-01 16:18:33.402',NULL,@collect_id739,N'1',@registor_address740), ('2022-06-01 16:18:33.402',NULL,@collect_id741,N'1',@registor_address742), ('2022-06-01 16:18:33.402',NULL,@collect_id743,N'1',@registor_address744), ('2022-06-01 16:18:33.402',NULL,@collect_id745,N'1',@registor_address746), ('2022-06-01 16:18:33.402',NULL,@collect_id747,N'1',@registor_address748), ('2022-06-01 16:18:33.402',NULL,@collect_id749,N'1',@registor_address750), ('2022-06-01 16:18:33.402',NULL,@collect_id751,N'1',@registor_address752), ('2022-06-01 16:18:33.402',NULL,@collect_id753,N'1',@registor_address754), ('2022-06-01 16:18:33.402',NULL,@collect_id755,N'1',@registor_address756), ('2022-06-01 16:18:33.402',NULL,@collect_id757,N'1',@registor_address758), ('2022-06-01 16:18:33.402',NULL,@collect_id759,N'1',@registor_address760), ('2022-06-01 16:18:33.402',NULL,@collect_id761,N'1',@registor_address762), ('2022-06-01 16:18:33.402',NULL,@collect_id763,N'1',@registor_address764), ('2022-06-01 16:18:33.402',NULL,@collect_id765,N'1',@registor_address766), ('2022-06-01 16:18:33.402',NULL,@collect_id767,N'1',@registor_address768), ('2022-06-01 16:18:33.402',NULL,@collect_id769,N'1',@registor_address770), ('2022-06-01 16:18:33.402',NULL,@collect_id771,N'1',@registor_address772), ('2022-06-01 16:18:33.402',NULL,@collect_id773,N'1',@registor_address774), ('2022-06-01 16:18:33.402',NULL,@collect_id775,N'1',@registor_address776), ('2022-06-01 16:18:33.402',NULL,@collect_id777,N'1',@registor_address778), ('2022-06-01 16:18:33.402',NULL,@collect_id779,N'1',@registor_address780), ('2022-06-01 16:18:33.402',NULL,@collect_id781,N'1',@registor_address782), ('2022-06-01 16:18:33.402',NULL,@collect_id783,N'1',@registor_address784), ('2022-06-01 16:18:33.402',NULL,@collect_id785,N'1',@registor_address786), ('2022-06-01 16:18:33.402',NULL,@collect_id787,N'1',@registor_address788), ('2022-06-01 16:18:33.402',NULL,@collect_id789,N'1',@registor_address790), ('2022-06-01 16:18:33.402',NULL,@collect_id791,N'1',@registor_address792), ('2022-06-01 16:18:33.402',NULL,@collect_id793,N'1',@registor_address794), ('2022-06-01 16:18:33.402',NULL,@collect_id795,N'1',@registor_address796), ('2022-06-01 16:18:33.402',NULL,@collect_id797,N'1',@registor_address798), ('2022-06-01 16:18:33.402',NULL,@collect_id799,N'1',@registor_address800), ('2022-06-01 16:18:33.402',NULL,@collect_id801,N'1',@registor_address802), ('2022-06-01 16:18:33.402',NULL,@collect_id803,N'1',@registor_address804), ('2022-06-01 16:18:33.402',NULL,@collect_id805,N'1',@registor_address806), ('2022-06-01 16:18:33.402',NULL,@collect_id807,N'1',@registor_address808), ('2022-06-01 16:18:33.402',NULL,@collect_id809,N'1',@registor_address810), ('2022-06-01 16:18:33.402',NULL,@collect_id811,N'1',@registor_address812), ('2022-06-01 16:18:33.402',NULL,@collect_id813,N'1',@registor_address814), ('2022-06-01 16:18:33.402',NULL,@collect_id815,N'1',@registor_address816), ('2022-06-01 16:18:33.402',NULL,@collect_id817,N'1',@registor_address818), ('2022-06-01 16:18:33.402',NULL,@collect_id819,N'1',@registor_address820), ('2022-06-01 16:18:33.402',NULL,@collect_id821,N'1',@registor_address822), ('2022-06-01 16:18:33.402',NULL,@collect_id823,N'1',@registor_address824), ('2022-06-01 16:18:33.402',NULL,@collect_id825,N'1',@registor_address826), ('2022-06-01 16:18:33.402',NULL,@collect_id827,N'1',@registor_address828), ('2022-06-01 16:18:33.402',NULL,@collect_id829,N'1',@registor_address830), ('2022-06-01 16:18:33.402',NULL,@collect_id831,N'1',@registor_address832), ('2022-06-01 16:18:33.402',NULL,@collect_id833,N'1',@registor_address834), ('2022-06-01 16:18:33.402',NULL,@collect_id835,N'1',@registor_address836), ('2022-06-01 16:18:33.402',NULL,@collect_id837,N'1',@registor_address838), ('2022-06-01 16:18:33.402',NULL,@collect_id839,N'1',@registor_address840), ('2022-06-01 16:18:33.402',NULL,@collect_id841,N'1',@registor_address842), ('2022-06-01 16:18:33.402',NULL,@collect_id843,N'1',@registor_address844), ('2022-06-01 16:18:33.402',NULL,@collect_id845,N'1',@registor_address846), ('2022-06-01 16:18:33.402',NULL,@collect_id847,N'1',@registor_address848), ('2022-06-01 16:18:33.402',NULL,@collect_id849,N'1',@registor_address850), ('2022-06-01 16:18:33.402',NULL,@collect_id851,N'1',@registor_address852), ('2022-06-01 16:18:33.402',NULL,@collect_id853,N'1',@registor_address854), ('2022-06-01 16:18:33.402',NULL,@collect_id855,N'1',@registor_address856) ;select @@IDENTITY + +-------------------------------- +2022/6/2 8:21:20| +【SQL参数】:@gmt_create:2022/6/2 8:20:14 +@gmt_modified: +@collect_id:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@eqmt_id:1 +@l271:0 +@l272:1 +@l273:0 +@d60:240 +@d5030:0 +@d5032:39068814 +@d10398:1345 +@d10448:885 +@d10650:65.750374 +@d10700:482 +@d10750:0 +@m88:1 +@d10240:6716987 +@d10250:5703135 +@d10260:54757454 +@d10270:10432955 +@d900:379 +@d901:380 +@d902:377 +@d903:217 +@d904:221 +@d905:218 +@d906:379 +@d907:219 +@d908:176 +@d909:183 +@d910:179 +@d911:0 +@d950:47897 +@d952:52964 +@d954:44572 +@d10900:13 +@d10950:9 +@d10970:16 +@m160:0 +@m161:0 +@m162:0 +@m163:0 +@m164:0 +@m165:0 +@m166:0 +@m167:0 +@m168:0 +@m169:0 +@m170:0 +@m171:0 +@m172:0 +@m173:0 +@m174:0 +@m175:0 +@m176:0 +@m177:0 +@m178:0 +@m179:0 +@m180:0 +@m181:0 +@m182:0 +@m183:0 +@m184:0 +@m185:0 +@m186:0 +@m187:0 +@m188:0 +@m190:0 +@m70:0 +@m700:0 +@m701:0 +@m702:0 +@m703:0 +@m704:0 +@m705:0 +@m706:0 +@m707:0 +@m708:0 +@m709:0 +@m710:0 +@m711:0 +@m712:0 +@m713:0 +@m714:0 +@m728:0 +@m715:0 +@m716:0 +@m717:0 +@m718:0 +@m719:0 +@m720:0 +@m721:0 +@m722:0 +@m723:0 +@m724:0 +@m725:0 +@m736:0 +@m737:0 +@m738:0 +@m739:0 +@m740:0 +@m741:0 +@m742:0 +@m743:0 +@m744:0 +@m745:0 +@m108:0 +@m110:0 +@m109:0 +@m111:0 +@m112:0 +@m113:0 +@m114:0 +@m115:0 +@m116:0 +@m117:0 +@m118:0 +@m119:0 +@m120:0 +@m121:0 +@m50:0 +@m380:0 +@m381:0 +@m382:0 +@m383:0 +@m384:0 +@m385:0 +@m386:0 +@m387:0 +@m388:0 +@m389:0 +@m390:0 +@m391:0 +@m392:0 +@m393:0 +@m394:0 +@b00010:0 +@b00011:0 +@b00012:0 +@b00013:0 +@b00014:0 +@b00015:0 +@b00016:0 +@b00017:0 +@b00018:0 +@b00019:0 +@b0001a:0 +@b0001b:0 +@b0001c:0 +@b0001d:0 +@b0001e:0 +@b0001f:0 +@b00020:0 +@b00021:0 +@b00022:0 +@b00023:0 +@b00024:0 +@b00025:0 +@b00026:0 +@b00027:0 +@b00028:0 +@b00029:0 +@b0002a:0 +@b0002b:0 +@b0002c:0 +@b0002d:0 +@b0002e:0 +@b0002f:0 +@b00510:0 +@b00511:0 +@b00512:0 +@b00513:0 +@b00514:0 +@b00515:0 +@b00516:0 +@b00517:0 +@b00518:0 +@b00519:0 +@b0051a:0 +@b0051b:0 +@b0051c:0 +@b0051d:0 +@b0051e:0 +@b0051f:0 +@b00520:0 +@b00521:0 +@b00522:0 +@b00523:0 +@b00524:0 +@b00525:0 +@b00526:0 +@b00527:0 +@b00528:0 +@b00529:0 +@b0052a:0 +@b0052b:0 +@b0052c:0 +@b0052d:0 +@b0052e:0 +@b0052f:0 +@b00a10:0 +@b00a11:0 +@b00a12:0 +@b00a13:0 +@b00a14:0 +@b00a15:0 +@b00a16:0 +@b00a17:0 +@b00a18:0 +@b00a19:0 +@b00a1a:0 +@b00a1b:0 +@b00a1c:0 +@b00a1d:0 +@b00a1e:0 +@b00a1f:0 +@b00a20:0 +@b00a21:0 +@b00a22:0 +@b00a23:0 +@b00a24:0 +@b00a25:0 +@b00a26:0 +@b00a27:0 +@b00a28:0 +@b00a29:0 +@b00a2a:0 +@b00a2b:0 +@b00a2c:0 +@b00a2d:0 +@b00a2e:0 +@b00a2f:0 +@b01810:0 +@b01811:0 +@b01812:0 +@b01813:0 +@b01814:0 +@b01815:0 +@b01816:0 +@b01817:0 +@b01818:0 +@b01819:0 +@l100:0 +@l101:0 +@l102:0 +@l103:0 +@l104:0 +@l105:0 +@l106:0 +@l107:0 +@l108:0 +@l109:0 +@l110:0 +@l111:0 +@l112:0 +@l113:0 +@l114:0 +@l115:0 +@l116:0 +@l117:0 +@m800:0 +@m801:0 +@m802:0 +@m803:0 +@m804:0 +@m805:0 +@m806:0 +@m807:0 +@m808:0 +@m809:0 +@m810:0 +@m811:0 +@m812:0 +@m813:0 +@m814:0 +@m820:0 +@m821:0 +@m822:0 +@m823:0 +@m824:0 +@m825:0 +@m826:0 +@m827:0 +@m828:0 +@m829:0 +@m830:0 +@m831:0 +@m832:0 +@m834:0 +@m860:0 +@m861:0 +@m862:0 +@m863:0 +@m864:0 +@m865:0 +@m866:0 +@m867:0 +@m868:0 +@m869:0 +@m870:0 +@m871:0 +@m872:0 +@m874:0 +@sm52:0 +@b0000f:0 +@b0050f:0 +@b00a0f:0 + +【SQL语句】:INSERT INTO `eqmt_collect_data13` + (`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`l271`,`l272`,`l273`,`d60`,`d5030`,`d5032`,`d10398`,`d10448`,`d10650`,`d10700`,`d10750`,`m88`,`d10240`,`d10250`,`d10260`,`d10270`,`d900`,`d901`,`d902`,`d903`,`d904`,`d905`,`d906`,`d907`,`d908`,`d909`,`d910`,`d911`,`d950`,`d952`,`d954`,`d10900`,`d10950`,`d10970`,`m160`,`m161`,`m162`,`m163`,`m164`,`m165`,`m166`,`m167`,`m168`,`m169`,`m170`,`m171`,`m172`,`m173`,`m174`,`m175`,`m176`,`m177`,`m178`,`m179`,`m180`,`m181`,`m182`,`m183`,`m184`,`m185`,`m186`,`m187`,`m188`,`m190`,`m70`,`m700`,`m701`,`m702`,`m703`,`m704`,`m705`,`m706`,`m707`,`m708`,`m709`,`m710`,`m711`,`m712`,`m713`,`m714`,`m728`,`m715`,`m716`,`m717`,`m718`,`m719`,`m720`,`m721`,`m722`,`m723`,`m724`,`m725`,`m736`,`m737`,`m738`,`m739`,`m740`,`m741`,`m742`,`m743`,`m744`,`m745`,`m108`,`m110`,`m109`,`m111`,`m112`,`m113`,`m114`,`m115`,`m116`,`m117`,`m118`,`m119`,`m120`,`m121`,`m50`,`m380`,`m381`,`m382`,`m383`,`m384`,`m385`,`m386`,`m387`,`m388`,`m389`,`m390`,`m391`,`m392`,`m393`,`m394`,`b00010`,`b00011`,`b00012`,`b00013`,`b00014`,`b00015`,`b00016`,`b00017`,`b00018`,`b00019`,`b0001a`,`b0001b`,`b0001c`,`b0001d`,`b0001e`,`b0001f`,`b00020`,`b00021`,`b00022`,`b00023`,`b00024`,`b00025`,`b00026`,`b00027`,`b00028`,`b00029`,`b0002a`,`b0002b`,`b0002c`,`b0002d`,`b0002e`,`b0002f`,`b00510`,`b00511`,`b00512`,`b00513`,`b00514`,`b00515`,`b00516`,`b00517`,`b00518`,`b00519`,`b0051a`,`b0051b`,`b0051c`,`b0051d`,`b0051e`,`b0051f`,`b00520`,`b00521`,`b00522`,`b00523`,`b00524`,`b00525`,`b00526`,`b00527`,`b00528`,`b00529`,`b0052a`,`b0052b`,`b0052c`,`b0052d`,`b0052e`,`b0052f`,`b00a10`,`b00a11`,`b00a12`,`b00a13`,`b00a14`,`b00a15`,`b00a16`,`b00a17`,`b00a18`,`b00a19`,`b00a1a`,`b00a1b`,`b00a1c`,`b00a1d`,`b00a1e`,`b00a1f`,`b00a20`,`b00a21`,`b00a22`,`b00a23`,`b00a24`,`b00a25`,`b00a26`,`b00a27`,`b00a28`,`b00a29`,`b00a2a`,`b00a2b`,`b00a2c`,`b00a2d`,`b00a2e`,`b00a2f`,`b01810`,`b01811`,`b01812`,`b01813`,`b01814`,`b01815`,`b01816`,`b01817`,`b01818`,`b01819`,`l100`,`l101`,`l102`,`l103`,`l104`,`l105`,`l106`,`l107`,`l108`,`l109`,`l110`,`l111`,`l112`,`l113`,`l114`,`l115`,`l116`,`l117`,`m800`,`m801`,`m802`,`m803`,`m804`,`m805`,`m806`,`m807`,`m808`,`m809`,`m810`,`m811`,`m812`,`m813`,`m814`,`m820`,`m821`,`m822`,`m823`,`m824`,`m825`,`m826`,`m827`,`m828`,`m829`,`m830`,`m831`,`m832`,`m834`,`m860`,`m861`,`m862`,`m863`,`m864`,`m865`,`m866`,`m867`,`m868`,`m869`,`m870`,`m871`,`m872`,`m874`,`sm52`,`b0000f`,`b0050f`,`b00a0f`) + VALUES + (@gmt_create,@gmt_modified,@collect_id,@eqmt_id,@l271,@l272,@l273,@d60,@d5030,@d5032,@d10398,@d10448,@d10650,@d10700,@d10750,@m88,@d10240,@d10250,@d10260,@d10270,@d900,@d901,@d902,@d903,@d904,@d905,@d906,@d907,@d908,@d909,@d910,@d911,@d950,@d952,@d954,@d10900,@d10950,@d10970,@m160,@m161,@m162,@m163,@m164,@m165,@m166,@m167,@m168,@m169,@m170,@m171,@m172,@m173,@m174,@m175,@m176,@m177,@m178,@m179,@m180,@m181,@m182,@m183,@m184,@m185,@m186,@m187,@m188,@m190,@m70,@m700,@m701,@m702,@m703,@m704,@m705,@m706,@m707,@m708,@m709,@m710,@m711,@m712,@m713,@m714,@m728,@m715,@m716,@m717,@m718,@m719,@m720,@m721,@m722,@m723,@m724,@m725,@m736,@m737,@m738,@m739,@m740,@m741,@m742,@m743,@m744,@m745,@m108,@m110,@m109,@m111,@m112,@m113,@m114,@m115,@m116,@m117,@m118,@m119,@m120,@m121,@m50,@m380,@m381,@m382,@m383,@m384,@m385,@m386,@m387,@m388,@m389,@m390,@m391,@m392,@m393,@m394,@b00010,@b00011,@b00012,@b00013,@b00014,@b00015,@b00016,@b00017,@b00018,@b00019,@b0001a,@b0001b,@b0001c,@b0001d,@b0001e,@b0001f,@b00020,@b00021,@b00022,@b00023,@b00024,@b00025,@b00026,@b00027,@b00028,@b00029,@b0002a,@b0002b,@b0002c,@b0002d,@b0002e,@b0002f,@b00510,@b00511,@b00512,@b00513,@b00514,@b00515,@b00516,@b00517,@b00518,@b00519,@b0051a,@b0051b,@b0051c,@b0051d,@b0051e,@b0051f,@b00520,@b00521,@b00522,@b00523,@b00524,@b00525,@b00526,@b00527,@b00528,@b00529,@b0052a,@b0052b,@b0052c,@b0052d,@b0052e,@b0052f,@b00a10,@b00a11,@b00a12,@b00a13,@b00a14,@b00a15,@b00a16,@b00a17,@b00a18,@b00a19,@b00a1a,@b00a1b,@b00a1c,@b00a1d,@b00a1e,@b00a1f,@b00a20,@b00a21,@b00a22,@b00a23,@b00a24,@b00a25,@b00a26,@b00a27,@b00a28,@b00a29,@b00a2a,@b00a2b,@b00a2c,@b00a2d,@b00a2e,@b00a2f,@b01810,@b01811,@b01812,@b01813,@b01814,@b01815,@b01816,@b01817,@b01818,@b01819,@l100,@l101,@l102,@l103,@l104,@l105,@l106,@l107,@l108,@l109,@l110,@l111,@l112,@l113,@l114,@l115,@l116,@l117,@m800,@m801,@m802,@m803,@m804,@m805,@m806,@m807,@m808,@m809,@m810,@m811,@m812,@m813,@m814,@m820,@m821,@m822,@m823,@m824,@m825,@m826,@m827,@m828,@m829,@m830,@m831,@m832,@m834,@m860,@m861,@m862,@m863,@m864,@m865,@m866,@m867,@m868,@m869,@m870,@m871,@m872,@m874,@sm52,@b0000f,@b0050f,@b00a0f) ; +-------------------------------- +2022/6/2 8:21:21| +【SQL参数】:@gmt_create:2022/6/2 8:20:51 +@gmt_modified: +@collect_id:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@eqmt_id:1 +@product_type:2 +@speed:240 +@total_product_qty:39068814 +@intraday_product_qty:1345 +@intraday_ok_qty:885 +@intraday_ng_qty:460 +@intraday_yield_rate:65.750374 +@intraday_eqmt_run_time:482 +@intraday_eqmt_work_time:482 +@intraday_eqmt_stop_time:0 +@intraday_eqmt_stop_times:0 +@eqmt_status:1 +@eqmt_except_flag:1 +@eqmt_alarm_flag:1 + +【SQL语句】:INSERT INTO `eqmt_collect_pub_data` + (`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`product_type`,`speed`,`total_product_qty`,`intraday_product_qty`,`intraday_ok_qty`,`intraday_ng_qty`,`intraday_yield_rate`,`intraday_eqmt_run_time`,`intraday_eqmt_work_time`,`intraday_eqmt_stop_time`,`intraday_eqmt_stop_times`,`eqmt_status`,`eqmt_except_flag`,`eqmt_alarm_flag`) + VALUES + (@gmt_create,@gmt_modified,@collect_id,@eqmt_id,@product_type,@speed,@total_product_qty,@intraday_product_qty,@intraday_ok_qty,@intraday_ng_qty,@intraday_yield_rate,@intraday_eqmt_run_time,@intraday_eqmt_work_time,@intraday_eqmt_stop_time,@intraday_eqmt_stop_times,@eqmt_status,@eqmt_except_flag,@eqmt_alarm_flag) ; +-------------------------------- +2022/6/2 8:21:21| +【SQL参数】:@collect_id1:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address2:M160 +@collect_id3:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address4:M161 +@collect_id5:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address6:M162 +@collect_id7:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address8:M163 +@collect_id9:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address10:M164 +@collect_id11:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address12:M165 +@collect_id13:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address14:M166 +@collect_id15:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address16:M167 +@collect_id17:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address18:M168 +@collect_id19:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address20:M169 +@collect_id21:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address22:M170 +@collect_id23:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address24:M171 +@collect_id25:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address26:M172 +@collect_id27:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address28:M173 +@collect_id29:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address30:M174 +@collect_id31:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address32:M175 +@collect_id33:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address34:M176 +@collect_id35:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address36:M177 +@collect_id37:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address38:M178 +@collect_id39:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address40:M179 +@collect_id41:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address42:M180 +@collect_id43:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address44:M181 +@collect_id45:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address46:M182 +@collect_id47:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address48:M183 +@collect_id49:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address50:M184 +@collect_id51:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address52:M185 +@collect_id53:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address54:M186 +@collect_id55:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address56:M187 +@collect_id57:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address58:M188 +@collect_id59:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address60:M189 +@collect_id61:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address62:M190 +@collect_id63:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address64:M70 +@collect_id65:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address66:M700 +@collect_id67:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address68:M701 +@collect_id69:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address70:M702 +@collect_id71:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address72:M703 +@collect_id73:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address74:M704 +@collect_id75:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address76:M705 +@collect_id77:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address78:M706 +@collect_id79:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address80:M707 +@collect_id81:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address82:M708 +@collect_id83:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address84:M709 +@collect_id85:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address86:M710 +@collect_id87:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address88:M711 +@collect_id89:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address90:M712 +@collect_id91:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address92:M713 +@collect_id93:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address94:M714 +@collect_id95:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address96:M715 +@collect_id97:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address98:M716 +@collect_id99:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address100:M717 +@collect_id101:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address102:M718 +@collect_id103:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address104:M719 +@collect_id105:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address106:M720 +@collect_id107:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address108:M721 +@collect_id109:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address110:M722 +@collect_id111:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address112:M723 +@collect_id113:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address114:M724 +@collect_id115:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address116:M725 +@collect_id117:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address118:M726 +@collect_id119:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address120:M727 +@collect_id121:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address122:M728 +@collect_id123:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address124:M729 +@collect_id125:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address126:M730 +@collect_id127:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address128:M731 +@collect_id129:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address130:M732 +@collect_id131:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address132:M733 +@collect_id133:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address134:M734 +@collect_id135:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address136:M735 +@collect_id137:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address138:M736 +@collect_id139:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address140:M737 +@collect_id141:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address142:M738 +@collect_id143:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address144:M739 +@collect_id145:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address146:M740 +@collect_id147:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address148:M741 +@collect_id149:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address150:M742 +@collect_id151:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address152:M743 +@collect_id153:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address154:M744 +@collect_id155:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address156:M745 +@collect_id157:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address158:M108 +@collect_id159:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address160:M109 +@collect_id161:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address162:M110 +@collect_id163:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address164:M111 +@collect_id165:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address166:M112 +@collect_id167:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address168:M113 +@collect_id169:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address170:M114 +@collect_id171:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address172:M115 +@collect_id173:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address174:M116 +@collect_id175:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address176:M117 +@collect_id177:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address178:M118 +@collect_id179:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address180:M119 +@collect_id181:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address182:M120 +@collect_id183:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address184:M121 +@collect_id185:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address186:M50 +@collect_id187:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address188:M380 +@collect_id189:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address190:M381 +@collect_id191:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address192:M382 +@collect_id193:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address194:M383 +@collect_id195:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address196:M384 +@collect_id197:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address198:M385 +@collect_id199:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address200:M386 +@collect_id201:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address202:M387 +@collect_id203:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address204:M388 +@collect_id205:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address206:M389 +@collect_id207:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address208:M390 +@collect_id209:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address210:M391 +@collect_id211:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address212:M392 +@collect_id213:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address214:M393 +@collect_id215:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address216:M394 +@collect_id217:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address218:B00010 +@collect_id219:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address220:B00011 +@collect_id221:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address222:B00012 +@collect_id223:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address224:B00013 +@collect_id225:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address226:B00014 +@collect_id227:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address228:B00015 +@collect_id229:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address230:B00016 +@collect_id231:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address232:B00017 +@collect_id233:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address234:B00018 +@collect_id235:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address236:B00019 +@collect_id237:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address238:B0001A +@collect_id239:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address240:B0001B +@collect_id241:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address242:B0001C +@collect_id243:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address244:B0001D +@collect_id245:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address246:B0001E +@collect_id247:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address248:B0001F +@collect_id249:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address250:B00020 +@collect_id251:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address252:B00021 +@collect_id253:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address254:B00022 +@collect_id255:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address256:B00023 +@collect_id257:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address258:B00024 +@collect_id259:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address260:B00025 +@collect_id261:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address262:B00026 +@collect_id263:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address264:B00027 +@collect_id265:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address266:B00028 +@collect_id267:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address268:B00029 +@collect_id269:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address270:B0002A +@collect_id271:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address272:B0002B +@collect_id273:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address274:B0002C +@collect_id275:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address276:B0002D +@collect_id277:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address278:B0002E +@collect_id279:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address280:B0002F +@collect_id281:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address282:B00510 +@collect_id283:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address284:B00511 +@collect_id285:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address286:B00512 +@collect_id287:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address288:B00513 +@collect_id289:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address290:B00514 +@collect_id291:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address292:B00515 +@collect_id293:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address294:B00516 +@collect_id295:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address296:B00517 +@collect_id297:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address298:B00518 +@collect_id299:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address300:B00519 +@collect_id301:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address302:B0051A +@collect_id303:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address304:B0051B +@collect_id305:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address306:B0051C +@collect_id307:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address308:B0051D +@collect_id309:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address310:B0051E +@collect_id311:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address312:B0051F +@collect_id313:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address314:B00520 +@collect_id315:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address316:B00521 +@collect_id317:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address318:B00522 +@collect_id319:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address320:B00523 +@collect_id321:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address322:B00524 +@collect_id323:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address324:B00525 +@collect_id325:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address326:B00526 +@collect_id327:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address328:B00527 +@collect_id329:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address330:B00528 +@collect_id331:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address332:B00529 +@collect_id333:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address334:B0052A +@collect_id335:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address336:B0052B +@collect_id337:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address338:B0052C +@collect_id339:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address340:B0052D +@collect_id341:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address342:B0052E +@collect_id343:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address344:B0052F +@collect_id345:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address346:B00A10 +@collect_id347:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address348:B00A11 +@collect_id349:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address350:B00A12 +@collect_id351:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address352:B00A13 +@collect_id353:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address354:B00A14 +@collect_id355:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address356:B00A15 +@collect_id357:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address358:B00A16 +@collect_id359:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address360:B00A17 +@collect_id361:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address362:B00A18 +@collect_id363:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address364:B00A19 +@collect_id365:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address366:B00A1A +@collect_id367:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address368:B00A1B +@collect_id369:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address370:B00A1C +@collect_id371:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address372:B00A1D +@collect_id373:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address374:B00A1E +@collect_id375:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address376:B00A1F +@collect_id377:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address378:B00A20 +@collect_id379:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address380:B00A21 +@collect_id381:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address382:B00A22 +@collect_id383:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address384:B00A23 +@collect_id385:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address386:B00A24 +@collect_id387:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address388:B00A25 +@collect_id389:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address390:B00A26 +@collect_id391:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address392:B00A27 +@collect_id393:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address394:B00A28 +@collect_id395:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address396:B00A29 +@collect_id397:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address398:B00A2A +@collect_id399:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address400:B00A2B +@collect_id401:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address402:B00A2C +@collect_id403:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address404:B00A2D +@collect_id405:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address406:B00A2E +@collect_id407:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address408:B00A2F +@collect_id409:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address410:B01810 +@collect_id411:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address412:B01811 +@collect_id413:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address414:B01812 +@collect_id415:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address416:B01813 +@collect_id417:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address418:B01814 +@collect_id419:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address420:B01815 +@collect_id421:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address422:B01816 +@collect_id423:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address424:B01817 +@collect_id425:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address426:B01818 +@collect_id427:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address428:B01819 +@collect_id429:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address430:M160 +@collect_id431:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address432:M161 +@collect_id433:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address434:M162 +@collect_id435:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address436:M163 +@collect_id437:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address438:M164 +@collect_id439:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address440:M165 +@collect_id441:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address442:M166 +@collect_id443:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address444:M167 +@collect_id445:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address446:M168 +@collect_id447:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address448:M169 +@collect_id449:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address450:M170 +@collect_id451:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address452:M171 +@collect_id453:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address454:M172 +@collect_id455:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address456:M173 +@collect_id457:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address458:M174 +@collect_id459:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address460:M175 +@collect_id461:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address462:M176 +@collect_id463:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address464:M177 +@collect_id465:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address466:M178 +@collect_id467:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address468:M179 +@collect_id469:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address470:M180 +@collect_id471:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address472:M181 +@collect_id473:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address474:M182 +@collect_id475:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address476:M183 +@collect_id477:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address478:M184 +@collect_id479:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address480:M185 +@collect_id481:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address482:M186 +@collect_id483:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address484:M187 +@collect_id485:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address486:M188 +@collect_id487:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address488:M189 +@collect_id489:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address490:M190 +@collect_id491:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address492:M70 +@collect_id493:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address494:M700 +@collect_id495:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address496:M701 +@collect_id497:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address498:M702 +@collect_id499:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address500:M703 +@collect_id501:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address502:M704 +@collect_id503:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address504:M705 +@collect_id505:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address506:M706 +@collect_id507:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address508:M707 +@collect_id509:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address510:M708 +@collect_id511:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address512:M709 +@collect_id513:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address514:M710 +@collect_id515:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address516:M711 +@collect_id517:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address518:M712 +@collect_id519:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address520:M713 +@collect_id521:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address522:M714 +@collect_id523:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address524:M715 +@collect_id525:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address526:M716 +@collect_id527:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address528:M717 +@collect_id529:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address530:M718 +@collect_id531:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address532:M719 +@collect_id533:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address534:M720 +@collect_id535:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address536:M721 +@collect_id537:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address538:M722 +@collect_id539:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address540:M723 +@collect_id541:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address542:M724 +@collect_id543:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address544:M725 +@collect_id545:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address546:M726 +@collect_id547:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address548:M727 +@collect_id549:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address550:M728 +@collect_id551:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address552:M729 +@collect_id553:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address554:M730 +@collect_id555:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address556:M731 +@collect_id557:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address558:M732 +@collect_id559:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address560:M733 +@collect_id561:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address562:M734 +@collect_id563:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address564:M735 +@collect_id565:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address566:M736 +@collect_id567:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address568:M737 +@collect_id569:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address570:M738 +@collect_id571:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address572:M739 +@collect_id573:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address574:M740 +@collect_id575:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address576:M741 +@collect_id577:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address578:M742 +@collect_id579:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address580:M743 +@collect_id581:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address582:M744 +@collect_id583:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address584:M745 +@collect_id585:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address586:M108 +@collect_id587:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address588:M109 +@collect_id589:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address590:M110 +@collect_id591:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address592:M111 +@collect_id593:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address594:M112 +@collect_id595:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address596:M113 +@collect_id597:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address598:M114 +@collect_id599:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address600:M115 +@collect_id601:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address602:M116 +@collect_id603:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address604:M117 +@collect_id605:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address606:M118 +@collect_id607:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address608:M119 +@collect_id609:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address610:M120 +@collect_id611:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address612:M121 +@collect_id613:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address614:M50 +@collect_id615:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address616:M380 +@collect_id617:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address618:M381 +@collect_id619:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address620:M382 +@collect_id621:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address622:M383 +@collect_id623:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address624:M384 +@collect_id625:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address626:M385 +@collect_id627:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address628:M386 +@collect_id629:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address630:M387 +@collect_id631:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address632:M388 +@collect_id633:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address634:M389 +@collect_id635:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address636:M390 +@collect_id637:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address638:M391 +@collect_id639:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address640:M392 +@collect_id641:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address642:M393 +@collect_id643:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address644:M394 +@collect_id645:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address646:B00010 +@collect_id647:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address648:B00011 +@collect_id649:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address650:B00012 +@collect_id651:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address652:B00013 +@collect_id653:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address654:B00014 +@collect_id655:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address656:B00015 +@collect_id657:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address658:B00016 +@collect_id659:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address660:B00017 +@collect_id661:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address662:B00018 +@collect_id663:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address664:B00019 +@collect_id665:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address666:B0001A +@collect_id667:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address668:B0001B +@collect_id669:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address670:B0001C +@collect_id671:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address672:B0001D +@collect_id673:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address674:B0001E +@collect_id675:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address676:B0001F +@collect_id677:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address678:B00020 +@collect_id679:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address680:B00021 +@collect_id681:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address682:B00022 +@collect_id683:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address684:B00023 +@collect_id685:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address686:B00024 +@collect_id687:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address688:B00025 +@collect_id689:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address690:B00026 +@collect_id691:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address692:B00027 +@collect_id693:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address694:B00028 +@collect_id695:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address696:B00029 +@collect_id697:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address698:B0002A +@collect_id699:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address700:B0002B +@collect_id701:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address702:B0002C +@collect_id703:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address704:B0002D +@collect_id705:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address706:B0002E +@collect_id707:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address708:B0002F +@collect_id709:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address710:B00510 +@collect_id711:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address712:B00511 +@collect_id713:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address714:B00512 +@collect_id715:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address716:B00513 +@collect_id717:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address718:B00514 +@collect_id719:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address720:B00515 +@collect_id721:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address722:B00516 +@collect_id723:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address724:B00517 +@collect_id725:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address726:B00518 +@collect_id727:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address728:B00519 +@collect_id729:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address730:B0051A +@collect_id731:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address732:B0051B +@collect_id733:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address734:B0051C +@collect_id735:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address736:B0051D +@collect_id737:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address738:B0051E +@collect_id739:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address740:B0051F +@collect_id741:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address742:B00520 +@collect_id743:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address744:B00521 +@collect_id745:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address746:B00522 +@collect_id747:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address748:B00523 +@collect_id749:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address750:B00524 +@collect_id751:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address752:B00525 +@collect_id753:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address754:B00526 +@collect_id755:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address756:B00527 +@collect_id757:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address758:B00528 +@collect_id759:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address760:B00529 +@collect_id761:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address762:B0052A +@collect_id763:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address764:B0052B +@collect_id765:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address766:B0052C +@collect_id767:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address768:B0052D +@collect_id769:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address770:B0052E +@collect_id771:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address772:B0052F +@collect_id773:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address774:B00A10 +@collect_id775:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address776:B00A11 +@collect_id777:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address778:B00A12 +@collect_id779:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address780:B00A13 +@collect_id781:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address782:B00A14 +@collect_id783:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address784:B00A15 +@collect_id785:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address786:B00A16 +@collect_id787:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address788:B00A17 +@collect_id789:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address790:B00A18 +@collect_id791:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address792:B00A19 +@collect_id793:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address794:B00A1A +@collect_id795:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address796:B00A1B +@collect_id797:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address798:B00A1C +@collect_id799:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address800:B00A1D +@collect_id801:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address802:B00A1E +@collect_id803:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address804:B00A1F +@collect_id805:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address806:B00A20 +@collect_id807:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address808:B00A21 +@collect_id809:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address810:B00A22 +@collect_id811:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address812:B00A23 +@collect_id813:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address814:B00A24 +@collect_id815:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address816:B00A25 +@collect_id817:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address818:B00A26 +@collect_id819:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address820:B00A27 +@collect_id821:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address822:B00A28 +@collect_id823:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address824:B00A29 +@collect_id825:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address826:B00A2A +@collect_id827:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address828:B00A2B +@collect_id829:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address830:B00A2C +@collect_id831:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address832:B00A2D +@collect_id833:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address834:B00A2E +@collect_id835:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address836:B00A2F +@collect_id837:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address838:B01810 +@collect_id839:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address840:B01811 +@collect_id841:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address842:B01812 +@collect_id843:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address844:B01813 +@collect_id845:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address846:B01814 +@collect_id847:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address848:B01815 +@collect_id849:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address850:B01816 +@collect_id851:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address852:B01817 +@collect_id853:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address854:B01818 +@collect_id855:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address856:B01819 + +【SQL语句】:INSERT INTO `eqmt_collect_except_his` (`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`registor_address`) VALUES('2022-06-02 08:21:03.188',NULL,@collect_id1,N'1',@registor_address2), ('2022-06-02 08:21:03.189',NULL,@collect_id3,N'1',@registor_address4), ('2022-06-02 08:21:03.189',NULL,@collect_id5,N'1',@registor_address6), ('2022-06-02 08:21:03.189',NULL,@collect_id7,N'1',@registor_address8), ('2022-06-02 08:21:03.189',NULL,@collect_id9,N'1',@registor_address10), ('2022-06-02 08:21:03.189',NULL,@collect_id11,N'1',@registor_address12), ('2022-06-02 08:21:03.189',NULL,@collect_id13,N'1',@registor_address14), ('2022-06-02 08:21:03.189',NULL,@collect_id15,N'1',@registor_address16), ('2022-06-02 08:21:03.189',NULL,@collect_id17,N'1',@registor_address18), ('2022-06-02 08:21:03.189',NULL,@collect_id19,N'1',@registor_address20), ('2022-06-02 08:21:03.189',NULL,@collect_id21,N'1',@registor_address22), ('2022-06-02 08:21:03.189',NULL,@collect_id23,N'1',@registor_address24), ('2022-06-02 08:21:03.189',NULL,@collect_id25,N'1',@registor_address26), ('2022-06-02 08:21:03.189',NULL,@collect_id27,N'1',@registor_address28), ('2022-06-02 08:21:03.189',NULL,@collect_id29,N'1',@registor_address30), ('2022-06-02 08:21:03.189',NULL,@collect_id31,N'1',@registor_address32), ('2022-06-02 08:21:03.189',NULL,@collect_id33,N'1',@registor_address34), ('2022-06-02 08:21:03.189',NULL,@collect_id35,N'1',@registor_address36), ('2022-06-02 08:21:03.189',NULL,@collect_id37,N'1',@registor_address38), ('2022-06-02 08:21:03.189',NULL,@collect_id39,N'1',@registor_address40), ('2022-06-02 08:21:03.189',NULL,@collect_id41,N'1',@registor_address42), ('2022-06-02 08:21:03.189',NULL,@collect_id43,N'1',@registor_address44), ('2022-06-02 08:21:03.189',NULL,@collect_id45,N'1',@registor_address46), ('2022-06-02 08:21:03.189',NULL,@collect_id47,N'1',@registor_address48), ('2022-06-02 08:21:03.189',NULL,@collect_id49,N'1',@registor_address50), ('2022-06-02 08:21:03.189',NULL,@collect_id51,N'1',@registor_address52), ('2022-06-02 08:21:03.189',NULL,@collect_id53,N'1',@registor_address54), ('2022-06-02 08:21:03.189',NULL,@collect_id55,N'1',@registor_address56), ('2022-06-02 08:21:03.189',NULL,@collect_id57,N'1',@registor_address58), ('2022-06-02 08:21:03.189',NULL,@collect_id59,N'1',@registor_address60), ('2022-06-02 08:21:03.189',NULL,@collect_id61,N'1',@registor_address62), ('2022-06-02 08:21:03.189',NULL,@collect_id63,N'1',@registor_address64), ('2022-06-02 08:21:03.189',NULL,@collect_id65,N'1',@registor_address66), ('2022-06-02 08:21:03.189',NULL,@collect_id67,N'1',@registor_address68), ('2022-06-02 08:21:03.189',NULL,@collect_id69,N'1',@registor_address70), ('2022-06-02 08:21:03.189',NULL,@collect_id71,N'1',@registor_address72), ('2022-06-02 08:21:03.189',NULL,@collect_id73,N'1',@registor_address74), ('2022-06-02 08:21:03.189',NULL,@collect_id75,N'1',@registor_address76), ('2022-06-02 08:21:03.189',NULL,@collect_id77,N'1',@registor_address78), ('2022-06-02 08:21:03.189',NULL,@collect_id79,N'1',@registor_address80), ('2022-06-02 08:21:03.189',NULL,@collect_id81,N'1',@registor_address82), ('2022-06-02 08:21:03.189',NULL,@collect_id83,N'1',@registor_address84), ('2022-06-02 08:21:03.189',NULL,@collect_id85,N'1',@registor_address86), ('2022-06-02 08:21:03.189',NULL,@collect_id87,N'1',@registor_address88), ('2022-06-02 08:21:03.189',NULL,@collect_id89,N'1',@registor_address90), ('2022-06-02 08:21:03.189',NULL,@collect_id91,N'1',@registor_address92), ('2022-06-02 08:21:03.189',NULL,@collect_id93,N'1',@registor_address94), ('2022-06-02 08:21:03.189',NULL,@collect_id95,N'1',@registor_address96), ('2022-06-02 08:21:03.189',NULL,@collect_id97,N'1',@registor_address98), ('2022-06-02 08:21:03.189',NULL,@collect_id99,N'1',@registor_address100), ('2022-06-02 08:21:03.189',NULL,@collect_id101,N'1',@registor_address102), ('2022-06-02 08:21:03.189',NULL,@collect_id103,N'1',@registor_address104), ('2022-06-02 08:21:03.189',NULL,@collect_id105,N'1',@registor_address106), ('2022-06-02 08:21:03.189',NULL,@collect_id107,N'1',@registor_address108), ('2022-06-02 08:21:03.189',NULL,@collect_id109,N'1',@registor_address110), ('2022-06-02 08:21:03.189',NULL,@collect_id111,N'1',@registor_address112), ('2022-06-02 08:21:03.189',NULL,@collect_id113,N'1',@registor_address114), ('2022-06-02 08:21:03.189',NULL,@collect_id115,N'1',@registor_address116), ('2022-06-02 08:21:03.189',NULL,@collect_id117,N'1',@registor_address118), ('2022-06-02 08:21:03.189',NULL,@collect_id119,N'1',@registor_address120), ('2022-06-02 08:21:03.189',NULL,@collect_id121,N'1',@registor_address122), ('2022-06-02 08:21:03.189',NULL,@collect_id123,N'1',@registor_address124), ('2022-06-02 08:21:03.189',NULL,@collect_id125,N'1',@registor_address126), ('2022-06-02 08:21:03.189',NULL,@collect_id127,N'1',@registor_address128), ('2022-06-02 08:21:03.189',NULL,@collect_id129,N'1',@registor_address130), ('2022-06-02 08:21:03.189',NULL,@collect_id131,N'1',@registor_address132), ('2022-06-02 08:21:03.189',NULL,@collect_id133,N'1',@registor_address134), ('2022-06-02 08:21:03.189',NULL,@collect_id135,N'1',@registor_address136), ('2022-06-02 08:21:03.189',NULL,@collect_id137,N'1',@registor_address138), ('2022-06-02 08:21:03.189',NULL,@collect_id139,N'1',@registor_address140), ('2022-06-02 08:21:03.189',NULL,@collect_id141,N'1',@registor_address142), ('2022-06-02 08:21:03.189',NULL,@collect_id143,N'1',@registor_address144), ('2022-06-02 08:21:03.189',NULL,@collect_id145,N'1',@registor_address146), ('2022-06-02 08:21:03.189',NULL,@collect_id147,N'1',@registor_address148), ('2022-06-02 08:21:03.189',NULL,@collect_id149,N'1',@registor_address150), ('2022-06-02 08:21:03.189',NULL,@collect_id151,N'1',@registor_address152), ('2022-06-02 08:21:03.189',NULL,@collect_id153,N'1',@registor_address154), ('2022-06-02 08:21:03.189',NULL,@collect_id155,N'1',@registor_address156), ('2022-06-02 08:21:03.189',NULL,@collect_id157,N'1',@registor_address158), ('2022-06-02 08:21:03.189',NULL,@collect_id159,N'1',@registor_address160), ('2022-06-02 08:21:03.189',NULL,@collect_id161,N'1',@registor_address162), ('2022-06-02 08:21:03.189',NULL,@collect_id163,N'1',@registor_address164), ('2022-06-02 08:21:03.189',NULL,@collect_id165,N'1',@registor_address166), ('2022-06-02 08:21:03.189',NULL,@collect_id167,N'1',@registor_address168), ('2022-06-02 08:21:03.189',NULL,@collect_id169,N'1',@registor_address170), ('2022-06-02 08:21:03.189',NULL,@collect_id171,N'1',@registor_address172), ('2022-06-02 08:21:03.189',NULL,@collect_id173,N'1',@registor_address174), ('2022-06-02 08:21:03.189',NULL,@collect_id175,N'1',@registor_address176), ('2022-06-02 08:21:03.189',NULL,@collect_id177,N'1',@registor_address178), ('2022-06-02 08:21:03.189',NULL,@collect_id179,N'1',@registor_address180), ('2022-06-02 08:21:03.189',NULL,@collect_id181,N'1',@registor_address182), ('2022-06-02 08:21:03.189',NULL,@collect_id183,N'1',@registor_address184), ('2022-06-02 08:21:03.189',NULL,@collect_id185,N'1',@registor_address186), ('2022-06-02 08:21:03.189',NULL,@collect_id187,N'1',@registor_address188), ('2022-06-02 08:21:03.189',NULL,@collect_id189,N'1',@registor_address190), ('2022-06-02 08:21:03.189',NULL,@collect_id191,N'1',@registor_address192), ('2022-06-02 08:21:03.189',NULL,@collect_id193,N'1',@registor_address194), ('2022-06-02 08:21:03.189',NULL,@collect_id195,N'1',@registor_address196), ('2022-06-02 08:21:03.189',NULL,@collect_id197,N'1',@registor_address198), ('2022-06-02 08:21:03.189',NULL,@collect_id199,N'1',@registor_address200), ('2022-06-02 08:21:03.189',NULL,@collect_id201,N'1',@registor_address202), ('2022-06-02 08:21:03.189',NULL,@collect_id203,N'1',@registor_address204), ('2022-06-02 08:21:03.189',NULL,@collect_id205,N'1',@registor_address206), ('2022-06-02 08:21:03.189',NULL,@collect_id207,N'1',@registor_address208), ('2022-06-02 08:21:03.189',NULL,@collect_id209,N'1',@registor_address210), ('2022-06-02 08:21:03.189',NULL,@collect_id211,N'1',@registor_address212), ('2022-06-02 08:21:03.189',NULL,@collect_id213,N'1',@registor_address214), ('2022-06-02 08:21:03.189',NULL,@collect_id215,N'1',@registor_address216), ('2022-06-02 08:21:03.189',NULL,@collect_id217,N'1',@registor_address218), ('2022-06-02 08:21:03.189',NULL,@collect_id219,N'1',@registor_address220), ('2022-06-02 08:21:03.189',NULL,@collect_id221,N'1',@registor_address222), ('2022-06-02 08:21:03.189',NULL,@collect_id223,N'1',@registor_address224), ('2022-06-02 08:21:03.189',NULL,@collect_id225,N'1',@registor_address226), ('2022-06-02 08:21:03.189',NULL,@collect_id227,N'1',@registor_address228), ('2022-06-02 08:21:03.189',NULL,@collect_id229,N'1',@registor_address230), ('2022-06-02 08:21:03.189',NULL,@collect_id231,N'1',@registor_address232), ('2022-06-02 08:21:03.189',NULL,@collect_id233,N'1',@registor_address234), ('2022-06-02 08:21:03.189',NULL,@collect_id235,N'1',@registor_address236), ('2022-06-02 08:21:03.189',NULL,@collect_id237,N'1',@registor_address238), ('2022-06-02 08:21:03.189',NULL,@collect_id239,N'1',@registor_address240), ('2022-06-02 08:21:03.189',NULL,@collect_id241,N'1',@registor_address242), ('2022-06-02 08:21:03.189',NULL,@collect_id243,N'1',@registor_address244), ('2022-06-02 08:21:03.189',NULL,@collect_id245,N'1',@registor_address246), ('2022-06-02 08:21:03.189',NULL,@collect_id247,N'1',@registor_address248), ('2022-06-02 08:21:03.189',NULL,@collect_id249,N'1',@registor_address250), ('2022-06-02 08:21:03.189',NULL,@collect_id251,N'1',@registor_address252), ('2022-06-02 08:21:03.189',NULL,@collect_id253,N'1',@registor_address254), ('2022-06-02 08:21:03.189',NULL,@collect_id255,N'1',@registor_address256), ('2022-06-02 08:21:03.189',NULL,@collect_id257,N'1',@registor_address258), ('2022-06-02 08:21:03.189',NULL,@collect_id259,N'1',@registor_address260), ('2022-06-02 08:21:03.189',NULL,@collect_id261,N'1',@registor_address262), ('2022-06-02 08:21:03.189',NULL,@collect_id263,N'1',@registor_address264), ('2022-06-02 08:21:03.189',NULL,@collect_id265,N'1',@registor_address266), ('2022-06-02 08:21:03.189',NULL,@collect_id267,N'1',@registor_address268), ('2022-06-02 08:21:03.189',NULL,@collect_id269,N'1',@registor_address270), ('2022-06-02 08:21:03.189',NULL,@collect_id271,N'1',@registor_address272), ('2022-06-02 08:21:03.189',NULL,@collect_id273,N'1',@registor_address274), ('2022-06-02 08:21:03.189',NULL,@collect_id275,N'1',@registor_address276), ('2022-06-02 08:21:03.189',NULL,@collect_id277,N'1',@registor_address278), ('2022-06-02 08:21:03.189',NULL,@collect_id279,N'1',@registor_address280), ('2022-06-02 08:21:03.189',NULL,@collect_id281,N'1',@registor_address282), ('2022-06-02 08:21:03.189',NULL,@collect_id283,N'1',@registor_address284), ('2022-06-02 08:21:03.189',NULL,@collect_id285,N'1',@registor_address286), ('2022-06-02 08:21:03.189',NULL,@collect_id287,N'1',@registor_address288), ('2022-06-02 08:21:03.189',NULL,@collect_id289,N'1',@registor_address290), ('2022-06-02 08:21:03.189',NULL,@collect_id291,N'1',@registor_address292), ('2022-06-02 08:21:03.189',NULL,@collect_id293,N'1',@registor_address294), ('2022-06-02 08:21:03.189',NULL,@collect_id295,N'1',@registor_address296), ('2022-06-02 08:21:03.189',NULL,@collect_id297,N'1',@registor_address298), ('2022-06-02 08:21:03.189',NULL,@collect_id299,N'1',@registor_address300), ('2022-06-02 08:21:03.189',NULL,@collect_id301,N'1',@registor_address302), ('2022-06-02 08:21:03.189',NULL,@collect_id303,N'1',@registor_address304), ('2022-06-02 08:21:03.189',NULL,@collect_id305,N'1',@registor_address306), ('2022-06-02 08:21:03.189',NULL,@collect_id307,N'1',@registor_address308), ('2022-06-02 08:21:03.189',NULL,@collect_id309,N'1',@registor_address310), ('2022-06-02 08:21:03.189',NULL,@collect_id311,N'1',@registor_address312), ('2022-06-02 08:21:03.189',NULL,@collect_id313,N'1',@registor_address314), ('2022-06-02 08:21:03.189',NULL,@collect_id315,N'1',@registor_address316), ('2022-06-02 08:21:03.189',NULL,@collect_id317,N'1',@registor_address318), ('2022-06-02 08:21:03.189',NULL,@collect_id319,N'1',@registor_address320), ('2022-06-02 08:21:03.189',NULL,@collect_id321,N'1',@registor_address322), ('2022-06-02 08:21:03.189',NULL,@collect_id323,N'1',@registor_address324), ('2022-06-02 08:21:03.189',NULL,@collect_id325,N'1',@registor_address326), ('2022-06-02 08:21:03.189',NULL,@collect_id327,N'1',@registor_address328), ('2022-06-02 08:21:03.189',NULL,@collect_id329,N'1',@registor_address330), ('2022-06-02 08:21:03.189',NULL,@collect_id331,N'1',@registor_address332), ('2022-06-02 08:21:03.189',NULL,@collect_id333,N'1',@registor_address334), ('2022-06-02 08:21:03.189',NULL,@collect_id335,N'1',@registor_address336), ('2022-06-02 08:21:03.189',NULL,@collect_id337,N'1',@registor_address338), ('2022-06-02 08:21:03.189',NULL,@collect_id339,N'1',@registor_address340), ('2022-06-02 08:21:03.189',NULL,@collect_id341,N'1',@registor_address342), ('2022-06-02 08:21:03.189',NULL,@collect_id343,N'1',@registor_address344), ('2022-06-02 08:21:03.189',NULL,@collect_id345,N'1',@registor_address346), ('2022-06-02 08:21:03.189',NULL,@collect_id347,N'1',@registor_address348), ('2022-06-02 08:21:03.189',NULL,@collect_id349,N'1',@registor_address350), ('2022-06-02 08:21:03.189',NULL,@collect_id351,N'1',@registor_address352), ('2022-06-02 08:21:03.189',NULL,@collect_id353,N'1',@registor_address354), ('2022-06-02 08:21:03.189',NULL,@collect_id355,N'1',@registor_address356), ('2022-06-02 08:21:03.189',NULL,@collect_id357,N'1',@registor_address358), ('2022-06-02 08:21:03.189',NULL,@collect_id359,N'1',@registor_address360), ('2022-06-02 08:21:03.189',NULL,@collect_id361,N'1',@registor_address362), ('2022-06-02 08:21:03.189',NULL,@collect_id363,N'1',@registor_address364), ('2022-06-02 08:21:03.189',NULL,@collect_id365,N'1',@registor_address366), ('2022-06-02 08:21:03.189',NULL,@collect_id367,N'1',@registor_address368), ('2022-06-02 08:21:03.189',NULL,@collect_id369,N'1',@registor_address370), ('2022-06-02 08:21:03.189',NULL,@collect_id371,N'1',@registor_address372), ('2022-06-02 08:21:03.189',NULL,@collect_id373,N'1',@registor_address374), ('2022-06-02 08:21:03.189',NULL,@collect_id375,N'1',@registor_address376), ('2022-06-02 08:21:03.189',NULL,@collect_id377,N'1',@registor_address378), ('2022-06-02 08:21:03.189',NULL,@collect_id379,N'1',@registor_address380), ('2022-06-02 08:21:03.189',NULL,@collect_id381,N'1',@registor_address382), ('2022-06-02 08:21:03.190',NULL,@collect_id383,N'1',@registor_address384), ('2022-06-02 08:21:03.190',NULL,@collect_id385,N'1',@registor_address386), ('2022-06-02 08:21:03.190',NULL,@collect_id387,N'1',@registor_address388), ('2022-06-02 08:21:03.190',NULL,@collect_id389,N'1',@registor_address390), ('2022-06-02 08:21:03.190',NULL,@collect_id391,N'1',@registor_address392), ('2022-06-02 08:21:03.190',NULL,@collect_id393,N'1',@registor_address394), ('2022-06-02 08:21:03.190',NULL,@collect_id395,N'1',@registor_address396), ('2022-06-02 08:21:03.190',NULL,@collect_id397,N'1',@registor_address398), ('2022-06-02 08:21:03.190',NULL,@collect_id399,N'1',@registor_address400), ('2022-06-02 08:21:03.190',NULL,@collect_id401,N'1',@registor_address402), ('2022-06-02 08:21:03.190',NULL,@collect_id403,N'1',@registor_address404), ('2022-06-02 08:21:03.190',NULL,@collect_id405,N'1',@registor_address406), ('2022-06-02 08:21:03.190',NULL,@collect_id407,N'1',@registor_address408), ('2022-06-02 08:21:03.190',NULL,@collect_id409,N'1',@registor_address410), ('2022-06-02 08:21:03.190',NULL,@collect_id411,N'1',@registor_address412), ('2022-06-02 08:21:03.190',NULL,@collect_id413,N'1',@registor_address414), ('2022-06-02 08:21:03.190',NULL,@collect_id415,N'1',@registor_address416), ('2022-06-02 08:21:03.190',NULL,@collect_id417,N'1',@registor_address418), ('2022-06-02 08:21:03.190',NULL,@collect_id419,N'1',@registor_address420), ('2022-06-02 08:21:03.190',NULL,@collect_id421,N'1',@registor_address422), ('2022-06-02 08:21:03.190',NULL,@collect_id423,N'1',@registor_address424), ('2022-06-02 08:21:03.190',NULL,@collect_id425,N'1',@registor_address426), ('2022-06-02 08:21:03.190',NULL,@collect_id427,N'1',@registor_address428), ('2022-06-02 08:21:08.474',NULL,@collect_id429,N'1',@registor_address430), ('2022-06-02 08:21:08.474',NULL,@collect_id431,N'1',@registor_address432), ('2022-06-02 08:21:08.474',NULL,@collect_id433,N'1',@registor_address434), ('2022-06-02 08:21:08.474',NULL,@collect_id435,N'1',@registor_address436), ('2022-06-02 08:21:08.474',NULL,@collect_id437,N'1',@registor_address438), ('2022-06-02 08:21:08.474',NULL,@collect_id439,N'1',@registor_address440), ('2022-06-02 08:21:08.474',NULL,@collect_id441,N'1',@registor_address442), ('2022-06-02 08:21:08.474',NULL,@collect_id443,N'1',@registor_address444), ('2022-06-02 08:21:08.474',NULL,@collect_id445,N'1',@registor_address446), ('2022-06-02 08:21:08.474',NULL,@collect_id447,N'1',@registor_address448), ('2022-06-02 08:21:08.474',NULL,@collect_id449,N'1',@registor_address450), ('2022-06-02 08:21:08.474',NULL,@collect_id451,N'1',@registor_address452), ('2022-06-02 08:21:08.474',NULL,@collect_id453,N'1',@registor_address454), ('2022-06-02 08:21:08.474',NULL,@collect_id455,N'1',@registor_address456), ('2022-06-02 08:21:08.474',NULL,@collect_id457,N'1',@registor_address458), ('2022-06-02 08:21:08.474',NULL,@collect_id459,N'1',@registor_address460), ('2022-06-02 08:21:08.474',NULL,@collect_id461,N'1',@registor_address462), ('2022-06-02 08:21:08.474',NULL,@collect_id463,N'1',@registor_address464), ('2022-06-02 08:21:08.474',NULL,@collect_id465,N'1',@registor_address466), ('2022-06-02 08:21:08.474',NULL,@collect_id467,N'1',@registor_address468), ('2022-06-02 08:21:08.474',NULL,@collect_id469,N'1',@registor_address470), ('2022-06-02 08:21:08.474',NULL,@collect_id471,N'1',@registor_address472), ('2022-06-02 08:21:08.474',NULL,@collect_id473,N'1',@registor_address474), ('2022-06-02 08:21:08.474',NULL,@collect_id475,N'1',@registor_address476), ('2022-06-02 08:21:08.474',NULL,@collect_id477,N'1',@registor_address478), ('2022-06-02 08:21:08.474',NULL,@collect_id479,N'1',@registor_address480), ('2022-06-02 08:21:08.474',NULL,@collect_id481,N'1',@registor_address482), ('2022-06-02 08:21:08.474',NULL,@collect_id483,N'1',@registor_address484), ('2022-06-02 08:21:08.474',NULL,@collect_id485,N'1',@registor_address486), ('2022-06-02 08:21:08.474',NULL,@collect_id487,N'1',@registor_address488), ('2022-06-02 08:21:08.474',NULL,@collect_id489,N'1',@registor_address490), ('2022-06-02 08:21:08.474',NULL,@collect_id491,N'1',@registor_address492), ('2022-06-02 08:21:08.474',NULL,@collect_id493,N'1',@registor_address494), ('2022-06-02 08:21:08.474',NULL,@collect_id495,N'1',@registor_address496), ('2022-06-02 08:21:08.474',NULL,@collect_id497,N'1',@registor_address498), ('2022-06-02 08:21:08.474',NULL,@collect_id499,N'1',@registor_address500), ('2022-06-02 08:21:08.474',NULL,@collect_id501,N'1',@registor_address502), ('2022-06-02 08:21:08.474',NULL,@collect_id503,N'1',@registor_address504), ('2022-06-02 08:21:08.474',NULL,@collect_id505,N'1',@registor_address506), ('2022-06-02 08:21:08.474',NULL,@collect_id507,N'1',@registor_address508), ('2022-06-02 08:21:08.474',NULL,@collect_id509,N'1',@registor_address510), ('2022-06-02 08:21:08.474',NULL,@collect_id511,N'1',@registor_address512), ('2022-06-02 08:21:08.474',NULL,@collect_id513,N'1',@registor_address514), ('2022-06-02 08:21:08.474',NULL,@collect_id515,N'1',@registor_address516), ('2022-06-02 08:21:08.474',NULL,@collect_id517,N'1',@registor_address518), ('2022-06-02 08:21:08.474',NULL,@collect_id519,N'1',@registor_address520), ('2022-06-02 08:21:08.474',NULL,@collect_id521,N'1',@registor_address522), ('2022-06-02 08:21:08.474',NULL,@collect_id523,N'1',@registor_address524), ('2022-06-02 08:21:08.474',NULL,@collect_id525,N'1',@registor_address526), ('2022-06-02 08:21:08.474',NULL,@collect_id527,N'1',@registor_address528), ('2022-06-02 08:21:08.474',NULL,@collect_id529,N'1',@registor_address530), ('2022-06-02 08:21:08.474',NULL,@collect_id531,N'1',@registor_address532), ('2022-06-02 08:21:08.474',NULL,@collect_id533,N'1',@registor_address534), ('2022-06-02 08:21:08.474',NULL,@collect_id535,N'1',@registor_address536), ('2022-06-02 08:21:08.474',NULL,@collect_id537,N'1',@registor_address538), ('2022-06-02 08:21:08.474',NULL,@collect_id539,N'1',@registor_address540), ('2022-06-02 08:21:08.474',NULL,@collect_id541,N'1',@registor_address542), ('2022-06-02 08:21:08.474',NULL,@collect_id543,N'1',@registor_address544), ('2022-06-02 08:21:08.474',NULL,@collect_id545,N'1',@registor_address546), ('2022-06-02 08:21:08.474',NULL,@collect_id547,N'1',@registor_address548), ('2022-06-02 08:21:08.474',NULL,@collect_id549,N'1',@registor_address550), ('2022-06-02 08:21:08.474',NULL,@collect_id551,N'1',@registor_address552), ('2022-06-02 08:21:08.474',NULL,@collect_id553,N'1',@registor_address554), ('2022-06-02 08:21:08.474',NULL,@collect_id555,N'1',@registor_address556), ('2022-06-02 08:21:08.474',NULL,@collect_id557,N'1',@registor_address558), ('2022-06-02 08:21:08.474',NULL,@collect_id559,N'1',@registor_address560), ('2022-06-02 08:21:08.474',NULL,@collect_id561,N'1',@registor_address562), ('2022-06-02 08:21:08.474',NULL,@collect_id563,N'1',@registor_address564), ('2022-06-02 08:21:08.474',NULL,@collect_id565,N'1',@registor_address566), ('2022-06-02 08:21:08.474',NULL,@collect_id567,N'1',@registor_address568), ('2022-06-02 08:21:08.474',NULL,@collect_id569,N'1',@registor_address570), ('2022-06-02 08:21:08.474',NULL,@collect_id571,N'1',@registor_address572), ('2022-06-02 08:21:08.474',NULL,@collect_id573,N'1',@registor_address574), ('2022-06-02 08:21:08.474',NULL,@collect_id575,N'1',@registor_address576), ('2022-06-02 08:21:08.474',NULL,@collect_id577,N'1',@registor_address578), ('2022-06-02 08:21:08.474',NULL,@collect_id579,N'1',@registor_address580), ('2022-06-02 08:21:08.474',NULL,@collect_id581,N'1',@registor_address582), ('2022-06-02 08:21:08.474',NULL,@collect_id583,N'1',@registor_address584), ('2022-06-02 08:21:08.474',NULL,@collect_id585,N'1',@registor_address586), ('2022-06-02 08:21:08.474',NULL,@collect_id587,N'1',@registor_address588), ('2022-06-02 08:21:08.474',NULL,@collect_id589,N'1',@registor_address590), ('2022-06-02 08:21:08.474',NULL,@collect_id591,N'1',@registor_address592), ('2022-06-02 08:21:08.474',NULL,@collect_id593,N'1',@registor_address594), ('2022-06-02 08:21:08.474',NULL,@collect_id595,N'1',@registor_address596), ('2022-06-02 08:21:08.474',NULL,@collect_id597,N'1',@registor_address598), ('2022-06-02 08:21:08.474',NULL,@collect_id599,N'1',@registor_address600), ('2022-06-02 08:21:08.474',NULL,@collect_id601,N'1',@registor_address602), ('2022-06-02 08:21:08.474',NULL,@collect_id603,N'1',@registor_address604), ('2022-06-02 08:21:08.474',NULL,@collect_id605,N'1',@registor_address606), ('2022-06-02 08:21:08.474',NULL,@collect_id607,N'1',@registor_address608), ('2022-06-02 08:21:08.474',NULL,@collect_id609,N'1',@registor_address610), ('2022-06-02 08:21:08.474',NULL,@collect_id611,N'1',@registor_address612), ('2022-06-02 08:21:08.474',NULL,@collect_id613,N'1',@registor_address614), ('2022-06-02 08:21:08.474',NULL,@collect_id615,N'1',@registor_address616), ('2022-06-02 08:21:08.474',NULL,@collect_id617,N'1',@registor_address618), ('2022-06-02 08:21:08.474',NULL,@collect_id619,N'1',@registor_address620), ('2022-06-02 08:21:08.474',NULL,@collect_id621,N'1',@registor_address622), ('2022-06-02 08:21:08.474',NULL,@collect_id623,N'1',@registor_address624), ('2022-06-02 08:21:08.474',NULL,@collect_id625,N'1',@registor_address626), ('2022-06-02 08:21:08.474',NULL,@collect_id627,N'1',@registor_address628), ('2022-06-02 08:21:08.474',NULL,@collect_id629,N'1',@registor_address630), ('2022-06-02 08:21:08.474',NULL,@collect_id631,N'1',@registor_address632), ('2022-06-02 08:21:08.474',NULL,@collect_id633,N'1',@registor_address634), ('2022-06-02 08:21:08.474',NULL,@collect_id635,N'1',@registor_address636), ('2022-06-02 08:21:08.474',NULL,@collect_id637,N'1',@registor_address638), ('2022-06-02 08:21:08.474',NULL,@collect_id639,N'1',@registor_address640), ('2022-06-02 08:21:08.474',NULL,@collect_id641,N'1',@registor_address642), ('2022-06-02 08:21:08.474',NULL,@collect_id643,N'1',@registor_address644), ('2022-06-02 08:21:08.474',NULL,@collect_id645,N'1',@registor_address646), ('2022-06-02 08:21:08.474',NULL,@collect_id647,N'1',@registor_address648), ('2022-06-02 08:21:08.474',NULL,@collect_id649,N'1',@registor_address650), ('2022-06-02 08:21:08.474',NULL,@collect_id651,N'1',@registor_address652), ('2022-06-02 08:21:08.474',NULL,@collect_id653,N'1',@registor_address654), ('2022-06-02 08:21:08.474',NULL,@collect_id655,N'1',@registor_address656), ('2022-06-02 08:21:08.474',NULL,@collect_id657,N'1',@registor_address658), ('2022-06-02 08:21:08.474',NULL,@collect_id659,N'1',@registor_address660), ('2022-06-02 08:21:08.474',NULL,@collect_id661,N'1',@registor_address662), ('2022-06-02 08:21:08.474',NULL,@collect_id663,N'1',@registor_address664), ('2022-06-02 08:21:08.474',NULL,@collect_id665,N'1',@registor_address666), ('2022-06-02 08:21:08.474',NULL,@collect_id667,N'1',@registor_address668), ('2022-06-02 08:21:08.474',NULL,@collect_id669,N'1',@registor_address670), ('2022-06-02 08:21:08.474',NULL,@collect_id671,N'1',@registor_address672), ('2022-06-02 08:21:08.474',NULL,@collect_id673,N'1',@registor_address674), ('2022-06-02 08:21:08.474',NULL,@collect_id675,N'1',@registor_address676), ('2022-06-02 08:21:08.474',NULL,@collect_id677,N'1',@registor_address678), ('2022-06-02 08:21:08.474',NULL,@collect_id679,N'1',@registor_address680), ('2022-06-02 08:21:08.474',NULL,@collect_id681,N'1',@registor_address682), ('2022-06-02 08:21:08.474',NULL,@collect_id683,N'1',@registor_address684), ('2022-06-02 08:21:08.474',NULL,@collect_id685,N'1',@registor_address686), ('2022-06-02 08:21:08.474',NULL,@collect_id687,N'1',@registor_address688), ('2022-06-02 08:21:08.474',NULL,@collect_id689,N'1',@registor_address690), ('2022-06-02 08:21:08.474',NULL,@collect_id691,N'1',@registor_address692), ('2022-06-02 08:21:08.474',NULL,@collect_id693,N'1',@registor_address694), ('2022-06-02 08:21:08.474',NULL,@collect_id695,N'1',@registor_address696), ('2022-06-02 08:21:08.474',NULL,@collect_id697,N'1',@registor_address698), ('2022-06-02 08:21:08.474',NULL,@collect_id699,N'1',@registor_address700), ('2022-06-02 08:21:08.474',NULL,@collect_id701,N'1',@registor_address702), ('2022-06-02 08:21:08.474',NULL,@collect_id703,N'1',@registor_address704), ('2022-06-02 08:21:08.474',NULL,@collect_id705,N'1',@registor_address706), ('2022-06-02 08:21:08.474',NULL,@collect_id707,N'1',@registor_address708), ('2022-06-02 08:21:08.474',NULL,@collect_id709,N'1',@registor_address710), ('2022-06-02 08:21:08.474',NULL,@collect_id711,N'1',@registor_address712), ('2022-06-02 08:21:08.474',NULL,@collect_id713,N'1',@registor_address714), ('2022-06-02 08:21:08.474',NULL,@collect_id715,N'1',@registor_address716), ('2022-06-02 08:21:08.474',NULL,@collect_id717,N'1',@registor_address718), ('2022-06-02 08:21:08.474',NULL,@collect_id719,N'1',@registor_address720), ('2022-06-02 08:21:08.474',NULL,@collect_id721,N'1',@registor_address722), ('2022-06-02 08:21:08.474',NULL,@collect_id723,N'1',@registor_address724), ('2022-06-02 08:21:08.474',NULL,@collect_id725,N'1',@registor_address726), ('2022-06-02 08:21:08.474',NULL,@collect_id727,N'1',@registor_address728), ('2022-06-02 08:21:08.474',NULL,@collect_id729,N'1',@registor_address730), ('2022-06-02 08:21:08.474',NULL,@collect_id731,N'1',@registor_address732), ('2022-06-02 08:21:08.474',NULL,@collect_id733,N'1',@registor_address734), ('2022-06-02 08:21:08.474',NULL,@collect_id735,N'1',@registor_address736), ('2022-06-02 08:21:08.474',NULL,@collect_id737,N'1',@registor_address738), ('2022-06-02 08:21:08.474',NULL,@collect_id739,N'1',@registor_address740), ('2022-06-02 08:21:08.474',NULL,@collect_id741,N'1',@registor_address742), ('2022-06-02 08:21:08.474',NULL,@collect_id743,N'1',@registor_address744), ('2022-06-02 08:21:08.474',NULL,@collect_id745,N'1',@registor_address746), ('2022-06-02 08:21:08.474',NULL,@collect_id747,N'1',@registor_address748), ('2022-06-02 08:21:08.474',NULL,@collect_id749,N'1',@registor_address750), ('2022-06-02 08:21:08.474',NULL,@collect_id751,N'1',@registor_address752), ('2022-06-02 08:21:08.474',NULL,@collect_id753,N'1',@registor_address754), ('2022-06-02 08:21:08.474',NULL,@collect_id755,N'1',@registor_address756), ('2022-06-02 08:21:08.474',NULL,@collect_id757,N'1',@registor_address758), ('2022-06-02 08:21:08.474',NULL,@collect_id759,N'1',@registor_address760), ('2022-06-02 08:21:08.474',NULL,@collect_id761,N'1',@registor_address762), ('2022-06-02 08:21:08.474',NULL,@collect_id763,N'1',@registor_address764), ('2022-06-02 08:21:08.474',NULL,@collect_id765,N'1',@registor_address766), ('2022-06-02 08:21:08.474',NULL,@collect_id767,N'1',@registor_address768), ('2022-06-02 08:21:08.474',NULL,@collect_id769,N'1',@registor_address770), ('2022-06-02 08:21:08.474',NULL,@collect_id771,N'1',@registor_address772), ('2022-06-02 08:21:08.474',NULL,@collect_id773,N'1',@registor_address774), ('2022-06-02 08:21:08.474',NULL,@collect_id775,N'1',@registor_address776), ('2022-06-02 08:21:08.474',NULL,@collect_id777,N'1',@registor_address778), ('2022-06-02 08:21:08.474',NULL,@collect_id779,N'1',@registor_address780), ('2022-06-02 08:21:08.474',NULL,@collect_id781,N'1',@registor_address782), ('2022-06-02 08:21:08.474',NULL,@collect_id783,N'1',@registor_address784), ('2022-06-02 08:21:08.474',NULL,@collect_id785,N'1',@registor_address786), ('2022-06-02 08:21:08.474',NULL,@collect_id787,N'1',@registor_address788), ('2022-06-02 08:21:08.474',NULL,@collect_id789,N'1',@registor_address790), ('2022-06-02 08:21:08.474',NULL,@collect_id791,N'1',@registor_address792), ('2022-06-02 08:21:08.474',NULL,@collect_id793,N'1',@registor_address794), ('2022-06-02 08:21:08.474',NULL,@collect_id795,N'1',@registor_address796), ('2022-06-02 08:21:08.474',NULL,@collect_id797,N'1',@registor_address798), ('2022-06-02 08:21:08.474',NULL,@collect_id799,N'1',@registor_address800), ('2022-06-02 08:21:08.474',NULL,@collect_id801,N'1',@registor_address802), ('2022-06-02 08:21:08.474',NULL,@collect_id803,N'1',@registor_address804), ('2022-06-02 08:21:08.474',NULL,@collect_id805,N'1',@registor_address806), ('2022-06-02 08:21:08.474',NULL,@collect_id807,N'1',@registor_address808), ('2022-06-02 08:21:08.474',NULL,@collect_id809,N'1',@registor_address810), ('2022-06-02 08:21:08.474',NULL,@collect_id811,N'1',@registor_address812), ('2022-06-02 08:21:08.474',NULL,@collect_id813,N'1',@registor_address814), ('2022-06-02 08:21:08.474',NULL,@collect_id815,N'1',@registor_address816), ('2022-06-02 08:21:08.474',NULL,@collect_id817,N'1',@registor_address818), ('2022-06-02 08:21:08.474',NULL,@collect_id819,N'1',@registor_address820), ('2022-06-02 08:21:08.474',NULL,@collect_id821,N'1',@registor_address822), ('2022-06-02 08:21:08.474',NULL,@collect_id823,N'1',@registor_address824), ('2022-06-02 08:21:08.474',NULL,@collect_id825,N'1',@registor_address826), ('2022-06-02 08:21:08.474',NULL,@collect_id827,N'1',@registor_address828), ('2022-06-02 08:21:08.474',NULL,@collect_id829,N'1',@registor_address830), ('2022-06-02 08:21:08.474',NULL,@collect_id831,N'1',@registor_address832), ('2022-06-02 08:21:08.474',NULL,@collect_id833,N'1',@registor_address834), ('2022-06-02 08:21:08.474',NULL,@collect_id835,N'1',@registor_address836), ('2022-06-02 08:21:08.474',NULL,@collect_id837,N'1',@registor_address838), ('2022-06-02 08:21:08.474',NULL,@collect_id839,N'1',@registor_address840), ('2022-06-02 08:21:08.474',NULL,@collect_id841,N'1',@registor_address842), ('2022-06-02 08:21:08.474',NULL,@collect_id843,N'1',@registor_address844), ('2022-06-02 08:21:08.474',NULL,@collect_id845,N'1',@registor_address846), ('2022-06-02 08:21:08.474',NULL,@collect_id847,N'1',@registor_address848), ('2022-06-02 08:21:08.474',NULL,@collect_id849,N'1',@registor_address850), ('2022-06-02 08:21:08.474',NULL,@collect_id851,N'1',@registor_address852), ('2022-06-02 08:21:08.474',NULL,@collect_id853,N'1',@registor_address854), ('2022-06-02 08:21:08.474',NULL,@collect_id855,N'1',@registor_address856) ;select @@IDENTITY + +-------------------------------- +2022/6/2 8:21:23| +【SQL参数】:@eqmt_id0:1 + +【SQL语句】:DELETE FROM `eqmt_collect_except` WHERE ( `eqmt_id` = @eqmt_id0 ) +-------------------------------- +2022/6/2 8:21:25| +【SQL参数】:@collect_id1:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address2:M160 +@collect_id3:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address4:M161 +@collect_id5:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address6:M162 +@collect_id7:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address8:M163 +@collect_id9:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address10:M164 +@collect_id11:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address12:M165 +@collect_id13:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address14:M166 +@collect_id15:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address16:M167 +@collect_id17:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address18:M168 +@collect_id19:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address20:M169 +@collect_id21:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address22:M170 +@collect_id23:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address24:M171 +@collect_id25:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address26:M172 +@collect_id27:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address28:M173 +@collect_id29:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address30:M174 +@collect_id31:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address32:M175 +@collect_id33:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address34:M176 +@collect_id35:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address36:M177 +@collect_id37:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address38:M178 +@collect_id39:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address40:M179 +@collect_id41:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address42:M180 +@collect_id43:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address44:M181 +@collect_id45:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address46:M182 +@collect_id47:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address48:M183 +@collect_id49:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address50:M184 +@collect_id51:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address52:M185 +@collect_id53:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address54:M186 +@collect_id55:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address56:M187 +@collect_id57:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address58:M188 +@collect_id59:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address60:M189 +@collect_id61:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address62:M190 +@collect_id63:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address64:M70 +@collect_id65:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address66:M700 +@collect_id67:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address68:M701 +@collect_id69:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address70:M702 +@collect_id71:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address72:M703 +@collect_id73:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address74:M704 +@collect_id75:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address76:M705 +@collect_id77:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address78:M706 +@collect_id79:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address80:M707 +@collect_id81:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address82:M708 +@collect_id83:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address84:M709 +@collect_id85:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address86:M710 +@collect_id87:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address88:M711 +@collect_id89:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address90:M712 +@collect_id91:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address92:M713 +@collect_id93:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address94:M714 +@collect_id95:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address96:M715 +@collect_id97:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address98:M716 +@collect_id99:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address100:M717 +@collect_id101:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address102:M718 +@collect_id103:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address104:M719 +@collect_id105:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address106:M720 +@collect_id107:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address108:M721 +@collect_id109:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address110:M722 +@collect_id111:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address112:M723 +@collect_id113:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address114:M724 +@collect_id115:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address116:M725 +@collect_id117:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address118:M726 +@collect_id119:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address120:M727 +@collect_id121:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address122:M728 +@collect_id123:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address124:M729 +@collect_id125:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address126:M730 +@collect_id127:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address128:M731 +@collect_id129:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address130:M732 +@collect_id131:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address132:M733 +@collect_id133:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address134:M734 +@collect_id135:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address136:M735 +@collect_id137:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address138:M736 +@collect_id139:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address140:M737 +@collect_id141:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address142:M738 +@collect_id143:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address144:M739 +@collect_id145:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address146:M740 +@collect_id147:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address148:M741 +@collect_id149:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address150:M742 +@collect_id151:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address152:M743 +@collect_id153:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address154:M744 +@collect_id155:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address156:M745 +@collect_id157:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address158:M108 +@collect_id159:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address160:M109 +@collect_id161:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address162:M110 +@collect_id163:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address164:M111 +@collect_id165:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address166:M112 +@collect_id167:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address168:M113 +@collect_id169:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address170:M114 +@collect_id171:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address172:M115 +@collect_id173:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address174:M116 +@collect_id175:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address176:M117 +@collect_id177:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address178:M118 +@collect_id179:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address180:M119 +@collect_id181:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address182:M120 +@collect_id183:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address184:M121 +@collect_id185:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address186:M50 +@collect_id187:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address188:M380 +@collect_id189:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address190:M381 +@collect_id191:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address192:M382 +@collect_id193:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address194:M383 +@collect_id195:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address196:M384 +@collect_id197:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address198:M385 +@collect_id199:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address200:M386 +@collect_id201:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address202:M387 +@collect_id203:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address204:M388 +@collect_id205:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address206:M389 +@collect_id207:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address208:M390 +@collect_id209:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address210:M391 +@collect_id211:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address212:M392 +@collect_id213:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address214:M393 +@collect_id215:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address216:M394 +@collect_id217:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address218:B00010 +@collect_id219:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address220:B00011 +@collect_id221:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address222:B00012 +@collect_id223:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address224:B00013 +@collect_id225:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address226:B00014 +@collect_id227:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address228:B00015 +@collect_id229:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address230:B00016 +@collect_id231:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address232:B00017 +@collect_id233:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address234:B00018 +@collect_id235:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address236:B00019 +@collect_id237:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address238:B0001A +@collect_id239:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address240:B0001B +@collect_id241:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address242:B0001C +@collect_id243:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address244:B0001D +@collect_id245:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address246:B0001E +@collect_id247:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address248:B0001F +@collect_id249:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address250:B00020 +@collect_id251:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address252:B00021 +@collect_id253:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address254:B00022 +@collect_id255:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address256:B00023 +@collect_id257:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address258:B00024 +@collect_id259:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address260:B00025 +@collect_id261:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address262:B00026 +@collect_id263:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address264:B00027 +@collect_id265:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address266:B00028 +@collect_id267:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address268:B00029 +@collect_id269:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address270:B0002A +@collect_id271:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address272:B0002B +@collect_id273:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address274:B0002C +@collect_id275:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address276:B0002D +@collect_id277:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address278:B0002E +@collect_id279:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address280:B0002F +@collect_id281:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address282:B00510 +@collect_id283:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address284:B00511 +@collect_id285:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address286:B00512 +@collect_id287:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address288:B00513 +@collect_id289:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address290:B00514 +@collect_id291:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address292:B00515 +@collect_id293:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address294:B00516 +@collect_id295:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address296:B00517 +@collect_id297:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address298:B00518 +@collect_id299:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address300:B00519 +@collect_id301:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address302:B0051A +@collect_id303:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address304:B0051B +@collect_id305:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address306:B0051C +@collect_id307:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address308:B0051D +@collect_id309:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address310:B0051E +@collect_id311:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address312:B0051F +@collect_id313:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address314:B00520 +@collect_id315:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address316:B00521 +@collect_id317:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address318:B00522 +@collect_id319:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address320:B00523 +@collect_id321:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address322:B00524 +@collect_id323:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address324:B00525 +@collect_id325:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address326:B00526 +@collect_id327:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address328:B00527 +@collect_id329:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address330:B00528 +@collect_id331:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address332:B00529 +@collect_id333:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address334:B0052A +@collect_id335:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address336:B0052B +@collect_id337:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address338:B0052C +@collect_id339:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address340:B0052D +@collect_id341:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address342:B0052E +@collect_id343:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address344:B0052F +@collect_id345:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address346:B00A10 +@collect_id347:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address348:B00A11 +@collect_id349:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address350:B00A12 +@collect_id351:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address352:B00A13 +@collect_id353:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address354:B00A14 +@collect_id355:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address356:B00A15 +@collect_id357:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address358:B00A16 +@collect_id359:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address360:B00A17 +@collect_id361:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address362:B00A18 +@collect_id363:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address364:B00A19 +@collect_id365:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address366:B00A1A +@collect_id367:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address368:B00A1B +@collect_id369:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address370:B00A1C +@collect_id371:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address372:B00A1D +@collect_id373:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address374:B00A1E +@collect_id375:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address376:B00A1F +@collect_id377:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address378:B00A20 +@collect_id379:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address380:B00A21 +@collect_id381:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address382:B00A22 +@collect_id383:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address384:B00A23 +@collect_id385:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address386:B00A24 +@collect_id387:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address388:B00A25 +@collect_id389:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address390:B00A26 +@collect_id391:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address392:B00A27 +@collect_id393:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address394:B00A28 +@collect_id395:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address396:B00A29 +@collect_id397:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address398:B00A2A +@collect_id399:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address400:B00A2B +@collect_id401:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address402:B00A2C +@collect_id403:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address404:B00A2D +@collect_id405:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address406:B00A2E +@collect_id407:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address408:B00A2F +@collect_id409:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address410:B01810 +@collect_id411:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address412:B01811 +@collect_id413:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address414:B01812 +@collect_id415:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address416:B01813 +@collect_id417:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address418:B01814 +@collect_id419:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address420:B01815 +@collect_id421:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address422:B01816 +@collect_id423:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address424:B01817 +@collect_id425:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address426:B01818 +@collect_id427:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address428:B01819 +@collect_id429:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address430:M160 +@collect_id431:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address432:M161 +@collect_id433:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address434:M162 +@collect_id435:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address436:M163 +@collect_id437:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address438:M164 +@collect_id439:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address440:M165 +@collect_id441:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address442:M166 +@collect_id443:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address444:M167 +@collect_id445:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address446:M168 +@collect_id447:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address448:M169 +@collect_id449:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address450:M170 +@collect_id451:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address452:M171 +@collect_id453:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address454:M172 +@collect_id455:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address456:M173 +@collect_id457:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address458:M174 +@collect_id459:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address460:M175 +@collect_id461:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address462:M176 +@collect_id463:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address464:M177 +@collect_id465:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address466:M178 +@collect_id467:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address468:M179 +@collect_id469:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address470:M180 +@collect_id471:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address472:M181 +@collect_id473:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address474:M182 +@collect_id475:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address476:M183 +@collect_id477:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address478:M184 +@collect_id479:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address480:M185 +@collect_id481:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address482:M186 +@collect_id483:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address484:M187 +@collect_id485:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address486:M188 +@collect_id487:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address488:M189 +@collect_id489:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address490:M190 +@collect_id491:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address492:M70 +@collect_id493:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address494:M700 +@collect_id495:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address496:M701 +@collect_id497:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address498:M702 +@collect_id499:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address500:M703 +@collect_id501:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address502:M704 +@collect_id503:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address504:M705 +@collect_id505:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address506:M706 +@collect_id507:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address508:M707 +@collect_id509:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address510:M708 +@collect_id511:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address512:M709 +@collect_id513:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address514:M710 +@collect_id515:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address516:M711 +@collect_id517:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address518:M712 +@collect_id519:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address520:M713 +@collect_id521:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address522:M714 +@collect_id523:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address524:M715 +@collect_id525:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address526:M716 +@collect_id527:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address528:M717 +@collect_id529:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address530:M718 +@collect_id531:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address532:M719 +@collect_id533:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address534:M720 +@collect_id535:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address536:M721 +@collect_id537:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address538:M722 +@collect_id539:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address540:M723 +@collect_id541:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address542:M724 +@collect_id543:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address544:M725 +@collect_id545:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address546:M726 +@collect_id547:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address548:M727 +@collect_id549:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address550:M728 +@collect_id551:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address552:M729 +@collect_id553:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address554:M730 +@collect_id555:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address556:M731 +@collect_id557:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address558:M732 +@collect_id559:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address560:M733 +@collect_id561:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address562:M734 +@collect_id563:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address564:M735 +@collect_id565:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address566:M736 +@collect_id567:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address568:M737 +@collect_id569:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address570:M738 +@collect_id571:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address572:M739 +@collect_id573:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address574:M740 +@collect_id575:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address576:M741 +@collect_id577:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address578:M742 +@collect_id579:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address580:M743 +@collect_id581:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address582:M744 +@collect_id583:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address584:M745 +@collect_id585:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address586:M108 +@collect_id587:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address588:M109 +@collect_id589:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address590:M110 +@collect_id591:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address592:M111 +@collect_id593:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address594:M112 +@collect_id595:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address596:M113 +@collect_id597:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address598:M114 +@collect_id599:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address600:M115 +@collect_id601:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address602:M116 +@collect_id603:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address604:M117 +@collect_id605:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address606:M118 +@collect_id607:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address608:M119 +@collect_id609:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address610:M120 +@collect_id611:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address612:M121 +@collect_id613:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address614:M50 +@collect_id615:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address616:M380 +@collect_id617:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address618:M381 +@collect_id619:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address620:M382 +@collect_id621:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address622:M383 +@collect_id623:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address624:M384 +@collect_id625:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address626:M385 +@collect_id627:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address628:M386 +@collect_id629:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address630:M387 +@collect_id631:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address632:M388 +@collect_id633:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address634:M389 +@collect_id635:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address636:M390 +@collect_id637:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address638:M391 +@collect_id639:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address640:M392 +@collect_id641:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address642:M393 +@collect_id643:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address644:M394 +@collect_id645:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address646:B00010 +@collect_id647:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address648:B00011 +@collect_id649:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address650:B00012 +@collect_id651:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address652:B00013 +@collect_id653:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address654:B00014 +@collect_id655:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address656:B00015 +@collect_id657:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address658:B00016 +@collect_id659:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address660:B00017 +@collect_id661:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address662:B00018 +@collect_id663:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address664:B00019 +@collect_id665:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address666:B0001A +@collect_id667:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address668:B0001B +@collect_id669:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address670:B0001C +@collect_id671:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address672:B0001D +@collect_id673:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address674:B0001E +@collect_id675:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address676:B0001F +@collect_id677:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address678:B00020 +@collect_id679:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address680:B00021 +@collect_id681:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address682:B00022 +@collect_id683:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address684:B00023 +@collect_id685:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address686:B00024 +@collect_id687:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address688:B00025 +@collect_id689:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address690:B00026 +@collect_id691:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address692:B00027 +@collect_id693:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address694:B00028 +@collect_id695:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address696:B00029 +@collect_id697:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address698:B0002A +@collect_id699:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address700:B0002B +@collect_id701:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address702:B0002C +@collect_id703:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address704:B0002D +@collect_id705:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address706:B0002E +@collect_id707:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address708:B0002F +@collect_id709:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address710:B00510 +@collect_id711:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address712:B00511 +@collect_id713:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address714:B00512 +@collect_id715:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address716:B00513 +@collect_id717:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address718:B00514 +@collect_id719:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address720:B00515 +@collect_id721:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address722:B00516 +@collect_id723:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address724:B00517 +@collect_id725:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address726:B00518 +@collect_id727:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address728:B00519 +@collect_id729:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address730:B0051A +@collect_id731:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address732:B0051B +@collect_id733:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address734:B0051C +@collect_id735:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address736:B0051D +@collect_id737:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address738:B0051E +@collect_id739:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address740:B0051F +@collect_id741:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address742:B00520 +@collect_id743:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address744:B00521 +@collect_id745:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address746:B00522 +@collect_id747:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address748:B00523 +@collect_id749:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address750:B00524 +@collect_id751:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address752:B00525 +@collect_id753:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address754:B00526 +@collect_id755:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address756:B00527 +@collect_id757:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address758:B00528 +@collect_id759:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address760:B00529 +@collect_id761:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address762:B0052A +@collect_id763:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address764:B0052B +@collect_id765:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address766:B0052C +@collect_id767:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address768:B0052D +@collect_id769:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address770:B0052E +@collect_id771:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address772:B0052F +@collect_id773:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address774:B00A10 +@collect_id775:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address776:B00A11 +@collect_id777:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address778:B00A12 +@collect_id779:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address780:B00A13 +@collect_id781:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address782:B00A14 +@collect_id783:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address784:B00A15 +@collect_id785:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address786:B00A16 +@collect_id787:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address788:B00A17 +@collect_id789:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address790:B00A18 +@collect_id791:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address792:B00A19 +@collect_id793:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address794:B00A1A +@collect_id795:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address796:B00A1B +@collect_id797:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address798:B00A1C +@collect_id799:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address800:B00A1D +@collect_id801:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address802:B00A1E +@collect_id803:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address804:B00A1F +@collect_id805:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address806:B00A20 +@collect_id807:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address808:B00A21 +@collect_id809:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address810:B00A22 +@collect_id811:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address812:B00A23 +@collect_id813:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address814:B00A24 +@collect_id815:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address816:B00A25 +@collect_id817:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address818:B00A26 +@collect_id819:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address820:B00A27 +@collect_id821:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address822:B00A28 +@collect_id823:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address824:B00A29 +@collect_id825:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address826:B00A2A +@collect_id827:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address828:B00A2B +@collect_id829:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address830:B00A2C +@collect_id831:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address832:B00A2D +@collect_id833:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address834:B00A2E +@collect_id835:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address836:B00A2F +@collect_id837:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address838:B01810 +@collect_id839:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address840:B01811 +@collect_id841:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address842:B01812 +@collect_id843:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address844:B01813 +@collect_id845:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address846:B01814 +@collect_id847:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address848:B01815 +@collect_id849:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address850:B01816 +@collect_id851:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address852:B01817 +@collect_id853:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address854:B01818 +@collect_id855:e707347c-cdde-48fa-bbb2-d8f81ca0e017 +@registor_address856:B01819 + +【SQL语句】:INSERT INTO `eqmt_collect_except` (`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`registor_address`) VALUES('2022-06-02 08:21:25.249',NULL,@collect_id1,N'1',@registor_address2), ('2022-06-02 08:21:25.249',NULL,@collect_id3,N'1',@registor_address4), ('2022-06-02 08:21:25.249',NULL,@collect_id5,N'1',@registor_address6), ('2022-06-02 08:21:25.249',NULL,@collect_id7,N'1',@registor_address8), ('2022-06-02 08:21:25.249',NULL,@collect_id9,N'1',@registor_address10), ('2022-06-02 08:21:25.249',NULL,@collect_id11,N'1',@registor_address12), ('2022-06-02 08:21:25.249',NULL,@collect_id13,N'1',@registor_address14), ('2022-06-02 08:21:25.249',NULL,@collect_id15,N'1',@registor_address16), ('2022-06-02 08:21:25.249',NULL,@collect_id17,N'1',@registor_address18), ('2022-06-02 08:21:25.249',NULL,@collect_id19,N'1',@registor_address20), ('2022-06-02 08:21:25.249',NULL,@collect_id21,N'1',@registor_address22), ('2022-06-02 08:21:25.249',NULL,@collect_id23,N'1',@registor_address24), ('2022-06-02 08:21:25.249',NULL,@collect_id25,N'1',@registor_address26), ('2022-06-02 08:21:25.249',NULL,@collect_id27,N'1',@registor_address28), ('2022-06-02 08:21:25.249',NULL,@collect_id29,N'1',@registor_address30), ('2022-06-02 08:21:25.249',NULL,@collect_id31,N'1',@registor_address32), ('2022-06-02 08:21:25.249',NULL,@collect_id33,N'1',@registor_address34), ('2022-06-02 08:21:25.249',NULL,@collect_id35,N'1',@registor_address36), ('2022-06-02 08:21:25.249',NULL,@collect_id37,N'1',@registor_address38), ('2022-06-02 08:21:25.249',NULL,@collect_id39,N'1',@registor_address40), ('2022-06-02 08:21:25.249',NULL,@collect_id41,N'1',@registor_address42), ('2022-06-02 08:21:25.249',NULL,@collect_id43,N'1',@registor_address44), ('2022-06-02 08:21:25.249',NULL,@collect_id45,N'1',@registor_address46), ('2022-06-02 08:21:25.249',NULL,@collect_id47,N'1',@registor_address48), ('2022-06-02 08:21:25.249',NULL,@collect_id49,N'1',@registor_address50), ('2022-06-02 08:21:25.249',NULL,@collect_id51,N'1',@registor_address52), ('2022-06-02 08:21:25.249',NULL,@collect_id53,N'1',@registor_address54), ('2022-06-02 08:21:25.249',NULL,@collect_id55,N'1',@registor_address56), ('2022-06-02 08:21:25.249',NULL,@collect_id57,N'1',@registor_address58), ('2022-06-02 08:21:25.249',NULL,@collect_id59,N'1',@registor_address60), ('2022-06-02 08:21:25.249',NULL,@collect_id61,N'1',@registor_address62), ('2022-06-02 08:21:25.249',NULL,@collect_id63,N'1',@registor_address64), ('2022-06-02 08:21:25.249',NULL,@collect_id65,N'1',@registor_address66), ('2022-06-02 08:21:25.249',NULL,@collect_id67,N'1',@registor_address68), ('2022-06-02 08:21:25.249',NULL,@collect_id69,N'1',@registor_address70), ('2022-06-02 08:21:25.249',NULL,@collect_id71,N'1',@registor_address72), ('2022-06-02 08:21:25.249',NULL,@collect_id73,N'1',@registor_address74), ('2022-06-02 08:21:25.249',NULL,@collect_id75,N'1',@registor_address76), ('2022-06-02 08:21:25.249',NULL,@collect_id77,N'1',@registor_address78), ('2022-06-02 08:21:25.249',NULL,@collect_id79,N'1',@registor_address80), ('2022-06-02 08:21:25.249',NULL,@collect_id81,N'1',@registor_address82), ('2022-06-02 08:21:25.249',NULL,@collect_id83,N'1',@registor_address84), ('2022-06-02 08:21:25.249',NULL,@collect_id85,N'1',@registor_address86), ('2022-06-02 08:21:25.249',NULL,@collect_id87,N'1',@registor_address88), ('2022-06-02 08:21:25.249',NULL,@collect_id89,N'1',@registor_address90), ('2022-06-02 08:21:25.249',NULL,@collect_id91,N'1',@registor_address92), ('2022-06-02 08:21:25.249',NULL,@collect_id93,N'1',@registor_address94), ('2022-06-02 08:21:25.249',NULL,@collect_id95,N'1',@registor_address96), ('2022-06-02 08:21:25.249',NULL,@collect_id97,N'1',@registor_address98), ('2022-06-02 08:21:25.249',NULL,@collect_id99,N'1',@registor_address100), ('2022-06-02 08:21:25.249',NULL,@collect_id101,N'1',@registor_address102), ('2022-06-02 08:21:25.249',NULL,@collect_id103,N'1',@registor_address104), ('2022-06-02 08:21:25.249',NULL,@collect_id105,N'1',@registor_address106), ('2022-06-02 08:21:25.249',NULL,@collect_id107,N'1',@registor_address108), ('2022-06-02 08:21:25.249',NULL,@collect_id109,N'1',@registor_address110), ('2022-06-02 08:21:25.249',NULL,@collect_id111,N'1',@registor_address112), ('2022-06-02 08:21:25.249',NULL,@collect_id113,N'1',@registor_address114), ('2022-06-02 08:21:25.249',NULL,@collect_id115,N'1',@registor_address116), ('2022-06-02 08:21:25.249',NULL,@collect_id117,N'1',@registor_address118), ('2022-06-02 08:21:25.249',NULL,@collect_id119,N'1',@registor_address120), ('2022-06-02 08:21:25.249',NULL,@collect_id121,N'1',@registor_address122), ('2022-06-02 08:21:25.249',NULL,@collect_id123,N'1',@registor_address124), ('2022-06-02 08:21:25.249',NULL,@collect_id125,N'1',@registor_address126), ('2022-06-02 08:21:25.249',NULL,@collect_id127,N'1',@registor_address128), ('2022-06-02 08:21:25.249',NULL,@collect_id129,N'1',@registor_address130), ('2022-06-02 08:21:25.249',NULL,@collect_id131,N'1',@registor_address132), ('2022-06-02 08:21:25.249',NULL,@collect_id133,N'1',@registor_address134), ('2022-06-02 08:21:25.249',NULL,@collect_id135,N'1',@registor_address136), ('2022-06-02 08:21:25.249',NULL,@collect_id137,N'1',@registor_address138), ('2022-06-02 08:21:25.249',NULL,@collect_id139,N'1',@registor_address140), ('2022-06-02 08:21:25.249',NULL,@collect_id141,N'1',@registor_address142), ('2022-06-02 08:21:25.249',NULL,@collect_id143,N'1',@registor_address144), ('2022-06-02 08:21:25.249',NULL,@collect_id145,N'1',@registor_address146), ('2022-06-02 08:21:25.249',NULL,@collect_id147,N'1',@registor_address148), ('2022-06-02 08:21:25.249',NULL,@collect_id149,N'1',@registor_address150), ('2022-06-02 08:21:25.249',NULL,@collect_id151,N'1',@registor_address152), ('2022-06-02 08:21:25.249',NULL,@collect_id153,N'1',@registor_address154), ('2022-06-02 08:21:25.249',NULL,@collect_id155,N'1',@registor_address156), ('2022-06-02 08:21:25.249',NULL,@collect_id157,N'1',@registor_address158), ('2022-06-02 08:21:25.249',NULL,@collect_id159,N'1',@registor_address160), ('2022-06-02 08:21:25.249',NULL,@collect_id161,N'1',@registor_address162), ('2022-06-02 08:21:25.249',NULL,@collect_id163,N'1',@registor_address164), ('2022-06-02 08:21:25.249',NULL,@collect_id165,N'1',@registor_address166), ('2022-06-02 08:21:25.249',NULL,@collect_id167,N'1',@registor_address168), ('2022-06-02 08:21:25.249',NULL,@collect_id169,N'1',@registor_address170), ('2022-06-02 08:21:25.249',NULL,@collect_id171,N'1',@registor_address172), ('2022-06-02 08:21:25.249',NULL,@collect_id173,N'1',@registor_address174), ('2022-06-02 08:21:25.249',NULL,@collect_id175,N'1',@registor_address176), ('2022-06-02 08:21:25.249',NULL,@collect_id177,N'1',@registor_address178), ('2022-06-02 08:21:25.249',NULL,@collect_id179,N'1',@registor_address180), ('2022-06-02 08:21:25.249',NULL,@collect_id181,N'1',@registor_address182), ('2022-06-02 08:21:25.249',NULL,@collect_id183,N'1',@registor_address184), ('2022-06-02 08:21:25.249',NULL,@collect_id185,N'1',@registor_address186), ('2022-06-02 08:21:25.249',NULL,@collect_id187,N'1',@registor_address188), ('2022-06-02 08:21:25.249',NULL,@collect_id189,N'1',@registor_address190), ('2022-06-02 08:21:25.249',NULL,@collect_id191,N'1',@registor_address192), ('2022-06-02 08:21:25.249',NULL,@collect_id193,N'1',@registor_address194), ('2022-06-02 08:21:25.249',NULL,@collect_id195,N'1',@registor_address196), ('2022-06-02 08:21:25.249',NULL,@collect_id197,N'1',@registor_address198), ('2022-06-02 08:21:25.249',NULL,@collect_id199,N'1',@registor_address200), ('2022-06-02 08:21:25.249',NULL,@collect_id201,N'1',@registor_address202), ('2022-06-02 08:21:25.249',NULL,@collect_id203,N'1',@registor_address204), ('2022-06-02 08:21:25.249',NULL,@collect_id205,N'1',@registor_address206), ('2022-06-02 08:21:25.249',NULL,@collect_id207,N'1',@registor_address208), ('2022-06-02 08:21:25.249',NULL,@collect_id209,N'1',@registor_address210), ('2022-06-02 08:21:25.249',NULL,@collect_id211,N'1',@registor_address212), ('2022-06-02 08:21:25.249',NULL,@collect_id213,N'1',@registor_address214), ('2022-06-02 08:21:25.249',NULL,@collect_id215,N'1',@registor_address216), ('2022-06-02 08:21:25.249',NULL,@collect_id217,N'1',@registor_address218), ('2022-06-02 08:21:25.249',NULL,@collect_id219,N'1',@registor_address220), ('2022-06-02 08:21:25.249',NULL,@collect_id221,N'1',@registor_address222), ('2022-06-02 08:21:25.249',NULL,@collect_id223,N'1',@registor_address224), ('2022-06-02 08:21:25.249',NULL,@collect_id225,N'1',@registor_address226), ('2022-06-02 08:21:25.249',NULL,@collect_id227,N'1',@registor_address228), ('2022-06-02 08:21:25.249',NULL,@collect_id229,N'1',@registor_address230), ('2022-06-02 08:21:25.249',NULL,@collect_id231,N'1',@registor_address232), ('2022-06-02 08:21:25.249',NULL,@collect_id233,N'1',@registor_address234), ('2022-06-02 08:21:25.249',NULL,@collect_id235,N'1',@registor_address236), ('2022-06-02 08:21:25.249',NULL,@collect_id237,N'1',@registor_address238), ('2022-06-02 08:21:25.249',NULL,@collect_id239,N'1',@registor_address240), ('2022-06-02 08:21:25.249',NULL,@collect_id241,N'1',@registor_address242), ('2022-06-02 08:21:25.249',NULL,@collect_id243,N'1',@registor_address244), ('2022-06-02 08:21:25.249',NULL,@collect_id245,N'1',@registor_address246), ('2022-06-02 08:21:25.249',NULL,@collect_id247,N'1',@registor_address248), ('2022-06-02 08:21:25.249',NULL,@collect_id249,N'1',@registor_address250), ('2022-06-02 08:21:25.249',NULL,@collect_id251,N'1',@registor_address252), ('2022-06-02 08:21:25.249',NULL,@collect_id253,N'1',@registor_address254), ('2022-06-02 08:21:25.249',NULL,@collect_id255,N'1',@registor_address256), ('2022-06-02 08:21:25.249',NULL,@collect_id257,N'1',@registor_address258), ('2022-06-02 08:21:25.249',NULL,@collect_id259,N'1',@registor_address260), ('2022-06-02 08:21:25.249',NULL,@collect_id261,N'1',@registor_address262), ('2022-06-02 08:21:25.249',NULL,@collect_id263,N'1',@registor_address264), ('2022-06-02 08:21:25.249',NULL,@collect_id265,N'1',@registor_address266), ('2022-06-02 08:21:25.249',NULL,@collect_id267,N'1',@registor_address268), ('2022-06-02 08:21:25.249',NULL,@collect_id269,N'1',@registor_address270), ('2022-06-02 08:21:25.249',NULL,@collect_id271,N'1',@registor_address272), ('2022-06-02 08:21:25.249',NULL,@collect_id273,N'1',@registor_address274), ('2022-06-02 08:21:25.249',NULL,@collect_id275,N'1',@registor_address276), ('2022-06-02 08:21:25.249',NULL,@collect_id277,N'1',@registor_address278), ('2022-06-02 08:21:25.249',NULL,@collect_id279,N'1',@registor_address280), ('2022-06-02 08:21:25.249',NULL,@collect_id281,N'1',@registor_address282), ('2022-06-02 08:21:25.249',NULL,@collect_id283,N'1',@registor_address284), ('2022-06-02 08:21:25.249',NULL,@collect_id285,N'1',@registor_address286), ('2022-06-02 08:21:25.249',NULL,@collect_id287,N'1',@registor_address288), ('2022-06-02 08:21:25.249',NULL,@collect_id289,N'1',@registor_address290), ('2022-06-02 08:21:25.249',NULL,@collect_id291,N'1',@registor_address292), ('2022-06-02 08:21:25.249',NULL,@collect_id293,N'1',@registor_address294), ('2022-06-02 08:21:25.249',NULL,@collect_id295,N'1',@registor_address296), ('2022-06-02 08:21:25.249',NULL,@collect_id297,N'1',@registor_address298), ('2022-06-02 08:21:25.249',NULL,@collect_id299,N'1',@registor_address300), ('2022-06-02 08:21:25.249',NULL,@collect_id301,N'1',@registor_address302), ('2022-06-02 08:21:25.249',NULL,@collect_id303,N'1',@registor_address304), ('2022-06-02 08:21:25.249',NULL,@collect_id305,N'1',@registor_address306), ('2022-06-02 08:21:25.249',NULL,@collect_id307,N'1',@registor_address308), ('2022-06-02 08:21:25.249',NULL,@collect_id309,N'1',@registor_address310), ('2022-06-02 08:21:25.249',NULL,@collect_id311,N'1',@registor_address312), ('2022-06-02 08:21:25.249',NULL,@collect_id313,N'1',@registor_address314), ('2022-06-02 08:21:25.249',NULL,@collect_id315,N'1',@registor_address316), ('2022-06-02 08:21:25.249',NULL,@collect_id317,N'1',@registor_address318), ('2022-06-02 08:21:25.249',NULL,@collect_id319,N'1',@registor_address320), ('2022-06-02 08:21:25.249',NULL,@collect_id321,N'1',@registor_address322), ('2022-06-02 08:21:25.249',NULL,@collect_id323,N'1',@registor_address324), ('2022-06-02 08:21:25.249',NULL,@collect_id325,N'1',@registor_address326), ('2022-06-02 08:21:25.249',NULL,@collect_id327,N'1',@registor_address328), ('2022-06-02 08:21:25.249',NULL,@collect_id329,N'1',@registor_address330), ('2022-06-02 08:21:25.249',NULL,@collect_id331,N'1',@registor_address332), ('2022-06-02 08:21:25.249',NULL,@collect_id333,N'1',@registor_address334), ('2022-06-02 08:21:25.249',NULL,@collect_id335,N'1',@registor_address336), ('2022-06-02 08:21:25.249',NULL,@collect_id337,N'1',@registor_address338), ('2022-06-02 08:21:25.249',NULL,@collect_id339,N'1',@registor_address340), ('2022-06-02 08:21:25.249',NULL,@collect_id341,N'1',@registor_address342), ('2022-06-02 08:21:25.249',NULL,@collect_id343,N'1',@registor_address344), ('2022-06-02 08:21:25.249',NULL,@collect_id345,N'1',@registor_address346), ('2022-06-02 08:21:25.249',NULL,@collect_id347,N'1',@registor_address348), ('2022-06-02 08:21:25.249',NULL,@collect_id349,N'1',@registor_address350), ('2022-06-02 08:21:25.249',NULL,@collect_id351,N'1',@registor_address352), ('2022-06-02 08:21:25.249',NULL,@collect_id353,N'1',@registor_address354), ('2022-06-02 08:21:25.249',NULL,@collect_id355,N'1',@registor_address356), ('2022-06-02 08:21:25.249',NULL,@collect_id357,N'1',@registor_address358), ('2022-06-02 08:21:25.249',NULL,@collect_id359,N'1',@registor_address360), ('2022-06-02 08:21:25.249',NULL,@collect_id361,N'1',@registor_address362), ('2022-06-02 08:21:25.249',NULL,@collect_id363,N'1',@registor_address364), ('2022-06-02 08:21:25.249',NULL,@collect_id365,N'1',@registor_address366), ('2022-06-02 08:21:25.249',NULL,@collect_id367,N'1',@registor_address368), ('2022-06-02 08:21:25.249',NULL,@collect_id369,N'1',@registor_address370), ('2022-06-02 08:21:25.249',NULL,@collect_id371,N'1',@registor_address372), ('2022-06-02 08:21:25.249',NULL,@collect_id373,N'1',@registor_address374), ('2022-06-02 08:21:25.249',NULL,@collect_id375,N'1',@registor_address376), ('2022-06-02 08:21:25.249',NULL,@collect_id377,N'1',@registor_address378), ('2022-06-02 08:21:25.249',NULL,@collect_id379,N'1',@registor_address380), ('2022-06-02 08:21:25.249',NULL,@collect_id381,N'1',@registor_address382), ('2022-06-02 08:21:25.249',NULL,@collect_id383,N'1',@registor_address384), ('2022-06-02 08:21:25.249',NULL,@collect_id385,N'1',@registor_address386), ('2022-06-02 08:21:25.249',NULL,@collect_id387,N'1',@registor_address388), ('2022-06-02 08:21:25.249',NULL,@collect_id389,N'1',@registor_address390), ('2022-06-02 08:21:25.249',NULL,@collect_id391,N'1',@registor_address392), ('2022-06-02 08:21:25.249',NULL,@collect_id393,N'1',@registor_address394), ('2022-06-02 08:21:25.249',NULL,@collect_id395,N'1',@registor_address396), ('2022-06-02 08:21:25.249',NULL,@collect_id397,N'1',@registor_address398), ('2022-06-02 08:21:25.249',NULL,@collect_id399,N'1',@registor_address400), ('2022-06-02 08:21:25.249',NULL,@collect_id401,N'1',@registor_address402), ('2022-06-02 08:21:25.249',NULL,@collect_id403,N'1',@registor_address404), ('2022-06-02 08:21:25.249',NULL,@collect_id405,N'1',@registor_address406), ('2022-06-02 08:21:25.249',NULL,@collect_id407,N'1',@registor_address408), ('2022-06-02 08:21:25.249',NULL,@collect_id409,N'1',@registor_address410), ('2022-06-02 08:21:25.249',NULL,@collect_id411,N'1',@registor_address412), ('2022-06-02 08:21:25.249',NULL,@collect_id413,N'1',@registor_address414), ('2022-06-02 08:21:25.249',NULL,@collect_id415,N'1',@registor_address416), ('2022-06-02 08:21:25.249',NULL,@collect_id417,N'1',@registor_address418), ('2022-06-02 08:21:25.249',NULL,@collect_id419,N'1',@registor_address420), ('2022-06-02 08:21:25.249',NULL,@collect_id421,N'1',@registor_address422), ('2022-06-02 08:21:25.249',NULL,@collect_id423,N'1',@registor_address424), ('2022-06-02 08:21:25.249',NULL,@collect_id425,N'1',@registor_address426), ('2022-06-02 08:21:25.249',NULL,@collect_id427,N'1',@registor_address428), ('2022-06-02 08:21:25.249',NULL,@collect_id429,N'1',@registor_address430), ('2022-06-02 08:21:25.249',NULL,@collect_id431,N'1',@registor_address432), ('2022-06-02 08:21:25.249',NULL,@collect_id433,N'1',@registor_address434), ('2022-06-02 08:21:25.249',NULL,@collect_id435,N'1',@registor_address436), ('2022-06-02 08:21:25.249',NULL,@collect_id437,N'1',@registor_address438), ('2022-06-02 08:21:25.249',NULL,@collect_id439,N'1',@registor_address440), ('2022-06-02 08:21:25.249',NULL,@collect_id441,N'1',@registor_address442), ('2022-06-02 08:21:25.249',NULL,@collect_id443,N'1',@registor_address444), ('2022-06-02 08:21:25.249',NULL,@collect_id445,N'1',@registor_address446), ('2022-06-02 08:21:25.249',NULL,@collect_id447,N'1',@registor_address448), ('2022-06-02 08:21:25.249',NULL,@collect_id449,N'1',@registor_address450), ('2022-06-02 08:21:25.249',NULL,@collect_id451,N'1',@registor_address452), ('2022-06-02 08:21:25.249',NULL,@collect_id453,N'1',@registor_address454), ('2022-06-02 08:21:25.249',NULL,@collect_id455,N'1',@registor_address456), ('2022-06-02 08:21:25.249',NULL,@collect_id457,N'1',@registor_address458), ('2022-06-02 08:21:25.249',NULL,@collect_id459,N'1',@registor_address460), ('2022-06-02 08:21:25.249',NULL,@collect_id461,N'1',@registor_address462), ('2022-06-02 08:21:25.249',NULL,@collect_id463,N'1',@registor_address464), ('2022-06-02 08:21:25.249',NULL,@collect_id465,N'1',@registor_address466), ('2022-06-02 08:21:25.249',NULL,@collect_id467,N'1',@registor_address468), ('2022-06-02 08:21:25.249',NULL,@collect_id469,N'1',@registor_address470), ('2022-06-02 08:21:25.249',NULL,@collect_id471,N'1',@registor_address472), ('2022-06-02 08:21:25.249',NULL,@collect_id473,N'1',@registor_address474), ('2022-06-02 08:21:25.249',NULL,@collect_id475,N'1',@registor_address476), ('2022-06-02 08:21:25.249',NULL,@collect_id477,N'1',@registor_address478), ('2022-06-02 08:21:25.249',NULL,@collect_id479,N'1',@registor_address480), ('2022-06-02 08:21:25.249',NULL,@collect_id481,N'1',@registor_address482), ('2022-06-02 08:21:25.249',NULL,@collect_id483,N'1',@registor_address484), ('2022-06-02 08:21:25.249',NULL,@collect_id485,N'1',@registor_address486), ('2022-06-02 08:21:25.249',NULL,@collect_id487,N'1',@registor_address488), ('2022-06-02 08:21:25.249',NULL,@collect_id489,N'1',@registor_address490), ('2022-06-02 08:21:25.249',NULL,@collect_id491,N'1',@registor_address492), ('2022-06-02 08:21:25.249',NULL,@collect_id493,N'1',@registor_address494), ('2022-06-02 08:21:25.249',NULL,@collect_id495,N'1',@registor_address496), ('2022-06-02 08:21:25.249',NULL,@collect_id497,N'1',@registor_address498), ('2022-06-02 08:21:25.249',NULL,@collect_id499,N'1',@registor_address500), ('2022-06-02 08:21:25.249',NULL,@collect_id501,N'1',@registor_address502), ('2022-06-02 08:21:25.249',NULL,@collect_id503,N'1',@registor_address504), ('2022-06-02 08:21:25.249',NULL,@collect_id505,N'1',@registor_address506), ('2022-06-02 08:21:25.249',NULL,@collect_id507,N'1',@registor_address508), ('2022-06-02 08:21:25.249',NULL,@collect_id509,N'1',@registor_address510), ('2022-06-02 08:21:25.249',NULL,@collect_id511,N'1',@registor_address512), ('2022-06-02 08:21:25.249',NULL,@collect_id513,N'1',@registor_address514), ('2022-06-02 08:21:25.249',NULL,@collect_id515,N'1',@registor_address516), ('2022-06-02 08:21:25.249',NULL,@collect_id517,N'1',@registor_address518), ('2022-06-02 08:21:25.249',NULL,@collect_id519,N'1',@registor_address520), ('2022-06-02 08:21:25.249',NULL,@collect_id521,N'1',@registor_address522), ('2022-06-02 08:21:25.249',NULL,@collect_id523,N'1',@registor_address524), ('2022-06-02 08:21:25.249',NULL,@collect_id525,N'1',@registor_address526), ('2022-06-02 08:21:25.249',NULL,@collect_id527,N'1',@registor_address528), ('2022-06-02 08:21:25.249',NULL,@collect_id529,N'1',@registor_address530), ('2022-06-02 08:21:25.249',NULL,@collect_id531,N'1',@registor_address532), ('2022-06-02 08:21:25.249',NULL,@collect_id533,N'1',@registor_address534), ('2022-06-02 08:21:25.249',NULL,@collect_id535,N'1',@registor_address536), ('2022-06-02 08:21:25.249',NULL,@collect_id537,N'1',@registor_address538), ('2022-06-02 08:21:25.249',NULL,@collect_id539,N'1',@registor_address540), ('2022-06-02 08:21:25.249',NULL,@collect_id541,N'1',@registor_address542), ('2022-06-02 08:21:25.249',NULL,@collect_id543,N'1',@registor_address544), ('2022-06-02 08:21:25.249',NULL,@collect_id545,N'1',@registor_address546), ('2022-06-02 08:21:25.249',NULL,@collect_id547,N'1',@registor_address548), ('2022-06-02 08:21:25.249',NULL,@collect_id549,N'1',@registor_address550), ('2022-06-02 08:21:25.249',NULL,@collect_id551,N'1',@registor_address552), ('2022-06-02 08:21:25.249',NULL,@collect_id553,N'1',@registor_address554), ('2022-06-02 08:21:25.249',NULL,@collect_id555,N'1',@registor_address556), ('2022-06-02 08:21:25.249',NULL,@collect_id557,N'1',@registor_address558), ('2022-06-02 08:21:25.249',NULL,@collect_id559,N'1',@registor_address560), ('2022-06-02 08:21:25.249',NULL,@collect_id561,N'1',@registor_address562), ('2022-06-02 08:21:25.249',NULL,@collect_id563,N'1',@registor_address564), ('2022-06-02 08:21:25.249',NULL,@collect_id565,N'1',@registor_address566), ('2022-06-02 08:21:25.249',NULL,@collect_id567,N'1',@registor_address568), ('2022-06-02 08:21:25.249',NULL,@collect_id569,N'1',@registor_address570), ('2022-06-02 08:21:25.249',NULL,@collect_id571,N'1',@registor_address572), ('2022-06-02 08:21:25.249',NULL,@collect_id573,N'1',@registor_address574), ('2022-06-02 08:21:25.249',NULL,@collect_id575,N'1',@registor_address576), ('2022-06-02 08:21:25.249',NULL,@collect_id577,N'1',@registor_address578), ('2022-06-02 08:21:25.249',NULL,@collect_id579,N'1',@registor_address580), ('2022-06-02 08:21:25.249',NULL,@collect_id581,N'1',@registor_address582), ('2022-06-02 08:21:25.249',NULL,@collect_id583,N'1',@registor_address584), ('2022-06-02 08:21:25.249',NULL,@collect_id585,N'1',@registor_address586), ('2022-06-02 08:21:25.249',NULL,@collect_id587,N'1',@registor_address588), ('2022-06-02 08:21:25.249',NULL,@collect_id589,N'1',@registor_address590), ('2022-06-02 08:21:25.249',NULL,@collect_id591,N'1',@registor_address592), ('2022-06-02 08:21:25.249',NULL,@collect_id593,N'1',@registor_address594), ('2022-06-02 08:21:25.249',NULL,@collect_id595,N'1',@registor_address596), ('2022-06-02 08:21:25.249',NULL,@collect_id597,N'1',@registor_address598), ('2022-06-02 08:21:25.249',NULL,@collect_id599,N'1',@registor_address600), ('2022-06-02 08:21:25.249',NULL,@collect_id601,N'1',@registor_address602), ('2022-06-02 08:21:25.249',NULL,@collect_id603,N'1',@registor_address604), ('2022-06-02 08:21:25.249',NULL,@collect_id605,N'1',@registor_address606), ('2022-06-02 08:21:25.249',NULL,@collect_id607,N'1',@registor_address608), ('2022-06-02 08:21:25.249',NULL,@collect_id609,N'1',@registor_address610), ('2022-06-02 08:21:25.249',NULL,@collect_id611,N'1',@registor_address612), ('2022-06-02 08:21:25.249',NULL,@collect_id613,N'1',@registor_address614), ('2022-06-02 08:21:25.249',NULL,@collect_id615,N'1',@registor_address616), ('2022-06-02 08:21:25.249',NULL,@collect_id617,N'1',@registor_address618), ('2022-06-02 08:21:25.249',NULL,@collect_id619,N'1',@registor_address620), ('2022-06-02 08:21:25.249',NULL,@collect_id621,N'1',@registor_address622), ('2022-06-02 08:21:25.249',NULL,@collect_id623,N'1',@registor_address624), ('2022-06-02 08:21:25.249',NULL,@collect_id625,N'1',@registor_address626), ('2022-06-02 08:21:25.249',NULL,@collect_id627,N'1',@registor_address628), ('2022-06-02 08:21:25.249',NULL,@collect_id629,N'1',@registor_address630), ('2022-06-02 08:21:25.249',NULL,@collect_id631,N'1',@registor_address632), ('2022-06-02 08:21:25.249',NULL,@collect_id633,N'1',@registor_address634), ('2022-06-02 08:21:25.249',NULL,@collect_id635,N'1',@registor_address636), ('2022-06-02 08:21:25.249',NULL,@collect_id637,N'1',@registor_address638), ('2022-06-02 08:21:25.249',NULL,@collect_id639,N'1',@registor_address640), ('2022-06-02 08:21:25.249',NULL,@collect_id641,N'1',@registor_address642), ('2022-06-02 08:21:25.249',NULL,@collect_id643,N'1',@registor_address644), ('2022-06-02 08:21:25.249',NULL,@collect_id645,N'1',@registor_address646), ('2022-06-02 08:21:25.249',NULL,@collect_id647,N'1',@registor_address648), ('2022-06-02 08:21:25.249',NULL,@collect_id649,N'1',@registor_address650), ('2022-06-02 08:21:25.249',NULL,@collect_id651,N'1',@registor_address652), ('2022-06-02 08:21:25.249',NULL,@collect_id653,N'1',@registor_address654), ('2022-06-02 08:21:25.249',NULL,@collect_id655,N'1',@registor_address656), ('2022-06-02 08:21:25.249',NULL,@collect_id657,N'1',@registor_address658), ('2022-06-02 08:21:25.249',NULL,@collect_id659,N'1',@registor_address660), ('2022-06-02 08:21:25.249',NULL,@collect_id661,N'1',@registor_address662), ('2022-06-02 08:21:25.249',NULL,@collect_id663,N'1',@registor_address664), ('2022-06-02 08:21:25.249',NULL,@collect_id665,N'1',@registor_address666), ('2022-06-02 08:21:25.249',NULL,@collect_id667,N'1',@registor_address668), ('2022-06-02 08:21:25.249',NULL,@collect_id669,N'1',@registor_address670), ('2022-06-02 08:21:25.249',NULL,@collect_id671,N'1',@registor_address672), ('2022-06-02 08:21:25.249',NULL,@collect_id673,N'1',@registor_address674), ('2022-06-02 08:21:25.249',NULL,@collect_id675,N'1',@registor_address676), ('2022-06-02 08:21:25.249',NULL,@collect_id677,N'1',@registor_address678), ('2022-06-02 08:21:25.249',NULL,@collect_id679,N'1',@registor_address680), ('2022-06-02 08:21:25.249',NULL,@collect_id681,N'1',@registor_address682), ('2022-06-02 08:21:25.249',NULL,@collect_id683,N'1',@registor_address684), ('2022-06-02 08:21:25.249',NULL,@collect_id685,N'1',@registor_address686), ('2022-06-02 08:21:25.249',NULL,@collect_id687,N'1',@registor_address688), ('2022-06-02 08:21:25.249',NULL,@collect_id689,N'1',@registor_address690), ('2022-06-02 08:21:25.249',NULL,@collect_id691,N'1',@registor_address692), ('2022-06-02 08:21:25.249',NULL,@collect_id693,N'1',@registor_address694), ('2022-06-02 08:21:25.249',NULL,@collect_id695,N'1',@registor_address696), ('2022-06-02 08:21:25.249',NULL,@collect_id697,N'1',@registor_address698), ('2022-06-02 08:21:25.249',NULL,@collect_id699,N'1',@registor_address700), ('2022-06-02 08:21:25.249',NULL,@collect_id701,N'1',@registor_address702), ('2022-06-02 08:21:25.249',NULL,@collect_id703,N'1',@registor_address704), ('2022-06-02 08:21:25.249',NULL,@collect_id705,N'1',@registor_address706), ('2022-06-02 08:21:25.249',NULL,@collect_id707,N'1',@registor_address708), ('2022-06-02 08:21:25.249',NULL,@collect_id709,N'1',@registor_address710), ('2022-06-02 08:21:25.249',NULL,@collect_id711,N'1',@registor_address712), ('2022-06-02 08:21:25.249',NULL,@collect_id713,N'1',@registor_address714), ('2022-06-02 08:21:25.249',NULL,@collect_id715,N'1',@registor_address716), ('2022-06-02 08:21:25.249',NULL,@collect_id717,N'1',@registor_address718), ('2022-06-02 08:21:25.249',NULL,@collect_id719,N'1',@registor_address720), ('2022-06-02 08:21:25.249',NULL,@collect_id721,N'1',@registor_address722), ('2022-06-02 08:21:25.249',NULL,@collect_id723,N'1',@registor_address724), ('2022-06-02 08:21:25.249',NULL,@collect_id725,N'1',@registor_address726), ('2022-06-02 08:21:25.249',NULL,@collect_id727,N'1',@registor_address728), ('2022-06-02 08:21:25.249',NULL,@collect_id729,N'1',@registor_address730), ('2022-06-02 08:21:25.249',NULL,@collect_id731,N'1',@registor_address732), ('2022-06-02 08:21:25.249',NULL,@collect_id733,N'1',@registor_address734), ('2022-06-02 08:21:25.249',NULL,@collect_id735,N'1',@registor_address736), ('2022-06-02 08:21:25.249',NULL,@collect_id737,N'1',@registor_address738), ('2022-06-02 08:21:25.249',NULL,@collect_id739,N'1',@registor_address740), ('2022-06-02 08:21:25.249',NULL,@collect_id741,N'1',@registor_address742), ('2022-06-02 08:21:25.249',NULL,@collect_id743,N'1',@registor_address744), ('2022-06-02 08:21:25.249',NULL,@collect_id745,N'1',@registor_address746), ('2022-06-02 08:21:25.249',NULL,@collect_id747,N'1',@registor_address748), ('2022-06-02 08:21:25.249',NULL,@collect_id749,N'1',@registor_address750), ('2022-06-02 08:21:25.249',NULL,@collect_id751,N'1',@registor_address752), ('2022-06-02 08:21:25.249',NULL,@collect_id753,N'1',@registor_address754), ('2022-06-02 08:21:25.249',NULL,@collect_id755,N'1',@registor_address756), ('2022-06-02 08:21:25.249',NULL,@collect_id757,N'1',@registor_address758), ('2022-06-02 08:21:25.249',NULL,@collect_id759,N'1',@registor_address760), ('2022-06-02 08:21:25.249',NULL,@collect_id761,N'1',@registor_address762), ('2022-06-02 08:21:25.249',NULL,@collect_id763,N'1',@registor_address764), ('2022-06-02 08:21:25.249',NULL,@collect_id765,N'1',@registor_address766), ('2022-06-02 08:21:25.249',NULL,@collect_id767,N'1',@registor_address768), ('2022-06-02 08:21:25.249',NULL,@collect_id769,N'1',@registor_address770), ('2022-06-02 08:21:25.249',NULL,@collect_id771,N'1',@registor_address772), ('2022-06-02 08:21:25.249',NULL,@collect_id773,N'1',@registor_address774), ('2022-06-02 08:21:25.249',NULL,@collect_id775,N'1',@registor_address776), ('2022-06-02 08:21:25.249',NULL,@collect_id777,N'1',@registor_address778), ('2022-06-02 08:21:25.249',NULL,@collect_id779,N'1',@registor_address780), ('2022-06-02 08:21:25.249',NULL,@collect_id781,N'1',@registor_address782), ('2022-06-02 08:21:25.249',NULL,@collect_id783,N'1',@registor_address784), ('2022-06-02 08:21:25.249',NULL,@collect_id785,N'1',@registor_address786), ('2022-06-02 08:21:25.249',NULL,@collect_id787,N'1',@registor_address788), ('2022-06-02 08:21:25.249',NULL,@collect_id789,N'1',@registor_address790), ('2022-06-02 08:21:25.249',NULL,@collect_id791,N'1',@registor_address792), ('2022-06-02 08:21:25.249',NULL,@collect_id793,N'1',@registor_address794), ('2022-06-02 08:21:25.249',NULL,@collect_id795,N'1',@registor_address796), ('2022-06-02 08:21:25.249',NULL,@collect_id797,N'1',@registor_address798), ('2022-06-02 08:21:25.249',NULL,@collect_id799,N'1',@registor_address800), ('2022-06-02 08:21:25.249',NULL,@collect_id801,N'1',@registor_address802), ('2022-06-02 08:21:25.249',NULL,@collect_id803,N'1',@registor_address804), ('2022-06-02 08:21:25.249',NULL,@collect_id805,N'1',@registor_address806), ('2022-06-02 08:21:25.249',NULL,@collect_id807,N'1',@registor_address808), ('2022-06-02 08:21:25.249',NULL,@collect_id809,N'1',@registor_address810), ('2022-06-02 08:21:25.249',NULL,@collect_id811,N'1',@registor_address812), ('2022-06-02 08:21:25.249',NULL,@collect_id813,N'1',@registor_address814), ('2022-06-02 08:21:25.249',NULL,@collect_id815,N'1',@registor_address816), ('2022-06-02 08:21:25.249',NULL,@collect_id817,N'1',@registor_address818), ('2022-06-02 08:21:25.249',NULL,@collect_id819,N'1',@registor_address820), ('2022-06-02 08:21:25.249',NULL,@collect_id821,N'1',@registor_address822), ('2022-06-02 08:21:25.249',NULL,@collect_id823,N'1',@registor_address824), ('2022-06-02 08:21:25.249',NULL,@collect_id825,N'1',@registor_address826), ('2022-06-02 08:21:25.249',NULL,@collect_id827,N'1',@registor_address828), ('2022-06-02 08:21:25.249',NULL,@collect_id829,N'1',@registor_address830), ('2022-06-02 08:21:25.249',NULL,@collect_id831,N'1',@registor_address832), ('2022-06-02 08:21:25.249',NULL,@collect_id833,N'1',@registor_address834), ('2022-06-02 08:21:25.249',NULL,@collect_id835,N'1',@registor_address836), ('2022-06-02 08:21:25.249',NULL,@collect_id837,N'1',@registor_address838), ('2022-06-02 08:21:25.249',NULL,@collect_id839,N'1',@registor_address840), ('2022-06-02 08:21:25.249',NULL,@collect_id841,N'1',@registor_address842), ('2022-06-02 08:21:25.249',NULL,@collect_id843,N'1',@registor_address844), ('2022-06-02 08:21:25.249',NULL,@collect_id845,N'1',@registor_address846), ('2022-06-02 08:21:25.249',NULL,@collect_id847,N'1',@registor_address848), ('2022-06-02 08:21:25.249',NULL,@collect_id849,N'1',@registor_address850), ('2022-06-02 08:21:25.249',NULL,@collect_id851,N'1',@registor_address852), ('2022-06-02 08:21:25.249',NULL,@collect_id853,N'1',@registor_address854), ('2022-06-02 08:21:25.249',NULL,@collect_id855,N'1',@registor_address856) ;select @@IDENTITY + +-------------------------------- +2022/6/2 8:21:27| +【SQL参数】:@eqmt_id0:1 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` WHERE ( `eqmt_id` = @eqmt_id0 ) +-------------------------------- +2022/6/2 8:21:30| +【SQL参数】:@eqmt_id0:1 +@product_type1:2 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`product_type`,`product_type_name` FROM `eqmt_product_spec` WHERE (( `eqmt_id` = @eqmt_id0 ) AND ( `product_type` = @product_type1 )) +-------------------------------- +2022/6/2 8:26:29| +【SQL参数】:@eqmt_id0:1 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` WHERE ( `eqmt_id` = @eqmt_id0 ) +-------------------------------- +2022/6/2 8:26:30| +【SQL参数】:@eqmt_id0:1 +@product_type1:2 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`product_type`,`product_type_name` FROM `eqmt_product_spec` WHERE (( `eqmt_id` = @eqmt_id0 ) AND ( `product_type` = @product_type1 )) +-------------------------------- +2022/6/2 8:35:35| +【SQL参数】:@eqmt_id0:1 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`product_type`,`speed`,`total_product_qty`,`intraday_product_qty`,`intraday_ok_qty`,`intraday_ng_qty`,`intraday_yield_rate`,`intraday_eqmt_run_time`,`intraday_eqmt_work_time`,`intraday_eqmt_stop_time`,`intraday_eqmt_stop_times`,`eqmt_status`,`eqmt_except_flag`,`eqmt_alarm_flag` FROM `eqmt_collect_pub_data` WHERE ( `eqmt_id` = @eqmt_id0 ) +-------------------------------- +2022/6/2 8:36:22| +【SQL参数】:@gmt_create:2022/6/2 8:26:51 +@gmt_modified: +@eqmt_id:1 +@line_name:13# +@add_datetime:2022/6/2 8:26:51 +@product:卫生巾 +@product_type_name:290mm +@add_qty:0 +@add_qty_ok:0 +@add_qty_ng:0 +@add_during_time:359 +@oee:0.000000 +@shift_complete_rate:0 + +【SQL语句】:INSERT INTO `eqmt_collect_add_data` + (`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`) + VALUES + (@gmt_create,@gmt_modified,@eqmt_id,@line_name,@add_datetime,@product,@product_type_name,@add_qty,@add_qty_ok,@add_qty_ng,@add_during_time,@oee,@shift_complete_rate) ; +-------------------------------- +2022/6/2 9:10:26| +【SQL参数】:@eqmt_id0:1 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` WHERE ( `eqmt_id` = @eqmt_id0 ) +-------------------------------- +2022/6/2 9:10:31| +【SQL参数】:@eqmt_id0:1 +@product_type1:2 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`product_type`,`product_type_name` FROM `eqmt_product_spec` WHERE (( `eqmt_id` = @eqmt_id0 ) AND ( `product_type` = @product_type1 )) +-------------------------------- +2022/6/2 9:12:38| +【SQL参数】:@eqmt_id0:1 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` WHERE ( `eqmt_id` = @eqmt_id0 ) +-------------------------------- +2022/6/2 9:12:39| +【SQL参数】:@eqmt_id0:1 +@product_type1:2 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`product_type`,`product_type_name` FROM `eqmt_product_spec` WHERE (( `eqmt_id` = @eqmt_id0 ) AND ( `product_type` = @product_type1 )) +-------------------------------- +2022/6/2 9:14:10| +【SQL参数】:@eqmt_id0:1 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` WHERE ( `eqmt_id` = @eqmt_id0 ) +-------------------------------- +2022/6/2 9:14:11| +【SQL参数】:@eqmt_id0:1 +@product_type1:2 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`product_type`,`product_type_name` FROM `eqmt_product_spec` WHERE (( `eqmt_id` = @eqmt_id0 ) AND ( `product_type` = @product_type1 )) +-------------------------------- +2022/6/2 9:16:29| +【SQL参数】:@eqmt_id0:1 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` WHERE ( `eqmt_id` = @eqmt_id0 ) +-------------------------------- +2022/6/2 9:16:30| +【SQL参数】:@eqmt_id0:1 +@product_type1:2 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`product_type`,`product_type_name` FROM `eqmt_product_spec` WHERE (( `eqmt_id` = @eqmt_id0 ) AND ( `product_type` = @product_type1 )) +-------------------------------- +2022/6/2 9:20:35| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/2 9:20:35| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_add_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/2 9:20:35| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `id` bigint NOT NULL +-------------------------------- +2022/6/2 9:20:35| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `gmt_create` datetime DEFAULT NULL +-------------------------------- +2022/6/2 9:20:35| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `gmt_modified` datetime DEFAULT NULL +-------------------------------- +2022/6/2 9:20:35| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `product_type_name` varchar(255) DEFAULT NULL +-------------------------------- +2022/6/2 9:20:35| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `add_qty_ok` bigint DEFAULT NULL +-------------------------------- +2022/6/2 9:20:36| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `add_qty_ng` bigint DEFAULT NULL +-------------------------------- +2022/6/2 9:20:36| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `add_during_time` int DEFAULT NULL +-------------------------------- +2022/6/2 9:20:36| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `oee` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/2 9:20:36| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `shift_complete_rate` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/2 9:20:36| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty` `add_qty` bigint DEFAULT NULL +-------------------------------- +2022/6/2 9:20:36| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` COMMENT='递增数据 每次采集数据的产量差值'; +-------------------------------- +2022/6/2 9:20:36| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/2 9:22:49| +【SQL参数】:@eqmt_id0:1 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` WHERE ( `eqmt_id` = @eqmt_id0 ) +-------------------------------- +2022/6/2 9:22:50| +【SQL参数】:@eqmt_id0:1 +@product_type1:2 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`product_type`,`product_type_name` FROM `eqmt_product_spec` WHERE (( `eqmt_id` = @eqmt_id0 ) AND ( `product_type` = @product_type1 )) +-------------------------------- +2022/6/2 9:22:54| +【SQL参数】:@eqmt_id0:1 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`product_type`,`speed`,`total_product_qty`,`intraday_product_qty`,`intraday_ok_qty`,`intraday_ng_qty`,`intraday_yield_rate`,`intraday_eqmt_run_time`,`intraday_eqmt_work_time`,`intraday_eqmt_stop_time`,`intraday_eqmt_stop_times`,`eqmt_status`,`eqmt_except_flag`,`eqmt_alarm_flag` FROM `eqmt_collect_pub_data` WHERE ( `eqmt_id` = @eqmt_id0 ) +-------------------------------- +2022/6/2 9:24:48| +【SQL参数】:@gmt_create:2022/6/2 9:22:50 +@gmt_modified: +@eqmt_id:1 +@line_name:13# +@add_datetime:2022/6/2 9:22:50 +@product:卫生巾 +@product_type_name:290mm +@add_qty:18283 +@add_qty_ok:17360 +@add_qty_ng:923 +@add_during_time:3719 +@oee:53.836244026161790017211703953 +@shift_complete_rate:0 + +【SQL语句】:INSERT INTO `eqmt_collect_add_data` + (`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`) + VALUES + (@gmt_create,@gmt_modified,@eqmt_id,@line_name,@add_datetime,@product,@product_type_name,@add_qty,@add_qty_ok,@add_qty_ng,@add_during_time,@oee,@shift_complete_rate) ; +-------------------------------- +2022/6/2 9:34:28| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/2 9:34:28| +【SQL参数】: +【SQL语句】:CREATE TABLE `tasks_qz`( +`Id` bigint NOT NULL , +`Name` varchar(200) DEFAULT NULL , +`JobGroup` varchar(200) DEFAULT NULL , +`Cron` varchar(200) DEFAULT NULL , +`AssemblyName` varchar(200) DEFAULT NULL , +`ClassName` varchar(200) DEFAULT NULL , +`Remark` varchar(1000) DEFAULT NULL , +`RunTimes` int DEFAULT NULL , +`BeginTime` datetime DEFAULT NULL , +`EndTime` datetime DEFAULT NULL , +`TriggerType` int DEFAULT NULL , +`IntervalSecond` int DEFAULT NULL , +`CycleRunTimes` int DEFAULT NULL , +`IsStart` bit DEFAULT NULL , +`JobParams` varchar(255) DEFAULT NULL , +`CreateId` bigint DEFAULT NULL , +`CreateBy` varchar(50) DEFAULT NULL , +`CreateTime` datetime DEFAULT NULL , +`ModifyId` bigint DEFAULT NULL , +`ModifyBy` varchar(50) DEFAULT NULL , +`ModifyTime` datetime DEFAULT NULL , +`IsDeleted` bit DEFAULT NULL , Primary key(`Id`)) +-------------------------------- +2022/6/2 9:34:28| +【SQL参数】: +【SQL语句】:ALTER TABLE `tasks_qz` COMMENT='定时任务'; +-------------------------------- +2022/6/2 9:34:28| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `Name` `Name` varchar(200) DEFAULT NULL COMMENT '任务名称' +-------------------------------- +2022/6/2 9:34:28| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `JobGroup` `JobGroup` varchar(200) DEFAULT NULL COMMENT '任务分组' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `Cron` `Cron` varchar(200) DEFAULT NULL COMMENT '任务运行时间表达式' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `AssemblyName` `AssemblyName` varchar(200) DEFAULT NULL COMMENT '任务所在DLL对应的程序集名称' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `ClassName` `ClassName` varchar(200) DEFAULT NULL COMMENT '任务所在类' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `Remark` `Remark` varchar(1000) DEFAULT NULL COMMENT '任务描述' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `RunTimes` `RunTimes` int DEFAULT NULL COMMENT '执行次数' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `BeginTime` `BeginTime` datetime DEFAULT NULL COMMENT '开始时间' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `EndTime` `EndTime` datetime DEFAULT NULL COMMENT '结束时间' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `TriggerType` `TriggerType` int DEFAULT NULL COMMENT '触发器类型(0、simple 1、cron)' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `IntervalSecond` `IntervalSecond` int DEFAULT NULL COMMENT '执行间隔时间, 秒为单位' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `CycleRunTimes` `CycleRunTimes` int DEFAULT NULL COMMENT '循环执行次数' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `IsStart` `IsStart` bit DEFAULT NULL COMMENT '是否启动' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `JobParams` `JobParams` varchar(255) DEFAULT NULL COMMENT '执行传参' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `Id` `Id` bigint NOT NULL COMMENT '主键' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `CreateId` `CreateId` bigint DEFAULT NULL COMMENT '创建者ID' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `CreateBy` `CreateBy` varchar(50) DEFAULT NULL COMMENT '创建者名称' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `CreateTime` `CreateTime` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `ModifyId` `ModifyId` bigint DEFAULT NULL COMMENT '修改ID' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `ModifyBy` `ModifyBy` varchar(50) DEFAULT NULL COMMENT '修改者名称' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `ModifyTime` `ModifyTime` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:alter table `tasks_qz` change column `IsDeleted` `IsDeleted` bit DEFAULT NULL COMMENT '逻辑删除' +-------------------------------- +2022/6/2 9:34:29| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='tasks_qz' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/2 9:58:09| +【SQL参数】:@InPara0:13 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/2 9:59:18| +【SQL参数】:@InPara0:13 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/2 10:00:20| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/2 10:00:20| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_add_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/2 10:00:20| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/2 10:00:20| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `shift_complete_rate` `shift_complete_rate` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/2 10:00:20| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `id` `id` bigint NOT NULL +-------------------------------- +2022/6/2 10:00:20| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD PRIMARY KEY(`id`) /*PK_eqmt_collect_add_data_id*/ +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:CREATE TABLE `eqmt_collect_add_data`( +`id` bigint NOT NULL AUTO_INCREMENT, +`gmt_create` datetime DEFAULT NULL , +`gmt_modified` datetime DEFAULT NULL , +`eqmt_id` int DEFAULT NULL , +`line_name` varchar(255) DEFAULT NULL , +`add_datetime` datetime DEFAULT NULL , +`product` varchar(255) DEFAULT NULL , +`product_type_name` varchar(255) DEFAULT NULL , +`add_qty` bigint DEFAULT NULL , +`add_qty_ok` bigint DEFAULT NULL , +`add_qty_ng` bigint DEFAULT NULL , +`add_during_time` int DEFAULT NULL , +`oee` decimal(20,2) DEFAULT NULL , +`shift_complete_rate` decimal(20,2) DEFAULT NULL , Primary key(`id`)) +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` COMMENT='递增数据 每次采集数据的产量差值'; +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备ID' +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `line_name` `line_name` varchar(255) DEFAULT NULL COMMENT '设备名称' +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_datetime` `add_datetime` datetime DEFAULT NULL COMMENT '采集时间' +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `product` `product` varchar(255) DEFAULT NULL COMMENT '产品' +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `product_type_name` `product_type_name` varchar(255) DEFAULT NULL COMMENT '型号名称' +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty` `add_qty` bigint DEFAULT NULL COMMENT '增加数量' +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty_ok` `add_qty_ok` bigint DEFAULT NULL COMMENT '增加数量 良品' +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty_ng` `add_qty_ng` bigint DEFAULT NULL COMMENT '增加数量 不良品' +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_during_time` `add_during_time` int DEFAULT NULL COMMENT '采集间隔时间(秒)' +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL COMMENT 'OEE' +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `shift_complete_rate` `shift_complete_rate` decimal(20,2) DEFAULT NULL COMMENT '当班完成率' +-------------------------------- +2022/6/2 10:02:23| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_add_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/2 10:02:44| +【SQL参数】:@InPara0:13 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/2 10:03:26| +【SQL参数】:@InPara0:13 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/2 13:38:25| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/2 13:38:25| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_pub_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/2 13:38:25| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_pub_data` ADD `oee` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/2 13:38:26| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `collect_id` `collect_id` varchar(255) DEFAULT NULL +-------------------------------- +2022/6/2 13:38:26| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type` `product_type` varchar(255) NOT NULL +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_pub_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type` `product_type` varchar(50) DEFAULT NULL +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_pub_data` COMMENT='公用'; +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `collect_id` `collect_id` varchar(255) DEFAULT NULL COMMENT '收集唯一ID' +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_id` `eqmt_id` int NOT NULL COMMENT '设备id' +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type` `product_type` varchar(50) DEFAULT NULL COMMENT '产品型号' +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `speed` `speed` int DEFAULT NULL COMMENT '生产速度' +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `total_product_qty` `total_product_qty` int DEFAULT NULL COMMENT '总生产数量' +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_product_qty` `intraday_product_qty` int DEFAULT NULL COMMENT '当日生产数量' +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_ok_qty` `intraday_ok_qty` int DEFAULT NULL COMMENT '当日合格品数量' +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_ng_qty` `intraday_ng_qty` int DEFAULT NULL COMMENT '当日不良品数量' +-------------------------------- +2022/6/2 13:43:01| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_yield_rate` `intraday_yield_rate` decimal DEFAULT NULL COMMENT '当日合格率' +-------------------------------- +2022/6/2 13:43:02| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_run_time` `intraday_eqmt_run_time` int DEFAULT NULL COMMENT '当日开机总时间(单位:秒)' +-------------------------------- +2022/6/2 13:43:02| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_work_time` `intraday_eqmt_work_time` int DEFAULT NULL COMMENT '当日负荷时间(单位:秒)' +-------------------------------- +2022/6/2 13:43:02| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_stop_time` `intraday_eqmt_stop_time` int DEFAULT NULL COMMENT '当日停机时间(单位:秒)' +-------------------------------- +2022/6/2 13:43:02| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_stop_times` `intraday_eqmt_stop_times` int DEFAULT NULL COMMENT '当日停机次数' +-------------------------------- +2022/6/2 13:43:02| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_status` `eqmt_status` tinyint DEFAULT NULL COMMENT '设备状态 0:关机;1:开机;2:待机' +-------------------------------- +2022/6/2 13:43:02| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_except_flag` `eqmt_except_flag` tinyint DEFAULT NULL COMMENT '设备异常标记' +-------------------------------- +2022/6/2 13:43:02| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_alarm_flag` `eqmt_alarm_flag` tinyint DEFAULT NULL COMMENT '设备报警标记' +-------------------------------- +2022/6/2 13:43:02| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL COMMENT 'OEE' +-------------------------------- +2022/6/2 13:43:02| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_pub_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/2 13:43:46| +【SQL参数】:@InPara0:13 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/2 13:46:01| +【SQL参数】:@InPara0:13 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/3 14:01:00| +【SQL参数】:@InPara0:13 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/3 14:03:26| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/3 14:16:22| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/3 14:21:02| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/3 14:21:02| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_except' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/3 14:21:02| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_except` ADD `qc_result` int DEFAULT NULL +-------------------------------- +2022/6/3 14:21:02| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_except` COMMENT='异常表 (最后一次收集)'; +-------------------------------- +2022/6/3 14:21:02| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/3 14:21:02| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/3 14:21:02| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/3 14:21:02| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `collect_id` `collect_id` varchar(255) DEFAULT NULL COMMENT '收集唯一ID' +-------------------------------- +2022/6/3 14:21:02| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备id' +-------------------------------- +2022/6/3 14:21:02| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `registor_address` `registor_address` varchar(255) DEFAULT NULL COMMENT '寄存器地址(发生异常)' +-------------------------------- +2022/6/3 14:21:02| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `qc_result` `qc_result` int DEFAULT NULL COMMENT 'QC结果数量' +-------------------------------- +2022/6/3 14:21:02| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_except' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/3 14:21:10| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/3 14:21:10| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_except_his' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/3 14:21:10| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_except_his` ADD `qc_result` int DEFAULT NULL +-------------------------------- +2022/6/3 14:21:11| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_except_his` COMMENT='异常表 履历表'; +-------------------------------- +2022/6/3 14:21:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_his` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/3 14:21:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_his` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/3 14:21:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_his` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/3 14:21:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_his` change column `collect_id` `collect_id` varchar(255) DEFAULT NULL COMMENT '收集唯一ID' +-------------------------------- +2022/6/3 14:21:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_his` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备id' +-------------------------------- +2022/6/3 14:21:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_his` change column `registor_address` `registor_address` varchar(255) DEFAULT NULL COMMENT '寄存器地址(发生异常)' +-------------------------------- +2022/6/3 14:21:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except_his` change column `qc_result` `qc_result` int DEFAULT NULL COMMENT 'QC结果数量' +-------------------------------- +2022/6/3 14:21:11| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_except_his' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/3 14:21:31| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/3 14:26:43| +【SQL参数】:@InPara0:13 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/3 14:26:54| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_add_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `product_type` varchar(255) DEFAULT NULL +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `shift_complete_rate` `shift_complete_rate` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` COMMENT='递增数据 每次采集数据的产量差值'; +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备ID' +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `line_name` `line_name` varchar(255) DEFAULT NULL COMMENT '设备名称' +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_datetime` `add_datetime` datetime DEFAULT NULL COMMENT '采集时间' +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `product` `product` varchar(255) DEFAULT NULL COMMENT '产品' +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `product_type` `product_type` varchar(255) DEFAULT NULL COMMENT '型号' +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `product_type_name` `product_type_name` varchar(255) DEFAULT NULL COMMENT '型号名称' +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty` `add_qty` bigint DEFAULT NULL COMMENT '增加数量' +-------------------------------- +2022/6/3 16:17:06| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty_ok` `add_qty_ok` bigint DEFAULT NULL COMMENT '增加数量 良品' +-------------------------------- +2022/6/3 16:17:07| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty_ng` `add_qty_ng` bigint DEFAULT NULL COMMENT '增加数量 不良品' +-------------------------------- +2022/6/3 16:17:07| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_during_time` `add_during_time` int DEFAULT NULL COMMENT '采集间隔时间(秒)' +-------------------------------- +2022/6/3 16:17:07| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL COMMENT 'OEE' +-------------------------------- +2022/6/3 16:17:07| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `shift_complete_rate` `shift_complete_rate` decimal(20,2) DEFAULT NULL COMMENT '当班完成率' +-------------------------------- +2022/6/3 16:17:07| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_add_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/3 16:17:14| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/7 14:03:34| +【SQL参数】:@InPara0:13 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/7 14:05:02| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/7 14:11:08| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/7 14:11:08| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_pub_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/7 14:11:08| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_pub_data` ADD `oee` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/7 14:11:08| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `collect_id` `collect_id` varchar(255) DEFAULT NULL +-------------------------------- +2022/6/7 14:11:09| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type` `product_type` varchar(50) DEFAULT NULL +-------------------------------- +2022/6/7 14:11:09| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_pub_data` COMMENT='公用'; +-------------------------------- +2022/6/7 14:11:09| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/7 14:11:09| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/7 14:11:09| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/7 14:11:09| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `collect_id` `collect_id` varchar(255) DEFAULT NULL COMMENT '收集唯一ID' +-------------------------------- +2022/6/7 14:11:09| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_id` `eqmt_id` int NOT NULL COMMENT '设备id' +-------------------------------- +2022/6/7 14:11:09| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type` `product_type` varchar(50) DEFAULT NULL COMMENT '产品型号' +-------------------------------- +2022/6/7 14:11:09| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `speed` `speed` int DEFAULT NULL COMMENT '生产速度' +-------------------------------- +2022/6/7 14:11:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `total_product_qty` `total_product_qty` int DEFAULT NULL COMMENT '总生产数量' +-------------------------------- +2022/6/7 14:11:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_product_qty` `intraday_product_qty` int DEFAULT NULL COMMENT '当日生产数量' +-------------------------------- +2022/6/7 14:11:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_ok_qty` `intraday_ok_qty` int DEFAULT NULL COMMENT '当日合格品数量' +-------------------------------- +2022/6/7 14:11:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_ng_qty` `intraday_ng_qty` int DEFAULT NULL COMMENT '当日不良品数量' +-------------------------------- +2022/6/7 14:11:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_yield_rate` `intraday_yield_rate` decimal DEFAULT NULL COMMENT '当日合格率' +-------------------------------- +2022/6/7 14:11:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_run_time` `intraday_eqmt_run_time` int DEFAULT NULL COMMENT '当日开机总时间(单位:秒)' +-------------------------------- +2022/6/7 14:11:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_work_time` `intraday_eqmt_work_time` int DEFAULT NULL COMMENT '当日负荷时间(单位:秒)' +-------------------------------- +2022/6/7 14:11:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_stop_time` `intraday_eqmt_stop_time` int DEFAULT NULL COMMENT '当日停机时间(单位:秒)' +-------------------------------- +2022/6/7 14:11:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_stop_times` `intraday_eqmt_stop_times` int DEFAULT NULL COMMENT '当日停机次数' +-------------------------------- +2022/6/7 14:11:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_status` `eqmt_status` tinyint DEFAULT NULL COMMENT '设备状态 0:关机;1:开机;2:待机' +-------------------------------- +2022/6/7 14:11:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_except_flag` `eqmt_except_flag` tinyint DEFAULT NULL COMMENT '设备异常标记' +-------------------------------- +2022/6/7 14:11:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_alarm_flag` `eqmt_alarm_flag` tinyint DEFAULT NULL COMMENT '设备报警标记' +-------------------------------- +2022/6/7 14:11:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL COMMENT 'OEE' +-------------------------------- +2022/6/7 14:11:10| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_pub_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/7 14:12:01| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/7 14:13:34| +【SQL参数】:@InPara0:13 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/7 14:13:39| +【SQL参数】:@InPara0:19 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/7 14:17:11| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/7 14:21:56| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/7 14:22:15| +【SQL参数】:@InPara0:19 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/7 14:24:25| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/7 15:55:36| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/7 15:55:36| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_pub_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/7 15:55:36| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_pub_data` ADD `product_type_name` varchar(255) DEFAULT NULL +-------------------------------- +2022/6/7 15:55:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type` `product_type` varchar(50) DEFAULT NULL +-------------------------------- +2022/6/7 15:55:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/7 15:55:37| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_pub_data` COMMENT='公用'; +-------------------------------- +2022/6/7 15:55:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/7 15:55:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/7 15:55:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/7 15:55:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `collect_id` `collect_id` varchar(255) DEFAULT NULL COMMENT '收集唯一ID' +-------------------------------- +2022/6/7 15:55:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_id` `eqmt_id` int NOT NULL COMMENT '设备id' +-------------------------------- +2022/6/7 15:55:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type` `product_type` varchar(50) DEFAULT NULL COMMENT '产品型号' +-------------------------------- +2022/6/7 15:55:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type_name` `product_type_name` varchar(255) DEFAULT NULL COMMENT '产品名称(含型号)' +-------------------------------- +2022/6/7 15:55:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `speed` `speed` int DEFAULT NULL COMMENT '生产速度' +-------------------------------- +2022/6/7 15:55:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `total_product_qty` `total_product_qty` int DEFAULT NULL COMMENT '总生产数量' +-------------------------------- +2022/6/7 15:55:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_product_qty` `intraday_product_qty` int DEFAULT NULL COMMENT '当日生产数量' +-------------------------------- +2022/6/7 15:55:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_ok_qty` `intraday_ok_qty` int DEFAULT NULL COMMENT '当日合格品数量' +-------------------------------- +2022/6/7 15:55:37| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_ng_qty` `intraday_ng_qty` int DEFAULT NULL COMMENT '当日不良品数量' +-------------------------------- +2022/6/7 15:55:38| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_yield_rate` `intraday_yield_rate` decimal DEFAULT NULL COMMENT '当日合格率' +-------------------------------- +2022/6/7 15:55:38| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_run_time` `intraday_eqmt_run_time` int DEFAULT NULL COMMENT '当日开机总时间(单位:秒)' +-------------------------------- +2022/6/7 15:55:38| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_work_time` `intraday_eqmt_work_time` int DEFAULT NULL COMMENT '当日负荷时间(单位:秒)' +-------------------------------- +2022/6/7 15:55:38| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_stop_time` `intraday_eqmt_stop_time` int DEFAULT NULL COMMENT '当日停机时间(单位:秒)' +-------------------------------- +2022/6/7 15:55:38| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_stop_times` `intraday_eqmt_stop_times` int DEFAULT NULL COMMENT '当日停机次数' +-------------------------------- +2022/6/7 15:55:38| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_status` `eqmt_status` tinyint DEFAULT NULL COMMENT '设备状态 0:关机;1:开机;2:待机' +-------------------------------- +2022/6/7 15:55:38| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_except_flag` `eqmt_except_flag` tinyint DEFAULT NULL COMMENT '设备异常标记' +-------------------------------- +2022/6/7 15:55:38| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_alarm_flag` `eqmt_alarm_flag` tinyint DEFAULT NULL COMMENT '设备报警标记' +-------------------------------- +2022/6/7 15:55:38| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL COMMENT 'OEE' +-------------------------------- +2022/6/7 15:55:38| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_pub_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/7 15:55:46| +【SQL参数】:@InPara0:13 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/7 15:55:49| +【SQL参数】:@InPara0:16 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/7 15:55:52| +【SQL参数】:@InPara0:17 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/7 15:56:04| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/7 15:56:07| +【SQL参数】:@InPara0:19 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/9 14:33:51| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/9 14:33:51| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_add_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/9 14:33:51| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `eqmt_status` tinyint DEFAULT NULL +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `shift_complete_rate` `shift_complete_rate` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` COMMENT='递增数据 每次采集数据的产量差值'; +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备ID' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `line_name` `line_name` varchar(255) DEFAULT NULL COMMENT '设备名称' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_datetime` `add_datetime` datetime DEFAULT NULL COMMENT '采集时间' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `product` `product` varchar(255) DEFAULT NULL COMMENT '产品' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `product_type` `product_type` varchar(255) DEFAULT NULL COMMENT '型号' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `product_type_name` `product_type_name` varchar(255) DEFAULT NULL COMMENT '型号名称' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty` `add_qty` bigint DEFAULT NULL COMMENT '增加数量' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty_ok` `add_qty_ok` bigint DEFAULT NULL COMMENT '增加数量 良品' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty_ng` `add_qty_ng` bigint DEFAULT NULL COMMENT '增加数量 不良品' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_during_time` `add_during_time` int DEFAULT NULL COMMENT '采集间隔时间(秒)' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL COMMENT 'OEE' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `shift_complete_rate` `shift_complete_rate` decimal(20,2) DEFAULT NULL COMMENT '当班完成率' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `eqmt_status` `eqmt_status` tinyint DEFAULT NULL COMMENT '设备状态 0:关机;1:开机;2:待机' +-------------------------------- +2022/6/9 14:33:52| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_add_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/9 14:34:24| +【SQL参数】:@InPara0:13 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/9 14:34:28| +【SQL参数】:@InPara0:16 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/9 14:34:30| +【SQL参数】:@InPara0:17 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/9 14:34:34| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/9 14:34:37| +【SQL参数】:@InPara0:19 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/9 14:42:07| +【SQL参数】:@InPara0:19 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/9 14:51:35| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/9 15:16:41| +【SQL参数】:@InPara0:13 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/9 15:16:46| +【SQL参数】:@InPara0:16 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/9 15:16:49| +【SQL参数】:@InPara0:17 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/9 15:16:53| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/9 15:17:18| +【SQL参数】:@InPara0:19 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/9 15:17:44| +【SQL参数】:@InPara0:19 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/9 15:49:28| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/9 15:49:28| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_pub_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/9 15:49:28| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type` `product_type` varchar(50) DEFAULT NULL +-------------------------------- +2022/6/9 15:49:28| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type_name` `product_type_name` varchar(255) DEFAULT NULL +-------------------------------- +2022/6/9 15:49:28| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_yield_rate` `intraday_yield_rate` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/9 15:49:28| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/9 15:49:28| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_pub_data` COMMENT='公用'; +-------------------------------- +2022/6/9 15:49:28| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/9 15:49:28| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/9 15:49:28| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/9 15:49:28| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `collect_id` `collect_id` varchar(255) DEFAULT NULL COMMENT '收集唯一ID' +-------------------------------- +2022/6/9 15:49:28| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_id` `eqmt_id` int NOT NULL COMMENT '设备id' +-------------------------------- +2022/6/9 15:49:28| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type` `product_type` varchar(50) DEFAULT NULL COMMENT '产品型号' +-------------------------------- +2022/6/9 15:49:28| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type_name` `product_type_name` varchar(255) DEFAULT NULL COMMENT '产品名称(含型号)' +-------------------------------- +2022/6/9 15:49:29| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `speed` `speed` int DEFAULT NULL COMMENT '生产速度' +-------------------------------- +2022/6/9 15:49:29| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `total_product_qty` `total_product_qty` int DEFAULT NULL COMMENT '总生产数量' +-------------------------------- +2022/6/9 15:49:29| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_product_qty` `intraday_product_qty` int DEFAULT NULL COMMENT '当日生产数量' +-------------------------------- +2022/6/9 15:49:29| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_ok_qty` `intraday_ok_qty` int DEFAULT NULL COMMENT '当日合格品数量' +-------------------------------- +2022/6/9 15:49:29| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_ng_qty` `intraday_ng_qty` int DEFAULT NULL COMMENT '当日不良品数量' +-------------------------------- +2022/6/9 15:49:29| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_yield_rate` `intraday_yield_rate` decimal(20,2) DEFAULT NULL COMMENT '当日合格率' +-------------------------------- +2022/6/9 15:49:29| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_run_time` `intraday_eqmt_run_time` int DEFAULT NULL COMMENT '当日开机总时间(单位:秒)' +-------------------------------- +2022/6/9 15:49:29| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_work_time` `intraday_eqmt_work_time` int DEFAULT NULL COMMENT '当日负荷时间(单位:秒)' +-------------------------------- +2022/6/9 15:49:29| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_stop_time` `intraday_eqmt_stop_time` int DEFAULT NULL COMMENT '当日停机时间(单位:秒)' +-------------------------------- +2022/6/9 15:49:29| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_stop_times` `intraday_eqmt_stop_times` int DEFAULT NULL COMMENT '当日停机次数' +-------------------------------- +2022/6/9 15:49:29| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_status` `eqmt_status` tinyint DEFAULT NULL COMMENT '设备状态 0:关机;1:开机;2:待机' +-------------------------------- +2022/6/9 15:49:29| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_except_flag` `eqmt_except_flag` tinyint DEFAULT NULL COMMENT '设备异常标记' +-------------------------------- +2022/6/9 15:49:29| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_alarm_flag` `eqmt_alarm_flag` tinyint DEFAULT NULL COMMENT '设备报警标记' +-------------------------------- +2022/6/9 15:49:29| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL COMMENT 'OEE' +-------------------------------- +2022/6/9 15:49:29| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_pub_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/9 17:59:08| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/9 17:59:08| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_pub_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/9 17:59:08| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_pub_data` ADD `create_time` datetime DEFAULT NULL +-------------------------------- +2022/6/9 17:59:09| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_pub_data` ADD `update_by` varchar(50) DEFAULT NULL +-------------------------------- +2022/6/9 17:59:09| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_pub_data` ADD `update_time` datetime DEFAULT NULL +-------------------------------- +2022/6/9 17:59:10| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_pub_data` ADD `sys_org_code` varchar(64) DEFAULT NULL +-------------------------------- +2022/6/9 17:59:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type` `product_type` varchar(50) DEFAULT NULL +-------------------------------- +2022/6/9 17:59:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type_name` `product_type_name` varchar(255) DEFAULT NULL +-------------------------------- +2022/6/9 17:59:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_yield_rate` `intraday_yield_rate` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/9 17:59:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/9 17:59:10| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_pub_data` COMMENT='公用'; +-------------------------------- +2022/6/9 17:59:10| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `collect_id` `collect_id` varchar(255) DEFAULT NULL COMMENT '收集唯一ID' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_id` `eqmt_id` int NOT NULL COMMENT '设备id' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type` `product_type` varchar(50) DEFAULT NULL COMMENT '产品型号' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type_name` `product_type_name` varchar(255) DEFAULT NULL COMMENT '产品名称(含型号)' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `speed` `speed` int DEFAULT NULL COMMENT '生产速度' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `total_product_qty` `total_product_qty` int DEFAULT NULL COMMENT '总生产数量' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_product_qty` `intraday_product_qty` int DEFAULT NULL COMMENT '当日生产数量' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_ok_qty` `intraday_ok_qty` int DEFAULT NULL COMMENT '当日合格品数量' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_ng_qty` `intraday_ng_qty` int DEFAULT NULL COMMENT '当日不良品数量' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_yield_rate` `intraday_yield_rate` decimal(20,2) DEFAULT NULL COMMENT '当日合格率' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_run_time` `intraday_eqmt_run_time` int DEFAULT NULL COMMENT '当日开机总时间(单位:秒)' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_work_time` `intraday_eqmt_work_time` int DEFAULT NULL COMMENT '当日负荷时间(单位:秒)' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_stop_time` `intraday_eqmt_stop_time` int DEFAULT NULL COMMENT '当日停机时间(单位:秒)' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_stop_times` `intraday_eqmt_stop_times` int DEFAULT NULL COMMENT '当日停机次数' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_status` `eqmt_status` tinyint DEFAULT NULL COMMENT '设备状态 0:关机;1:开机;2:待机' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_except_flag` `eqmt_except_flag` tinyint DEFAULT NULL COMMENT '设备异常标记' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_alarm_flag` `eqmt_alarm_flag` tinyint DEFAULT NULL COMMENT '设备报警标记' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL COMMENT 'OEE' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `create_time` `create_time` datetime DEFAULT NULL COMMENT '创建日期' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `update_by` `update_by` varchar(50) DEFAULT NULL COMMENT '更新人' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `update_time` `update_time` datetime DEFAULT NULL COMMENT '更新日期' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `sys_org_code` `sys_org_code` varchar(64) DEFAULT NULL COMMENT '所属部门' +-------------------------------- +2022/6/9 17:59:11| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_pub_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/9 17:59:22| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/6/9 17:59:22| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_add_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/9 17:59:22| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `create_by` varchar(50) DEFAULT NULL +-------------------------------- +2022/6/9 17:59:23| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `create_time` datetime DEFAULT NULL +-------------------------------- +2022/6/9 17:59:23| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `update_by` varchar(50) DEFAULT NULL +-------------------------------- +2022/6/9 17:59:23| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `update_time` datetime DEFAULT NULL +-------------------------------- +2022/6/9 17:59:23| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` ADD `sys_org_code` varchar(64) DEFAULT NULL +-------------------------------- +2022/6/9 17:59:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/9 17:59:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `shift_complete_rate` `shift_complete_rate` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/6/9 17:59:23| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` COMMENT='递增数据 每次采集数据的产量差值'; +-------------------------------- +2022/6/9 17:59:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/6/9 17:59:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/6/9 17:59:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/6/9 17:59:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备ID' +-------------------------------- +2022/6/9 17:59:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `line_name` `line_name` varchar(255) DEFAULT NULL COMMENT '设备名称' +-------------------------------- +2022/6/9 17:59:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_datetime` `add_datetime` datetime DEFAULT NULL COMMENT '采集时间' +-------------------------------- +2022/6/9 17:59:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `product` `product` varchar(255) DEFAULT NULL COMMENT '产品' +-------------------------------- +2022/6/9 17:59:23| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `product_type` `product_type` varchar(255) DEFAULT NULL COMMENT '型号' +-------------------------------- +2022/6/9 17:59:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `product_type_name` `product_type_name` varchar(255) DEFAULT NULL COMMENT '型号名称' +-------------------------------- +2022/6/9 17:59:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty` `add_qty` bigint DEFAULT NULL COMMENT '增加数量' +-------------------------------- +2022/6/9 17:59:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty_ok` `add_qty_ok` bigint DEFAULT NULL COMMENT '增加数量 良品' +-------------------------------- +2022/6/9 17:59:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty_ng` `add_qty_ng` bigint DEFAULT NULL COMMENT '增加数量 不良品' +-------------------------------- +2022/6/9 17:59:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_during_time` `add_during_time` int DEFAULT NULL COMMENT '采集间隔时间(秒)' +-------------------------------- +2022/6/9 17:59:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL COMMENT 'OEE' +-------------------------------- +2022/6/9 17:59:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `shift_complete_rate` `shift_complete_rate` decimal(20,2) DEFAULT NULL COMMENT '当班完成率' +-------------------------------- +2022/6/9 17:59:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `eqmt_status` `eqmt_status` tinyint DEFAULT NULL COMMENT '设备状态 0:关机;1:开机;2:待机' +-------------------------------- +2022/6/9 17:59:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `create_by` `create_by` varchar(50) DEFAULT NULL COMMENT '创建人' +-------------------------------- +2022/6/9 17:59:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `create_time` `create_time` datetime DEFAULT NULL COMMENT '创建日期' +-------------------------------- +2022/6/9 17:59:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `update_by` `update_by` varchar(50) DEFAULT NULL COMMENT '更新人' +-------------------------------- +2022/6/9 17:59:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `update_time` `update_time` datetime DEFAULT NULL COMMENT '更新日期' +-------------------------------- +2022/6/9 17:59:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `sys_org_code` `sys_org_code` varchar(64) DEFAULT NULL COMMENT '所属部门' +-------------------------------- +2022/6/9 17:59:24| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_add_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/6/23 11:32:18| +【SQL参数】:@InPara0:17 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 11:32:31| +【SQL参数】:@InPara0:17 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 11:33:17| +【SQL参数】:@InPara0:17 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 11:34:29| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 13:39:01| +【SQL参数】:@InPara0:17 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 13:39:33| +【SQL参数】:@InPara0:17 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 13:54:44| +【SQL参数】:@InPara0:17 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 14:20:51| +【SQL参数】:@InPara0:16 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 14:20:53| +【SQL参数】:@InPara0:17 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 14:21:03| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 14:21:18| +【SQL参数】:@InPara0:19 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 14:32:58| +【SQL参数】:@InPara0:17 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 14:44:00| +【SQL参数】:@InPara0:13 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 14:44:03| +【SQL参数】:@InPara0:16 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 14:44:05| +【SQL参数】:@InPara0:17 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 14:44:08| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 14:44:10| +【SQL参数】:@InPara0:19 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/23 16:05:50| +【SQL参数】:@InPara0:17 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/29 10:47:56| +【SQL参数】:@InPara0:16 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/29 10:48:41| +【SQL参数】:@InPara0:17 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/6/29 10:52:56| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/7/5 10:01:03| +【SQL参数】:@InPara0:13 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/7/5 10:02:16| +【SQL参数】:@InPara0:16 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/7/5 10:02:58| +【SQL参数】:@InPara0:17 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/7/5 10:04:36| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/7/8 10:20:46| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/7/8 10:21:52| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/7/8 10:21:52| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_pub_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/7/8 10:21:52| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_pub_data` ADD `intraday_eqmt_work_rate` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/7/8 10:21:54| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_pub_data` DROP COLUMN `create_by` +-------------------------------- +2022/7/8 10:21:55| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type` `product_type` varchar(50) DEFAULT NULL +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type_name` `product_type_name` varchar(255) DEFAULT NULL +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_yield_rate` `intraday_yield_rate` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_pub_data` COMMENT='公用'; +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `collect_id` `collect_id` varchar(255) DEFAULT NULL COMMENT '收集唯一ID' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_id` `eqmt_id` int NOT NULL COMMENT '设备id' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type` `product_type` varchar(50) DEFAULT NULL COMMENT '产品型号' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `product_type_name` `product_type_name` varchar(255) DEFAULT NULL COMMENT '产品名称(含型号)' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `speed` `speed` int DEFAULT NULL COMMENT '生产速度' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `total_product_qty` `total_product_qty` int DEFAULT NULL COMMENT '总生产数量' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_product_qty` `intraday_product_qty` int DEFAULT NULL COMMENT '当日生产数量' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_ok_qty` `intraday_ok_qty` int DEFAULT NULL COMMENT '当日合格品数量' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_ng_qty` `intraday_ng_qty` int DEFAULT NULL COMMENT '当日不良品数量' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_yield_rate` `intraday_yield_rate` decimal(20,2) DEFAULT NULL COMMENT '当日合格率' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_run_time` `intraday_eqmt_run_time` int DEFAULT NULL COMMENT '当日开机总时间(单位:秒)' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_work_time` `intraday_eqmt_work_time` int DEFAULT NULL COMMENT '当日负荷时间(单位:秒)' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_stop_time` `intraday_eqmt_stop_time` int DEFAULT NULL COMMENT '当日停机时间(单位:秒)' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_work_rate` `intraday_eqmt_work_rate` decimal(20,2) DEFAULT NULL COMMENT '当日开机效率' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `intraday_eqmt_stop_times` `intraday_eqmt_stop_times` int DEFAULT NULL COMMENT '当日停机次数' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_status` `eqmt_status` tinyint DEFAULT NULL COMMENT '设备状态 0:关机;1:开机;2:待机' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_except_flag` `eqmt_except_flag` tinyint DEFAULT NULL COMMENT '设备异常标记' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `eqmt_alarm_flag` `eqmt_alarm_flag` tinyint DEFAULT NULL COMMENT '设备报警标记' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL COMMENT 'OEE' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `create_time` `create_time` datetime DEFAULT NULL COMMENT '创建日期' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `update_by` `update_by` varchar(50) DEFAULT NULL COMMENT '更新人' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `update_time` `update_time` datetime DEFAULT NULL COMMENT '更新日期' +-------------------------------- +2022/7/8 10:21:56| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_pub_data` change column `sys_org_code` `sys_org_code` varchar(64) DEFAULT NULL COMMENT '所属部门' +-------------------------------- +2022/7/8 10:21:57| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_pub_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/7/8 10:23:46| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/7/8 10:23:46| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_add_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/7/8 10:23:46| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/7/8 10:23:46| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `shift_complete_rate` `shift_complete_rate` decimal(20,2) DEFAULT NULL +-------------------------------- +2022/7/8 10:23:46| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `create_time` `create_time` datetime DEFAULT NULL +-------------------------------- +2022/7/8 10:23:47| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `update_time` `update_time` datetime DEFAULT NULL +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_add_data` COMMENT='递增数据 每次采集数据的产量差值'; +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备ID' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `line_name` `line_name` varchar(255) DEFAULT NULL COMMENT '设备名称' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_datetime` `add_datetime` datetime DEFAULT NULL COMMENT '采集时间' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `product` `product` varchar(255) DEFAULT NULL COMMENT '产品' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `product_type` `product_type` varchar(255) DEFAULT NULL COMMENT '型号' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `product_type_name` `product_type_name` varchar(255) DEFAULT NULL COMMENT '型号名称' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty` `add_qty` bigint DEFAULT NULL COMMENT '增加数量' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty_ok` `add_qty_ok` bigint DEFAULT NULL COMMENT '增加数量 良品' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_qty_ng` `add_qty_ng` bigint DEFAULT NULL COMMENT '增加数量 不良品' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `add_during_time` `add_during_time` int DEFAULT NULL COMMENT '采集间隔时间(秒)' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `oee` `oee` decimal(20,2) DEFAULT NULL COMMENT 'OEE' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `shift_complete_rate` `shift_complete_rate` decimal(20,2) DEFAULT NULL COMMENT '当班完成率' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `eqmt_status` `eqmt_status` tinyint DEFAULT NULL COMMENT '设备状态 0:关机;1:开机;2:待机' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `create_by` `create_by` varchar(50) DEFAULT NULL COMMENT '创建人' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `create_time` `create_time` datetime DEFAULT NULL COMMENT '创建日期' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `update_by` `update_by` varchar(50) DEFAULT NULL COMMENT '更新人' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `update_time` `update_time` datetime DEFAULT NULL COMMENT '更新日期' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_add_data` change column `sys_org_code` `sys_org_code` varchar(64) DEFAULT NULL COMMENT '所属部门' +-------------------------------- +2022/7/8 10:23:48| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_add_data' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/7/8 10:24:13| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/7/8 10:24:13| +【SQL参数】: +【SQL语句】:CREATE TABLE `eqmt_collect_daily_shift`( +`id` bigint NOT NULL AUTO_INCREMENT, +`eqmt_id` int DEFAULT NULL , +`line_name` varchar(255) DEFAULT NULL , +`shift_begin_dt` datetime DEFAULT NULL , +`product` varchar(255) DEFAULT NULL , +`product_type` varchar(255) DEFAULT NULL , +`product_type_name` varchar(255) DEFAULT NULL , +`speed` int DEFAULT NULL , +`total_product_qty` int DEFAULT NULL , +`intraday_product_qty` int DEFAULT NULL , +`intraday_ok_qty` int DEFAULT NULL , +`intraday_ng_qty` int DEFAULT NULL , +`intraday_yield_rate` decimal(20,2) DEFAULT NULL , +`intraday_eqmt_run_time` int DEFAULT NULL , +`intraday_eqmt_work_time` int DEFAULT NULL , +`intraday_eqmt_stop_time` int DEFAULT NULL , +`intraday_eqmt_work_rate` decimal(20,2) DEFAULT NULL , +`intraday_eqmt_stop_times` int DEFAULT NULL , +`oee` decimal(20,2) DEFAULT NULL , +`gmt_create` datetime DEFAULT NULL , +`gmt_modified` datetime DEFAULT NULL , +`create_by` varchar(50) DEFAULT NULL , +`create_time` datetime DEFAULT NULL , +`update_by` varchar(50) DEFAULT NULL , +`update_time` datetime DEFAULT NULL , +`sys_org_code` varchar(64) DEFAULT NULL , Primary key(`id`)) +-------------------------------- +2022/7/8 10:24:13| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_daily_shift` COMMENT='班次数据 每次数据清空新增一条'; +-------------------------------- +2022/7/8 10:24:13| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/7/8 10:24:13| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备ID' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `line_name` `line_name` varchar(255) DEFAULT NULL COMMENT '设备名称' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `shift_begin_dt` `shift_begin_dt` datetime DEFAULT NULL COMMENT '班次开始时间' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `product` `product` varchar(255) DEFAULT NULL COMMENT '产品' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `product_type` `product_type` varchar(255) DEFAULT NULL COMMENT '型号' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `product_type_name` `product_type_name` varchar(255) DEFAULT NULL COMMENT '型号名称' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `speed` `speed` int DEFAULT NULL COMMENT '生产速度' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `total_product_qty` `total_product_qty` int DEFAULT NULL COMMENT '总生产数量' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `intraday_product_qty` `intraday_product_qty` int DEFAULT NULL COMMENT '当日生产数量' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `intraday_ok_qty` `intraday_ok_qty` int DEFAULT NULL COMMENT '当日合格品数量' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `intraday_ng_qty` `intraday_ng_qty` int DEFAULT NULL COMMENT '当日不良品数量' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `intraday_yield_rate` `intraday_yield_rate` decimal(20,2) DEFAULT NULL COMMENT '当日合格率' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `intraday_eqmt_run_time` `intraday_eqmt_run_time` int DEFAULT NULL COMMENT '当日开机总时间(单位:秒)' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `intraday_eqmt_work_time` `intraday_eqmt_work_time` int DEFAULT NULL COMMENT '当日负荷时间(单位:秒)' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `intraday_eqmt_stop_time` `intraday_eqmt_stop_time` int DEFAULT NULL COMMENT '当日停机时间(单位:秒)' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `intraday_eqmt_work_rate` `intraday_eqmt_work_rate` decimal(20,2) DEFAULT NULL COMMENT '当日开机效率' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `intraday_eqmt_stop_times` `intraday_eqmt_stop_times` int DEFAULT NULL COMMENT '当日停机次数' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `oee` `oee` decimal(20,2) DEFAULT NULL COMMENT 'OEE' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `create_by` `create_by` varchar(50) DEFAULT NULL COMMENT '创建人' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `create_time` `create_time` datetime DEFAULT NULL COMMENT '创建日期' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `update_by` `update_by` varchar(50) DEFAULT NULL COMMENT '更新人' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `update_time` `update_time` datetime DEFAULT NULL COMMENT '更新日期' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_daily_shift` change column `sys_org_code` `sys_org_code` varchar(64) DEFAULT NULL COMMENT '所属部门' +-------------------------------- +2022/7/8 10:24:14| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_daily_shift' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/7/8 10:24:24| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/7/8 10:24:24| +【SQL参数】: +【SQL语句】:CREATE TABLE `eqmt_collect_qc_result`( +`id` bigint NOT NULL AUTO_INCREMENT, +`gmt_create` datetime DEFAULT NULL , +`gmt_modified` datetime DEFAULT NULL , +`shift_begin_dt` datetime DEFAULT NULL , +`collect_id` varchar(255) DEFAULT NULL , +`eqmt_id` int DEFAULT NULL , +`registor_address` varchar(255) DEFAULT NULL , +`except_type` int DEFAULT NULL , +`except_type_name` varchar(255) DEFAULT NULL , +`except_message` varchar(255) DEFAULT NULL , +`qc_result` int DEFAULT NULL , Primary key(`id`)) +-------------------------------- +2022/7/8 10:24:24| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_qc_result` COMMENT='QC结果'; +-------------------------------- +2022/7/8 10:24:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_qc_result` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/7/8 10:24:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_qc_result` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/7/8 10:24:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_qc_result` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/7/8 10:24:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_qc_result` change column `shift_begin_dt` `shift_begin_dt` datetime DEFAULT NULL COMMENT '班次开始时间' +-------------------------------- +2022/7/8 10:24:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_qc_result` change column `collect_id` `collect_id` varchar(255) DEFAULT NULL COMMENT '收集唯一ID' +-------------------------------- +2022/7/8 10:24:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_qc_result` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备id' +-------------------------------- +2022/7/8 10:24:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_qc_result` change column `registor_address` `registor_address` varchar(255) DEFAULT NULL COMMENT '寄存器地址(发生异常)' +-------------------------------- +2022/7/8 10:24:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_qc_result` change column `except_type` `except_type` int DEFAULT NULL COMMENT '报警类型 1:ON报警停机 2:ON报警不停机' +-------------------------------- +2022/7/8 10:24:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_qc_result` change column `except_type_name` `except_type_name` varchar(255) DEFAULT NULL COMMENT '报警类型名称 1:ON报警停机 2:ON报警不停机' +-------------------------------- +2022/7/8 10:24:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_qc_result` change column `except_message` `except_message` varchar(255) DEFAULT NULL COMMENT '报警内容' +-------------------------------- +2022/7/8 10:24:24| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_qc_result` change column `qc_result` `qc_result` int DEFAULT NULL COMMENT 'QC结果数量' +-------------------------------- +2022/7/8 10:24:24| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_qc_result' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/7/8 10:24:55| +【SQL参数】: +【SQL语句】:select TABLE_NAME as Name,TABLE_COMMENT as Description from information_schema.tables + where TABLE_SCHEMA=(select database()) AND TABLE_TYPE='BASE TABLE' +-------------------------------- +2022/7/8 10:24:55| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_except' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/7/8 10:24:55| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_except` ADD `shift_begin_dt` datetime DEFAULT NULL +-------------------------------- +2022/7/8 10:24:56| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_except` ADD `intraday_eqmt_stop_times` int DEFAULT NULL +-------------------------------- +2022/7/8 10:24:56| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_except` ADD `except_type` int DEFAULT NULL +-------------------------------- +2022/7/8 10:24:56| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_except` ADD `except_type_name` varchar(255) DEFAULT NULL +-------------------------------- +2022/7/8 10:24:57| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_except` ADD `except_message` varchar(255) DEFAULT NULL +-------------------------------- +2022/7/8 10:24:57| +【SQL参数】: +【SQL语句】:ALTER TABLE `eqmt_collect_except` COMMENT='异常表 (最后一次收集)'; +-------------------------------- +2022/7/8 10:24:57| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `id` `id` bigint NOT NULL AUTO_INCREMENT COMMENT '自增主键' +-------------------------------- +2022/7/8 10:24:57| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `gmt_create` `gmt_create` datetime DEFAULT NULL COMMENT '创建时间' +-------------------------------- +2022/7/8 10:24:57| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `gmt_modified` `gmt_modified` datetime DEFAULT NULL COMMENT '修改时间' +-------------------------------- +2022/7/8 10:24:57| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `shift_begin_dt` `shift_begin_dt` datetime DEFAULT NULL COMMENT '班次开始时间' +-------------------------------- +2022/7/8 10:24:57| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `intraday_eqmt_stop_times` `intraday_eqmt_stop_times` int DEFAULT NULL COMMENT '当日停机次数' +-------------------------------- +2022/7/8 10:24:57| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `collect_id` `collect_id` varchar(255) DEFAULT NULL COMMENT '收集唯一ID' +-------------------------------- +2022/7/8 10:24:57| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `eqmt_id` `eqmt_id` int DEFAULT NULL COMMENT '设备id' +-------------------------------- +2022/7/8 10:24:57| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `registor_address` `registor_address` varchar(255) DEFAULT NULL COMMENT '寄存器地址(发生异常)' +-------------------------------- +2022/7/8 10:24:57| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `except_type` `except_type` int DEFAULT NULL COMMENT '报警类型 1:ON报警停机 2:ON报警不停机' +-------------------------------- +2022/7/8 10:24:57| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `except_type_name` `except_type_name` varchar(255) DEFAULT NULL COMMENT '报警类型名称 1:ON报警停机 2:ON报警不停机' +-------------------------------- +2022/7/8 10:24:57| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `except_message` `except_message` varchar(255) DEFAULT NULL COMMENT '报警内容' +-------------------------------- +2022/7/8 10:24:57| +【SQL参数】: +【SQL语句】:alter table `eqmt_collect_except` change column `qc_result` `qc_result` int DEFAULT NULL COMMENT 'QC结果数量' +-------------------------------- +2022/7/8 10:24:57| +【SQL参数】: +【SQL语句】:SELECT + 0 as TableId, + TABLE_NAME as TableName, + column_name AS DbColumnName, + CASE WHEN left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1)='' THEN COLUMN_TYPE ELSE left(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)-1) END AS DataType, + CAST(SUBSTRING(COLUMN_TYPE,LOCATE('(',COLUMN_TYPE)+1,LOCATE(')',COLUMN_TYPE)-LOCATE('(',COLUMN_TYPE)-1) AS signed) AS Length, + column_default AS `DefaultValue`, + column_comment AS `ColumnDescription`, + CASE WHEN COLUMN_KEY = 'PRI' + THEN true ELSE false END AS `IsPrimaryKey`, + CASE WHEN EXTRA='auto_increment' THEN true ELSE false END as IsIdentity, + CASE WHEN is_nullable = 'YES' + THEN true ELSE false END AS `IsNullable`, + numeric_scale as Scale, + numeric_scale as DecimalDigits + FROM + Information_schema.columns where TABLE_NAME='eqmt_collect_except' and TABLE_SCHEMA=(select database()) ORDER BY ordinal_position +-------------------------------- +2022/7/8 10:26:01| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/7/8 11:12:22| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/7/8 11:24:04| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/7/8 11:26:17| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/7/11 10:59:14| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/7/11 11:02:13| +【SQL参数】:@InPara0:18 + +【SQL语句】:SELECT `Name`,`JobGroup`,`Cron`,`AssemblyName`,`ClassName`,`Remark`,`RunTimes`,`BeginTime`,`EndTime`,`TriggerType`,`IntervalSecond`,`CycleRunTimes`,`IsStart`,`JobParams`,`Id`,`CreateId`,`CreateBy`,`CreateTime`,`ModifyId`,`ModifyBy`,`ModifyTime`,`IsDeleted` FROM `tasks_qz` WHERE `Id` = @InPara0 ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/7/11 17:16:49| +【SQL参数】: +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` +-------------------------------- +2022/7/12 8:19:36| +【SQL参数】: +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` +-------------------------------- +2022/7/12 8:26:14| +【SQL参数】: +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` +-------------------------------- +2022/7/12 8:35:51| +【SQL参数】: +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` +-------------------------------- +2022/7/12 8:38:36| +【SQL参数】: +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` +-------------------------------- +2022/7/12 9:36:05| +【SQL参数】: +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` +-------------------------------- +2022/7/12 9:37:09| +【SQL参数】: +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` +-------------------------------- +2022/7/12 9:42:13| +【SQL参数】:@FSTATUS0:结案 + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE ( `FSTATUS` <> @FSTATUS0 ) +-------------------------------- +2022/7/12 9:49:24| +【SQL参数】:@FSTATUS0:结案 +@Length2:0 + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (( `FSTATUS` <> @FSTATUS0 ) AND (LENGTH(`FSTART_DATE`)> @Length2 )) +-------------------------------- +2022/7/12 9:54:23| +【SQL参数】:@FSTATUS0:结案 +@Length2:0 + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (( `FSTATUS` <> @FSTATUS0 ) AND (LENGTH(`FSTART_DATE`)> @Length2 )) +-------------------------------- +2022/7/12 10:29:35| +【SQL参数】:@FSTATUS0:结案 +@Length2:0 + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (( `FSTATUS` <> @FSTATUS0 ) AND (LENGTH(`FSTART_DATE`)> @Length2 )) +-------------------------------- +2022/7/12 16:15:47| +【SQL参数】:@MethodConst0:2022/7/12 16:15:47 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/12 16:16:13| +【SQL参数】:@MethodConst0:2022/7/12 16:16:13 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 8:28:28| +【SQL参数】:@MethodConst0:2022/7/13 8:28:28 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 8:28:46| +【SQL参数】:@MethodConst0:2022/7/13 8:28:46 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 8:32:12| +【SQL参数】:@MethodConst0:2022/7/13 8:32:12 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 8:32:13| +【SQL参数】:@MethodConst0:2022/7/13 8:32:13 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 8:32:33| +【SQL参数】:@MethodConst0:2022/7/13 8:32:33 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 8:32:33| +【SQL参数】:@MethodConst0:2022/7/13 8:32:33 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 8:32:38| +【SQL参数】:@MethodConst0:2022/7/13 8:32:38 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 8:32:38| +【SQL参数】:@MethodConst0:2022/7/13 8:32:38 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 10:59:16| +【SQL参数】:@MethodConst0:2022/7/13 10:59:16 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 10:59:16| +【SQL参数】:@MethodConst0:2022/7/13 10:59:16 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 10:59:39| +【SQL参数】:@MethodConst0:2022/7/13 10:59:39 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 10:59:39| +【SQL参数】:@MethodConst0:2022/7/13 10:59:39 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 11:12:09| +【SQL参数】:@MethodConst0:2022/7/13 11:12:09 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 11:12:09| +【SQL参数】:@MethodConst0:2022/7/13 11:12:09 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 11:33:53| +【SQL参数】:@MethodConst0:2022/7/13 11:33:53 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 11:33:54| +【SQL参数】:@MethodConst0:2022/7/13 11:33:54 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 11:33:54| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 11:33:54| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 +@MethodConst4:2022/7/13 0:00:00 +@MethodConst5:1 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE (( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) AND ( `add_datetime` < CAST( (DATE_ADD(@MethodConst4 , INTERVAL @MethodConst5 Day)) AS DATE) )) +-------------------------------- +2022/7/13 11:35:13| +【SQL参数】:@MethodConst0:2022/7/13 11:35:12 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 11:35:13| +【SQL参数】:@MethodConst0:2022/7/13 11:35:13 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 11:35:13| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 11:35:13| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 +@MethodConst4:2022/7/13 0:00:00 +@MethodConst5:1 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE (( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) AND ( `add_datetime` < CAST( (DATE_ADD(@MethodConst4 , INTERVAL @MethodConst5 Day)) AS DATE) )) +-------------------------------- +2022/7/13 11:35:52| +【SQL参数】:@MethodConst0:2022/7/13 11:35:52 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 11:35:52| +【SQL参数】:@MethodConst0:2022/7/13 11:35:52 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 11:35:52| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 11:35:52| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 +@MethodConst4:2022/7/13 0:00:00 +@MethodConst5:1 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE (( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) AND ( `add_datetime` < CAST( (DATE_ADD(@MethodConst4 , INTERVAL @MethodConst5 Day)) AS DATE) )) +-------------------------------- +2022/7/13 11:36:37| +【SQL参数】:@MethodConst0:2022/7/13 11:36:37 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 11:36:37| +【SQL参数】:@MethodConst0:2022/7/13 11:36:37 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 11:36:37| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 11:36:37| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 +@MethodConst4:2022/7/13 0:00:00 +@MethodConst5:1 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE (( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) AND ( `add_datetime` < CAST( (DATE_ADD(@MethodConst4 , INTERVAL @MethodConst5 Day)) AS DATE) )) +-------------------------------- +2022/7/13 11:37:31| +【SQL参数】:@MethodConst0:2022/7/13 11:37:31 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 11:37:31| +【SQL参数】:@MethodConst0:2022/7/13 11:37:31 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 11:37:31| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 11:37:31| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 +@MethodConst4:2022/7/13 0:00:00 +@MethodConst5:1 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE (( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) AND ( `add_datetime` < CAST( (DATE_ADD(@MethodConst4 , INTERVAL @MethodConst5 Day)) AS DATE) )) +-------------------------------- +2022/7/13 11:38:57| +【SQL参数】:@MethodConst0:2022/7/13 11:38:57 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 11:38:57| +【SQL参数】:@MethodConst0:2022/7/13 11:38:57 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 11:38:57| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 11:38:57| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 +@MethodConst4:2022/7/13 0:00:00 +@MethodConst5:1 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE (( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) AND ( `add_datetime` < CAST( (DATE_ADD(@MethodConst4 , INTERVAL @MethodConst5 Day)) AS DATE) )) +-------------------------------- +2022/7/13 13:35:36| +【SQL参数】:@MethodConst0:2022/7/13 13:35:36 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:35:37| +【SQL参数】:@MethodConst0:2022/7/13 13:35:37 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:35:37| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 13:35:37| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) +-------------------------------- +2022/7/13 13:39:38| +【SQL参数】:@MethodConst0:2022/7/13 13:39:37 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:39:38| +【SQL参数】:@MethodConst0:2022/7/13 13:39:38 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:39:38| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 13:39:38| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` +-------------------------------- +2022/7/13 13:40:11| +【SQL参数】:@MethodConst0:2022/7/13 13:40:11 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:40:11| +【SQL参数】:@MethodConst0:2022/7/13 13:40:11 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:40:11| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 13:40:11| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` +-------------------------------- +2022/7/13 13:40:53| +【SQL参数】:@MethodConst0:2022/7/13 13:40:53 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:40:53| +【SQL参数】:@MethodConst0:2022/7/13 13:40:53 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:40:53| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 13:40:53| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` +-------------------------------- +2022/7/13 13:43:15| +【SQL参数】:@MethodConst0:2022/7/13 13:43:15 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:43:16| +【SQL参数】:@MethodConst0:2022/7/13 13:43:16 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:43:16| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 13:43:16| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) +-------------------------------- +2022/7/13 13:45:57| +【SQL参数】:@MethodConst0:2022/7/13 13:45:57 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:45:57| +【SQL参数】:@MethodConst0:2022/7/13 13:45:57 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:45:57| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 13:45:57| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) +-------------------------------- +2022/7/13 13:46:20| +【SQL参数】:@MethodConst0:2022/7/13 13:46:20 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:46:20| +【SQL参数】:@MethodConst0:2022/7/13 13:46:20 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:46:20| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 13:46:20| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) +-------------------------------- +2022/7/13 13:47:03| +【SQL参数】:@MethodConst0:2022/7/13 13:47:03 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:47:03| +【SQL参数】:@MethodConst0:2022/7/13 13:47:03 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:47:04| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 13:47:04| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) +-------------------------------- +2022/7/13 13:48:35| +【SQL参数】:@MethodConst0:2022/7/13 13:48:35 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:48:35| +【SQL参数】:@MethodConst0:2022/7/13 13:48:35 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:48:35| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 13:48:35| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) +-------------------------------- +2022/7/13 13:49:12| +【SQL参数】:@MethodConst0:2022/7/13 13:49:12 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:49:12| +【SQL参数】:@MethodConst0:2022/7/13 13:49:12 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 13:49:12| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 13:49:12| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) +-------------------------------- +2022/7/13 15:07:08| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 15:07:09| +【SQL参数】:@MethodConst0:2022/7/13 15:07:09 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 15:07:09| +【SQL参数】:@MethodConst0:2022/7/13 15:07:09 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 15:07:09| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 15:07:09| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) +-------------------------------- +2022/7/13 15:07:09| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 15:07:09| +【SQL参数】:@Const0:2022/7/1 0:00:00 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`product_type`,`product_type_name`,`speed`,`total_product_qty`,`intraday_product_qty`,`intraday_ok_qty`,`intraday_ng_qty`,`intraday_yield_rate`,`intraday_eqmt_run_time`,`intraday_eqmt_work_time`,`intraday_eqmt_stop_time`,`intraday_eqmt_work_rate`,`intraday_eqmt_stop_times`,`eqmt_status`,`eqmt_except_flag`,`eqmt_alarm_flag`,`oee`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_pub_data` WHERE ( `gmt_create` >= @Const0 ) +-------------------------------- +2022/7/13 15:17:21| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 15:17:22| +【SQL参数】:@MethodConst0:2022/7/13 15:17:22 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 15:17:22| +【SQL参数】:@MethodConst0:2022/7/13 15:17:22 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 15:17:22| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 15:17:22| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) +-------------------------------- +2022/7/13 15:17:24| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 15:17:24| +【SQL参数】:@Const0:2022/7/1 0:00:00 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`product_type`,`product_type_name`,`speed`,`total_product_qty`,`intraday_product_qty`,`intraday_ok_qty`,`intraday_ng_qty`,`intraday_yield_rate`,`intraday_eqmt_run_time`,`intraday_eqmt_work_time`,`intraday_eqmt_stop_time`,`intraday_eqmt_work_rate`,`intraday_eqmt_stop_times`,`eqmt_status`,`eqmt_except_flag`,`eqmt_alarm_flag`,`oee`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_pub_data` WHERE ( `gmt_create` >= @Const0 ) +-------------------------------- +2022/7/13 15:19:30| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 15:19:30| +【SQL参数】:@MethodConst0:2022/7/13 15:19:30 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 15:19:30| +【SQL参数】:@MethodConst0:2022/7/13 15:19:30 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 15:19:30| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 15:19:31| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) +-------------------------------- +2022/7/13 15:19:31| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 15:19:31| +【SQL参数】:@Const0:2022/7/1 0:00:00 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`product_type`,`product_type_name`,`speed`,`total_product_qty`,`intraday_product_qty`,`intraday_ok_qty`,`intraday_ng_qty`,`intraday_yield_rate`,`intraday_eqmt_run_time`,`intraday_eqmt_work_time`,`intraday_eqmt_stop_time`,`intraday_eqmt_work_rate`,`intraday_eqmt_stop_times`,`eqmt_status`,`eqmt_except_flag`,`eqmt_alarm_flag`,`oee`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_pub_data` WHERE ( `gmt_create` >= @Const0 ) +-------------------------------- +2022/7/13 15:22:13| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 15:22:13| +【SQL参数】:@MethodConst0:2022/7/13 15:22:13 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 15:22:13| +【SQL参数】:@MethodConst0:2022/7/13 15:22:13 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 15:22:13| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 15:22:13| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) +-------------------------------- +2022/7/13 15:22:13| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 15:22:13| +【SQL参数】:@Const0:2022/7/1 0:00:00 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`product_type`,`product_type_name`,`speed`,`total_product_qty`,`intraday_product_qty`,`intraday_ok_qty`,`intraday_ng_qty`,`intraday_yield_rate`,`intraday_eqmt_run_time`,`intraday_eqmt_work_time`,`intraday_eqmt_stop_time`,`intraday_eqmt_work_rate`,`intraday_eqmt_stop_times`,`eqmt_status`,`eqmt_except_flag`,`eqmt_alarm_flag`,`oee`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_pub_data` WHERE ( `gmt_create` >= @Const0 ) +-------------------------------- +2022/7/13 16:33:47| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 16:33:47| +【SQL参数】:@MethodConst0:2022/7/13 16:33:47 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 16:33:47| +【SQL参数】:@MethodConst0:2022/7/13 16:33:47 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 16:33:47| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 16:33:47| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) +-------------------------------- +2022/7/13 16:33:52| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 16:33:52| +【SQL参数】:@Const0:2022/7/1 0:00:00 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`product_type`,`product_type_name`,`speed`,`total_product_qty`,`intraday_product_qty`,`intraday_ok_qty`,`intraday_ng_qty`,`intraday_yield_rate`,`intraday_eqmt_run_time`,`intraday_eqmt_work_time`,`intraday_eqmt_stop_time`,`intraday_eqmt_work_rate`,`intraday_eqmt_stop_times`,`eqmt_status`,`eqmt_except_flag`,`eqmt_alarm_flag`,`oee`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_pub_data` WHERE ( `gmt_create` >= @Const0 ) +-------------------------------- +2022/7/13 16:33:52| +【SQL参数】:@Const0:2022/7/1 0:00:00 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= @Const0 ) +-------------------------------- +2022/7/13 16:36:46| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 16:36:47| +【SQL参数】:@MethodConst0:2022/7/13 16:36:47 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 16:36:47| +【SQL参数】:@MethodConst0:2022/7/13 16:36:47 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 16:36:47| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 16:36:47| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) +-------------------------------- +2022/7/13 16:36:47| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 16:36:47| +【SQL参数】:@Const0:2022/7/1 0:00:00 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`product_type`,`product_type_name`,`speed`,`total_product_qty`,`intraday_product_qty`,`intraday_ok_qty`,`intraday_ng_qty`,`intraday_yield_rate`,`intraday_eqmt_run_time`,`intraday_eqmt_work_time`,`intraday_eqmt_stop_time`,`intraday_eqmt_work_rate`,`intraday_eqmt_stop_times`,`eqmt_status`,`eqmt_except_flag`,`eqmt_alarm_flag`,`oee`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_pub_data` WHERE ( `gmt_create` >= @Const0 ) +-------------------------------- +2022/7/13 16:36:47| +【SQL参数】:@Const0:2022/7/1 0:00:00 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= @Const0 ) +-------------------------------- +2022/7/13 16:39:32| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 16:39:32| +【SQL参数】:@MethodConst0:2022/7/13 16:39:32 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 16:39:32| +【SQL参数】:@MethodConst0:2022/7/13 16:39:32 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022/7/13 16:39:32| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 16:39:32| +【SQL参数】:@MethodConst1:2022/7/13 0:00:00 +@MethodConst2:-6 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) +-------------------------------- +2022/7/13 16:39:32| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 16:39:32| +【SQL参数】:@Const0:2022/7/1 0:00:00 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`product_type`,`product_type_name`,`speed`,`total_product_qty`,`intraday_product_qty`,`intraday_ok_qty`,`intraday_ng_qty`,`intraday_yield_rate`,`intraday_eqmt_run_time`,`intraday_eqmt_work_time`,`intraday_eqmt_stop_time`,`intraday_eqmt_work_rate`,`intraday_eqmt_stop_times`,`eqmt_status`,`eqmt_except_flag`,`eqmt_alarm_flag`,`oee`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_pub_data` WHERE ( `gmt_create` >= @Const0 ) +-------------------------------- +2022/7/13 16:39:32| +【SQL参数】:@Const0:2022/7/1 0:00:00 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= @Const0 ) +-------------------------------- +2022/7/13 17:21:38| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 17:21:38| +【SQL参数】:@Const0:2022/7/13 0:00:00 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`product_type`,`product_type_name`,`speed`,`total_product_qty`,`intraday_product_qty`,`intraday_ok_qty`,`intraday_ng_qty`,`intraday_yield_rate`,`intraday_eqmt_run_time`,`intraday_eqmt_work_time`,`intraday_eqmt_stop_time`,`intraday_eqmt_work_rate`,`intraday_eqmt_stop_times`,`eqmt_status`,`eqmt_except_flag`,`eqmt_alarm_flag`,`oee`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_pub_data` WHERE ( `gmt_create` >= @Const0 ) +-------------------------------- +2022/7/13 17:32:24| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022/7/13 17:32:25| +【SQL参数】:@Const0:2022/7/13 0:00:00 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`product_type`,`product_type_name`,`speed`,`total_product_qty`,`intraday_product_qty`,`intraday_ok_qty`,`intraday_ng_qty`,`intraday_yield_rate`,`intraday_eqmt_run_time`,`intraday_eqmt_work_time`,`intraday_eqmt_stop_time`,`intraday_eqmt_work_rate`,`intraday_eqmt_stop_times`,`eqmt_status`,`eqmt_except_flag`,`eqmt_alarm_flag`,`oee`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_pub_data` WHERE ( `gmt_create` >= @Const0 ) +-------------------------------- +2022/7/14 8:37:33| +【SQL参数】:@FENTRY_ID0:110790 + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE ( `FENTRY_ID` = @FENTRY_ID0 ) ORDER BY NOW() LIMIT 0,1 +-------------------------------- +2022/7/14 8:39:05| +【SQL参数】:@FSTATUS0:结案 +@Length2:0 + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (( `FSTATUS` <> @FSTATUS0 ) AND (LENGTH(`FSTART_DATE`)> @Length2 )) +-------------------------------- +2022/7/14 15:20:02| +【SQL参数】:@FSTATUS0:结案 +@Length2:0 + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (( `FSTATUS` <> @FSTATUS0 ) AND (LENGTH(`FSTART_DATE`)> @Length2 )) +-------------------------------- +2022-09-29 12:35:24| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022-09-29 12:37:34| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022-09-29 12:38:48| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022-09-29 12:38:48| +【SQL参数】:@MethodConst0:2022-09-29 12:38:48 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FBILL_NO`,`FBILL_TYPE`,`FDATE`,`FDOCUMENT_STATUS`,`FPRODUCT_TYPE`,`FENTRY_ID`,`FMATERIAL_ID`,`FNUMBER`,`FMATERIAL_NAME`,`FSPECIFICATION`,`FWORK_SHOP`,`FUNIT_ID`,`FQTY`,`FREPQUAAUX_QTY`,`FREPFAILAUX_QTY`,`FSTATUS`,`FPLAN_START_DATE`,`FPLAN_FINISH_DATE`,`FSTART_DATE`,`FFINISH_DATE` FROM `plan_order` WHERE (`FPLAN_FINISH_DATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022-09-29 12:38:49| +【SQL参数】:@MethodConst0:2022-09-29 12:38:49 +@MethodConst1:yyyy-MM + +【SQL语句】:SELECT `FID`,`FDATE`,`FMUST_QTY`,`FREAL_QTY` FROM `salesout_delivery_order` WHERE (`FDATE` like concat(DATE_FORMAT(@MethodConst0, '%Y-%m'),'%')) +-------------------------------- +2022-09-29 12:38:49| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022-09-29 12:38:49| +【SQL参数】:@MethodConst1:2022-09-29 0:00:00 +@MethodConst2:-6 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= CAST( (DATE_ADD(@MethodConst1 , INTERVAL @MethodConst2 Day)) AS DATE) ) +-------------------------------- +2022-09-29 12:38:49| +【SQL参数】: +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`product`,`strand_speed` FROM `eqmt_base` +-------------------------------- +2022-09-29 12:38:49| +【SQL参数】:@Const0:2022-09-01 0:00:00 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`collect_id`,`eqmt_id`,`product_type`,`product_type_name`,`speed`,`total_product_qty`,`intraday_product_qty`,`intraday_ok_qty`,`intraday_ng_qty`,`intraday_yield_rate`,`intraday_eqmt_run_time`,`intraday_eqmt_work_time`,`intraday_eqmt_stop_time`,`intraday_eqmt_work_rate`,`intraday_eqmt_stop_times`,`eqmt_status`,`eqmt_except_flag`,`eqmt_alarm_flag`,`oee`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_pub_data` WHERE ( `gmt_create` >= @Const0 ) +-------------------------------- +2022-09-29 12:38:50| +【SQL参数】:@Const0:2022-09-01 0:00:00 + +【SQL语句】:SELECT `id`,`gmt_create`,`gmt_modified`,`eqmt_id`,`line_name`,`add_datetime`,`product`,`product_type`,`product_type_name`,`add_qty`,`add_qty_ok`,`add_qty_ng`,`add_during_time`,`oee`,`shift_complete_rate`,`eqmt_status`,`create_by`,`create_time`,`update_by`,`update_time`,`sys_org_code` FROM `eqmt_collect_add_data` WHERE ( `add_datetime` >= @Const0 ) diff --git a/yuhong_plc/zzz.Api/Log4net.config b/yuhong_plc/zzz.Api/Log4net.config new file mode 100644 index 0000000..ab6106d --- /dev/null +++ b/yuhong_plc/zzz.Api/Log4net.config @@ -0,0 +1,511 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/Program.cs b/yuhong_plc/zzz.Api/Program.cs new file mode 100644 index 0000000..4aff90f --- /dev/null +++ b/yuhong_plc/zzz.Api/Program.cs @@ -0,0 +1,145 @@ +using Autofac; +using Autofac.Extensions.DependencyInjection; +using zzz; +using zzz.Common; +using zzz.Common.LogHelper; +using zzz.Extensions; +using zzz.Extensions.Middlewares; +using zzz.Middlewares; +using zzz.Model.Entity; +using zzz.Repository; +using zzz.Services.Sys.TasksQzs; +using zzz.Tasks; +using SqlSugar; +using System.Reflection; +using Yitter.IdGenerator; +using zzz.Filter; +using Newtonsoft.Json; +using Newtonsoft.Json.Serialization; +using Newtonsoft.Json.Converters; +using zzz.Hubs; + +var builder = WebApplication.CreateBuilder(args); + +// 1host +builder.Host +.UseServiceProviderFactory(new AutofacServiceProviderFactory()) +.ConfigureContainer(builder => +{ + builder.RegisterModule(new AutofacModuleRegister()); + //builder.RegisterModule(); +}) +.ConfigureLogging((hostingContext, builder) => +{ + builder.AddFilter("System", LogLevel.Error); + builder.AddFilter("Microsoft", LogLevel.Error); + builder.SetMinimumLevel(LogLevel.Error); + builder.AddLog4Net(Path.Combine(Directory.GetCurrentDirectory(), "Log4net.config")); +}) +.ConfigureAppConfiguration((hostingContext, config) => +{ + config.Sources.Clear(); + config.AddJsonFile("appsettings.json", optional: true, reloadOnChange: false); +}) +; + +// Add services to the container. +builder.Services.AddSingleton(new Appsettings(builder.Configuration)); +builder.Services.AddSingleton(new LogLock(builder.Environment.ContentRootPath)); + +SqlsugarSetup.AddSqlsugarSetup(builder.Services); + +// Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson +builder.Services.AddSignalR().AddNewtonsoftJsonProtocol(); + +//builder.Services.AddControllers(); +// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle +//builder.Services.AddEndpointsApiExplorer(); +//builder.Services.AddSwaggerGen(c => +//{ +// c.SwaggerDoc("v1", new Microsoft.OpenApi.Models.OpenApiInfo() +// { +// Title="̨Apiĵ", Version="1.0.0", Description="~~" +// }); +// var bathPath = AppContext.BaseDirectory; +// var xmlPath = Path.Combine(bathPath, "zzz.Api.xml"); +// c.IncludeXmlComments(xmlPath,true); +//}); +builder.Services.AddSwaggerSetup(); +builder.Services.AddSqlsugarSetup(); +builder.Services.AddJobSetup(); +builder.Services.AddAutoMapperSetup(); +//builder.Services.AddMiniProfilerSetup(); + +// ѩidworkerIdȷÿʵworkerIdӦͬ +var workerId = (ushort)Appsettings.GetValue("SnowId: WorkerId").ObjToInt(1); +YitIdHelper.SetIdGenerator(new IdGeneratorOptions { WorkerId = workerId }); + +builder.Services.AddCors(options => +{ + options.AddPolicy("any", builder => + { + //builder.AllowAnyOrigin() //κԴ + builder + .WithOrigins("http://*.*.*.*")//.SetIsOriginAllowedToAllowWildcardSubdomains()//ʵ + .AllowAnyMethod() + .AllowAnyHeader() + .AllowCredentials();// + }); +}); + +builder.Services.AddControllers(o => +{ + o.Filters.Add(typeof(GlobalExceptionsFilter)); + //o.Conventions.Insert(0, new GlobalRouteAuthorizeConvention()); + //·ǰǰ׺ + //o.Conventions.Insert(0, new GlobalRoutePrefixFilter(new RouteAttribute(RoutePrefix.Name))); +}) +.AddNewtonsoftJson(options => +{ + options.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore; + options.SerializerSettings.ContractResolver = new DefaultContractResolver(); + options.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm:ss"; + //options.SerializerSettings.NullValueHandling = NullValueHandling.Ignore; + options.SerializerSettings.DateTimeZoneHandling = DateTimeZoneHandling.Local; + options.SerializerSettings.Converters.Add(new StringEnumConverter()); +}); +builder.Services.AddEndpointsApiExplorer(); + +var app = builder.Build(); + +// Configure the HTTP request pipeline. +app.UseSwaggerMiddle(); +//if (app.Environment.IsDevelopment()) +//{ +// app.UseSwaggerMiddle(); +//} + +app.UseMiddleware(); +app.UseMiddleware(); + +app.UseRouting(); + +app.UseAuthorization(); +//app.UseMiniProfilerMiddleware(); + +app.UseMiddleware(); +//app.MapControllers(); +app.UseEndpoints(endpoints => +{ + endpoints.MapControllerRoute( + name: "default", + pattern: "{controller=Home}/{action=Index}/{id?}"); + + endpoints.MapHub("/api2/chatHub"); +}); + +var scope = app.Services.GetRequiredService().CreateScope(); +var sqlSugarRep = scope.ServiceProvider.GetRequiredService(); +//var tasksQzServices = scope.ServiceProvider.GetRequiredService(); +var tasksRep = scope.ServiceProvider.GetRequiredService>(); +var schedulerCenter = scope.ServiceProvider.GetRequiredService(); +app.UseSeedDataMiddle(sqlSugarRep, builder.Environment.WebRootPath); +app.UseQuartzJobMiddleware(tasksRep, schedulerCenter); + +app.Run(); \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/Properties/PublishProfiles/FolderProfile.pubxml b/yuhong_plc/zzz.Api/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 0000000..ef3dadb --- /dev/null +++ b/yuhong_plc/zzz.Api/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,20 @@ + + + + + true + false + true + Debug + Any CPU + FileSystem + F:\yuhong_plc\YuHongPpublishs + FileSystem + + net6.0 + 139f3979-038e-4186-b065-1b835cd9aaa7 + false + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/Properties/PublishProfiles/FolderProfile.pubxml.user b/yuhong_plc/zzz.Api/Properties/PublishProfiles/FolderProfile.pubxml.user new file mode 100644 index 0000000..f41426d --- /dev/null +++ b/yuhong_plc/zzz.Api/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -0,0 +1,10 @@ + + + + + <_PublishTargetUrl>F:\yuhong_plc\YuHongPpublishs + True|2022-12-14T17:32:27.2577912Z;True|2022-12-14T16:02:06.1861696+08:00;True|2022-12-14T15:49:33.1192620+08:00;True|2022-12-14T15:47:03.6321446+08:00;True|2022-12-14T15:40:36.0166085+08:00;True|2022-12-14T15:31:54.5782125+08:00;True|2022-12-01T13:16:00.8660325+08:00;True|2022-11-30T14:54:45.0754417+08:00;True|2022-11-30T14:40:43.0289595+08:00;True|2022-11-30T13:59:43.1669178+08:00;True|2022-11-30T13:51:27.5604661+08:00;True|2022-11-30T12:35:09.1672613+08:00;True|2022-11-25T23:07:30.8607474+08:00;True|2022-11-11T14:43:59.2306926+08:00;True|2022-11-11T14:38:16.1658249+08:00;True|2022-11-11T14:28:52.8073354+08:00;True|2022-11-11T14:22:48.1835338+08:00;True|2022-11-09T08:40:22.6564066+08:00;True|2022-11-09T08:36:39.6159080+08:00;True|2022-11-08T11:12:01.4222539+08:00;False|2022-11-08T11:09:27.1235428+08:00;False|2022-11-08T11:07:59.3756382+08:00;True|2022-11-08T10:59:25.3262522+08:00;True|2022-11-03T14:50:41.5051262+08:00;True|2022-11-03T14:50:12.6413257+08:00;True|2022-11-03T14:37:58.1558940+08:00;True|2022-11-02T15:23:39.6016288+08:00;True|2022-11-02T15:17:38.8679856+08:00;True|2022-07-18T18:35:11.9485680+08:00;True|2022-07-18T18:28:30.5311695+08:00;True|2022-07-18T17:28:45.6268182+08:00;True|2022-07-18T17:25:29.2031139+08:00;True|2022-07-18T16:21:17.6656685+08:00;True|2022-07-14T15:15:26.2815725+08:00;True|2022-07-14T08:39:47.1293821+08:00;True|2022-07-13T17:34:53.0519389+08:00;False|2022-07-13T17:34:28.9683481+08:00;True|2022-07-13T16:40:45.5241664+08:00;True|2022-07-13T15:42:34.4248729+08:00;True|2022-07-13T15:24:06.1415383+08:00;False|2022-07-13T15:23:49.1323832+08:00;True|2022-07-13T09:00:05.7219953+08:00;True|2022-07-12T10:31:10.2119764+08:00;True|2022-07-12T10:01:03.0658696+08:00;False|2022-07-12T09:55:47.6553323+08:00;True|2022-06-23T16:07:32.8938160+08:00;True|2022-06-09T15:19:05.5151860+08:00;True|2022-06-07T16:00:23.7091379+08:00;True|2022-06-03T16:19:48.4967048+08:00;True|2022-06-03T16:18:34.9696902+08:00;True|2022-06-03T16:18:05.4593667+08:00;True|2022-06-03T16:01:04.9672254+08:00;True|2022-06-03T15:55:11.5303033+08:00;True|2022-06-03T15:46:39.3278914+08:00;True|2022-06-03T15:35:18.0389686+08:00;True|2022-06-03T15:34:37.3680112+08:00;True|2022-06-03T15:33:20.2715129+08:00;True|2022-06-03T15:21:35.8350619+08:00; + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/Properties/launchSettings.json b/yuhong_plc/zzz.Api/Properties/launchSettings.json new file mode 100644 index 0000000..ad16be0 --- /dev/null +++ b/yuhong_plc/zzz.Api/Properties/launchSettings.json @@ -0,0 +1,31 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:56787", + "sslPort": 0 + } + }, + "profiles": { + "zzz.Api": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "http://localhost:5259", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/yuhong_plc/zzz.Api/WeatherForecast.cs b/yuhong_plc/zzz.Api/WeatherForecast.cs new file mode 100644 index 0000000..e86da20 --- /dev/null +++ b/yuhong_plc/zzz.Api/WeatherForecast.cs @@ -0,0 +1,13 @@ +namespace zzz.Api +{ + public class WeatherForecast + { + public DateTime Date { get; set; } + + public int TemperatureC { get; set; } + + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + + public string? Summary { get; set; } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/appsettings.Development.json b/yuhong_plc/zzz.Api/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/yuhong_plc/zzz.Api/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/yuhong_plc/zzz.Api/appsettings.json b/yuhong_plc/zzz.Api/appsettings.json new file mode 100644 index 0000000..414ab6a --- /dev/null +++ b/yuhong_plc/zzz.Api/appsettings.json @@ -0,0 +1,70 @@ +{ + //���ݿ����� /* MySql=0;SqlServer=1;Sqlite=2;Oracle=3;PostgreSQL=4;Dm=5;;;;;;;;*/ + "DBType": 0, + //���ݿ������ַ��� + "ConnectionStrings": { + "Sqlite": "Data Source=./Magic.db", + "SqlServer": "Server=BLACK; Database=zzzTest01; User=sa; Password=123456zls!;MultipleActiveResultSets=True;", + //"MySql": "Data Source=150.158.169.212;Database=cjyx;User ID=base;Password=123456;pooling=true;port=3306;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;", + "MySql": "Data Source=222.71.165.187;Database=cjyx;User ID=root;Password=qawsed,.123;pooling=true;port=3309;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;" + //"MySql": "Data Source=101.34.35.69;Database=cjyx_wm;User ID=base;Password=123456;pooling=true;port=3306;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;" + }, + //�Զ��������ݿ� + "SeedDBEnabled": false, + //�Զ���ʼ������ + "SeedDBDataEnabled": false, + //Logд��DB + "LogToDb": false, + + //Logging���� + "Logging": { + "LogLevel": { + "Default": "Information", //����Default����log4net����д�벻����־ + "zzz.AuthHelper.ApiResponseHandler": "Error" + }, + "Debug": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning" + } + }, + "Console": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning", + "Microsoft.Hosting.Lifetime": "Debug" + } + }, + "Log4Net": { + "Name": "zzz" + } + }, + "AllowedHosts": "*", + //�м������ + "Middleware": { + //��ʱ���� + "QuartzNetJob": true, + //����д��Log + "RequestResponseLog": true, + //���ܷ��� + "MiniProfiler": true, + "SignalR": true + }, + //Aop���� + "Aop": { + "LogAOP": true, + "TranAOP": true, + "SqlAOP": { + "OutToLogFile": true, + "OutToConsole": true + } + }, + //�ܼ���Api���� + "Gjp": { + "BasicUrl": "http://api.cmgrasp.com/CMGraspApi/GateWay", + "AppKey": "80DDA4A9D5804DA4B0887104529523C2", + "SercretKey": "EE379CED41C748B49024FC8CD81B5909", + "userid": "10488149", + "dbname": "M7215API����" + } +} diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll new file mode 100644 index 0000000..d8c1c58 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/AutoMapper.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/AutoMapper.dll new file mode 100644 index 0000000..7699210 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/AutoMapper.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Autofac.Extensions.DependencyInjection.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Autofac.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..ecbb4c9 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Autofac.Extensions.DependencyInjection.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Autofac.Extras.DynamicProxy.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Autofac.Extras.DynamicProxy.dll new file mode 100644 index 0000000..30922cf Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Autofac.Extras.DynamicProxy.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Autofac.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Autofac.dll new file mode 100644 index 0000000..fa2fdf5 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Autofac.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/BouncyCastle.Crypto.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/BouncyCastle.Crypto.dll new file mode 100644 index 0000000..395228b Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/BouncyCastle.Crypto.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Castle.Core.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Castle.Core.dll new file mode 100644 index 0000000..527172e Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Castle.Core.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/DmProvider.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/DmProvider.dll new file mode 100644 index 0000000..7f92f58 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/DmProvider.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Google.Protobuf.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Google.Protobuf.dll new file mode 100644 index 0000000..cf2e030 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Google.Protobuf.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/HslCommunication.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/HslCommunication.dll new file mode 100644 index 0000000..649961a Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/HslCommunication.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/K4os.Compression.LZ4.Streams.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/K4os.Compression.LZ4.Streams.dll new file mode 100644 index 0000000..42f55d6 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/K4os.Compression.LZ4.Streams.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/K4os.Compression.LZ4.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/K4os.Compression.LZ4.dll new file mode 100644 index 0000000..718ebb3 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/K4os.Compression.LZ4.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/K4os.Hash.xxHash.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/K4os.Hash.xxHash.dll new file mode 100644 index 0000000..4179a29 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/K4os.Hash.xxHash.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Kdbndp.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Kdbndp.dll new file mode 100644 index 0000000..af774bb Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Kdbndp.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Log/RequestResponseLog.log b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Log/RequestResponseLog.log new file mode 100644 index 0000000..387b922 --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Log/RequestResponseLog.log @@ -0,0 +1,11 @@ +-------------------------------- +2022-11-02 14:47:18| +Request Data: + QueryData:/api/Test/TestRead15 + BodyData: + +-------------------------------- +2022-11-02 14:47:39| +Response Data: +OK + diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Log4net.config b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Log4net.config new file mode 100644 index 0000000..ab6106d --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Log4net.config @@ -0,0 +1,511 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/MicroKnights.Log4NetAdoNetAppender.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/MicroKnights.Log4NetAdoNetAppender.dll new file mode 100644 index 0000000..4fd54e0 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/MicroKnights.Log4NetAdoNetAppender.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 0000000..85586ae Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.AspNetCore.JsonPatch.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.AspNetCore.JsonPatch.dll new file mode 100644 index 0000000..cab786e Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.AspNetCore.JsonPatch.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll new file mode 100644 index 0000000..3393ce2 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.AspNetCore.SignalR.Common.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100644 index 0000000..cc430da Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll new file mode 100644 index 0000000..b7f8005 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..7131196 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Data.Sqlite.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..5929124 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Data.Sqlite.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..b84fb11 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..02b9f97 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Extensions.Features.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Extensions.Features.dll new file mode 100644 index 0000000..71bca4a Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Extensions.Features.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll new file mode 100644 index 0000000..66eb022 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Identity.Client.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Identity.Client.dll new file mode 100644 index 0000000..c01fcbf Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Identity.Client.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..70b84f2 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..7ecc3be Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..d925b5b Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..17423cc Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..dd66624 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.OpenApi.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.OpenApi.dll new file mode 100644 index 0000000..14f3ded Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.OpenApi.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..e27fe8d Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/MiniProfiler.AspNetCore.Mvc.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/MiniProfiler.AspNetCore.Mvc.dll new file mode 100644 index 0000000..61610c8 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/MiniProfiler.AspNetCore.Mvc.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/MiniProfiler.AspNetCore.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/MiniProfiler.AspNetCore.dll new file mode 100644 index 0000000..bd60830 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/MiniProfiler.AspNetCore.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/MiniProfiler.Shared.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/MiniProfiler.Shared.dll new file mode 100644 index 0000000..5f3f7e0 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/MiniProfiler.Shared.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/MySql.Data.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/MySql.Data.dll new file mode 100644 index 0000000..c4eb61b Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/MySql.Data.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Newtonsoft.Json.Bson.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Newtonsoft.Json.Bson.dll new file mode 100644 index 0000000..e9b1dd2 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Newtonsoft.Json.Bson.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Newtonsoft.Json.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Newtonsoft.Json.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Npgsql.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Npgsql.dll new file mode 100644 index 0000000..7b2d4a0 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Npgsql.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Oracle.ManagedDataAccess.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Oracle.ManagedDataAccess.dll new file mode 100644 index 0000000..50822b9 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Oracle.ManagedDataAccess.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Quartz.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Quartz.dll new file mode 100644 index 0000000..9b4b363 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Quartz.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/SQLitePCLRaw.batteries_v2.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..c51a77d Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/SQLitePCLRaw.batteries_v2.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/SQLitePCLRaw.core.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..d995f27 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/SQLitePCLRaw.core.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/SQLitePCLRaw.nativelibrary.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/SQLitePCLRaw.nativelibrary.dll new file mode 100644 index 0000000..7bb1b03 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/SQLitePCLRaw.nativelibrary.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/SQLitePCLRaw.provider.dynamic_cdecl.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/SQLitePCLRaw.provider.dynamic_cdecl.dll new file mode 100644 index 0000000..2be5647 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/SQLitePCLRaw.provider.dynamic_cdecl.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Scrutor.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Scrutor.dll new file mode 100644 index 0000000..06eb31e Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Scrutor.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Serilog.Sinks.File.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Serilog.Sinks.File.dll new file mode 100644 index 0000000..29dc2fd Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Serilog.Sinks.File.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Serilog.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Serilog.dll new file mode 100644 index 0000000..e040a8a Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Serilog.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/SqlSugar.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/SqlSugar.dll new file mode 100644 index 0000000..2313b7b Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/SqlSugar.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll new file mode 100644 index 0000000..2c44bb5 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.Filters.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.Filters.dll new file mode 100644 index 0000000..7be1d8a Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.Filters.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll new file mode 100644 index 0000000..61534e9 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..88995c9 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..6afe2f0 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..a26f458 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..6f34b8d Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..3300cff Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..ffc64e4 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.DirectoryServices.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.DirectoryServices.dll new file mode 100644 index 0000000..b361d18 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.DirectoryServices.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Drawing.Common.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..69e5f5c Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Drawing.Common.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.IO.Pipelines.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.IO.Pipelines.dll new file mode 100644 index 0000000..8ee4dfd Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.IO.Pipelines.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..efd3c61 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Net.WebSockets.WebSocketProtocol.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Net.WebSockets.WebSocketProtocol.dll new file mode 100644 index 0000000..b6a723a Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Net.WebSockets.WebSocketProtocol.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Runtime.Caching.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..6fedfab Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Runtime.Caching.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..a60b95b Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Security.Permissions.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Security.Permissions.dll new file mode 100644 index 0000000..76faf41 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Security.Permissions.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Windows.Extensions.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..7f075b2 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/System.Windows.Extensions.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Ubiety.Dns.Core.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Ubiety.Dns.Core.dll new file mode 100644 index 0000000..b10ecf2 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Ubiety.Dns.Core.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/WebApiClient.Extensions.DependencyInjection.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/WebApiClient.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..f6580f4 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/WebApiClient.Extensions.DependencyInjection.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/WebApiClient.JIT.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/WebApiClient.JIT.dll new file mode 100644 index 0000000..c68d9b5 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/WebApiClient.JIT.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/Yitter.IdGenerator.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Yitter.IdGenerator.dll new file mode 100644 index 0000000..7eb8700 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/Yitter.IdGenerator.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/ZstdNet.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/ZstdNet.dll new file mode 100644 index 0000000..bc60788 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/ZstdNet.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/appsettings.Development.json b/yuhong_plc/zzz.Api/bin/Debug/net6.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Debug/net6.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/appsettings.json b/yuhong_plc/zzz.Api/bin/Debug/net6.0/appsettings.json new file mode 100644 index 0000000..414ab6a --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Debug/net6.0/appsettings.json @@ -0,0 +1,70 @@ +{ + //���ݿ����� /* MySql=0;SqlServer=1;Sqlite=2;Oracle=3;PostgreSQL=4;Dm=5;;;;;;;;*/ + "DBType": 0, + //���ݿ������ַ��� + "ConnectionStrings": { + "Sqlite": "Data Source=./Magic.db", + "SqlServer": "Server=BLACK; Database=zzzTest01; User=sa; Password=123456zls!;MultipleActiveResultSets=True;", + //"MySql": "Data Source=150.158.169.212;Database=cjyx;User ID=base;Password=123456;pooling=true;port=3306;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;", + "MySql": "Data Source=222.71.165.187;Database=cjyx;User ID=root;Password=qawsed,.123;pooling=true;port=3309;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;" + //"MySql": "Data Source=101.34.35.69;Database=cjyx_wm;User ID=base;Password=123456;pooling=true;port=3306;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;" + }, + //�Զ��������ݿ� + "SeedDBEnabled": false, + //�Զ���ʼ������ + "SeedDBDataEnabled": false, + //Logд��DB + "LogToDb": false, + + //Logging���� + "Logging": { + "LogLevel": { + "Default": "Information", //����Default����log4net����д�벻����־ + "zzz.AuthHelper.ApiResponseHandler": "Error" + }, + "Debug": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning" + } + }, + "Console": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning", + "Microsoft.Hosting.Lifetime": "Debug" + } + }, + "Log4Net": { + "Name": "zzz" + } + }, + "AllowedHosts": "*", + //�м������ + "Middleware": { + //��ʱ���� + "QuartzNetJob": true, + //����д��Log + "RequestResponseLog": true, + //���ܷ��� + "MiniProfiler": true, + "SignalR": true + }, + //Aop���� + "Aop": { + "LogAOP": true, + "TranAOP": true, + "SqlAOP": { + "OutToLogFile": true, + "OutToConsole": true + } + }, + //�ܼ���Api���� + "Gjp": { + "BasicUrl": "http://api.cmgrasp.com/CMGraspApi/GateWay", + "AppKey": "80DDA4A9D5804DA4B0887104529523C2", + "SercretKey": "EE379CED41C748B49024FC8CD81B5909", + "userid": "10488149", + "dbname": "M7215API����" + } +} diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/log4net.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/log4net.dll new file mode 100644 index 0000000..3d6a0a6 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/log4net.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/ref/zzz.Api.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/ref/zzz.Api.dll new file mode 100644 index 0000000..0d69d48 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/ref/zzz.Api.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/alpine-x64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/alpine-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/alpine-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-arm/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..6b0158a Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-arm64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..7c590b7 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-armel/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..bc22810 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-mips64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..c82d186 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-x64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..484bfc2 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-x86/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..d4c96f7 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/osx-x64/native/libe_sqlite3.dylib b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3b9e7a4 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..3a19d3d Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..3fc08e4 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..3068646 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-arm/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..d019891 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..965f535 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-arm64/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..d8b3149 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..227b87b Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-x64/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..8d3ca0c Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..0add8c2 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-x86/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..3ad1bc9 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..9d5fe02 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..c9f3075 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll new file mode 100644 index 0000000..04879ec Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..c49c358 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..9a04b68 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..3fb4939 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..c4b9b5d Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..175d085 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..d8f2f45 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.deps.json b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.deps.json new file mode 100644 index 0000000..ebdd1fd --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.deps.json @@ -0,0 +1,3725 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Api/1.0.0": { + "dependencies": { + "Autofac.Extensions.DependencyInjection": "7.2.0", + "MicroKnights.Log4NetAdoNetAppender": "2.2.0", + "zzz.Extensions": "1.0.0" + }, + "runtime": { + "zzz.Api.dll": {} + } + }, + "Autofac/6.3.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net5.0/Autofac.dll": { + "assemblyVersion": "6.3.0.0", + "fileVersion": "6.3.0.0" + } + } + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "dependencies": { + "Autofac": "6.3.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + }, + "runtime": { + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.2.0.0" + } + } + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "dependencies": { + "Autofac": "6.3.0", + "Castle.Core": "4.4.0" + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.1.0" + } + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Castle.Core/4.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.4.0.0" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "HslCommunication/7.0.1": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": { + "assemblyVersion": "7.0.1.0", + "fileVersion": "7.0.1.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "MicroKnights.Log4NetAdoNetAppender/2.2.0": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "lib/netstandard2.1/MicroKnights.Log4NetAdoNetAppender.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "dependencies": { + "Microsoft.Extensions.Features": "6.0.5", + "System.IO.Pipelines": "6.0.3" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0" + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.0", + "Newtonsoft.Json": "13.0.1", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Newtonsoft.Json": "13.0.1", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "6.0.0-rc.1.21452.15", + "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + } + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections": "1.1.0", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0" + } + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.5.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Net.WebSockets.WebSocketProtocol": "4.5.1" + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.Extensions.Features/6.0.5": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Features.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {}, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll": { + "assemblyVersion": "6.1.0.0", + "fileVersion": "6.1.0.0" + } + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": {}, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MiniProfiler.AspNetCore/4.2.22": { + "dependencies": { + "MiniProfiler.Shared": "4.2.22", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "dependencies": { + "MiniProfiler.AspNetCore": "4.2.22" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.Shared/4.2.22": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.ComponentModel.Primitives": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Quartz/3.4.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.0.0" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "Scrutor/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "13.0.1", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + } + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.OpenApi": "1.2.3", + "Scrutor": "3.3.0", + "Swashbuckle.AspNetCore.Filters.Abstractions": "7.0.2", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.0-rc.1.21452.15", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/1.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Pipelines/6.0.3": { + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21309" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "runtime": { + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26606.5" + } + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.4.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "dependencies": { + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "zzz.Extensions/1.0.0": { + "dependencies": { + "Autofac": "6.3.0", + "Autofac.Extras.DynamicProxy": "6.0.1", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.SignalR": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson": "6.0.5", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.Log4Net.AspNetCore": "6.1.0", + "MiniProfiler.AspNetCore.Mvc": "4.2.22", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Filters": "7.0.2", + "Swashbuckle.AspNetCore.Newtonsoft": "6.3.1", + "log4net": "2.0.14", + "zzz.Services": "1.0.0", + "zzz.Tasks": "1.0.0" + }, + "runtime": { + "zzz.Extensions.dll": {} + } + }, + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "runtime": { + "zzz.Repository.dll": {} + } + }, + "zzz.Services/1.0.0": { + "dependencies": { + "HslCommunication": "7.0.1", + "zzz.Repository": "1.0.0" + }, + "runtime": { + "zzz.Services.dll": {} + } + }, + "zzz.Tasks/1.0.0": { + "dependencies": { + "Quartz": "3.4.0", + "zzz.Services": "1.0.0" + }, + "runtime": { + "zzz.Tasks.dll": {} + } + } + } + }, + "libraries": { + "zzz.Api/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Autofac/6.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gO4bli0N8tDnBHzbYktcnbXlmN6T+IT5W+FUGgCUaM6pwwHXIxOPoUGvfGum7sZpJJgfQNgjFFv80ZPuARgRdA==", + "path": "autofac/6.3.0", + "hashPath": "autofac.6.3.0.nupkg.sha512" + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S2Jor8pTV+8QSs96ENq/FhGdnrWsntGs93z0OXYlIivUWGPNXQHNCjFPfSBeBlHClvJFEXMvlkY32bAKy2YkPg==", + "path": "autofac.extensions.dependencyinjection/7.2.0", + "hashPath": "autofac.extensions.dependencyinjection.7.2.0.nupkg.sha512" + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ulCOXUjbJ5dljBPZf3gRxQNPRGqg/h1cNTZ4SpXK3qiamTfRsW3gXs2w/IJ+CIDmHrFGYXLqzNd5etvzwB8kA==", + "path": "autofac.extras.dynamicproxy/6.0.1", + "hashPath": "autofac.extras.dynamicproxy.6.0.1.nupkg.sha512" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Castle.Core/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "path": "castle.core/4.4.0", + "hashPath": "castle.core.4.4.0.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "HslCommunication/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "path": "hslcommunication/7.0.1", + "hashPath": "hslcommunication.7.0.1.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "MicroKnights.Log4NetAdoNetAppender/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FryL/5pLWynP8znM5LTXd4M+DmD+Ftls5D8IlyMwCbH7MFWviLyNvGneJZFjmdXschal5lTUOB3Cs1FkEPs7tQ==", + "path": "microknights.log4netadonetappender/2.2.0", + "hashPath": "microknights.log4netadonetappender.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OBbGvih5/CLHTbJVDiJ203TmKXCx8z539O2YGnfHmExbNtMwyQ9rgpqoxyYEVvQrVsqxRhXfh57DOCQYhxcOBQ==", + "path": "microsoft.aspnetcore.connections.abstractions/6.0.5", + "hashPath": "microsoft.aspnetcore.connections.abstractions.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BAibpoItxI5puk7YJbIGj95arZueM8B8M5xT1fXBn3hb3L2G3ucrZcYXv1gXdaroLbntUs8qeV8iuBrpjQsrKw==", + "path": "microsoft.aspnetcore.http/2.2.2", + "hashPath": "microsoft.aspnetcore.http.2.2.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==", + "path": "microsoft.aspnetcore.http.connections/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mYk5QUUjyXQmlyDHWDjkLYDArt97plwe6KsDsNVhDEQ+HgZMKGjISyM6YSA7BERQNR25kXBTbIYfSy1vePGQgg==", + "path": "microsoft.aspnetcore.http.connections.common/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+27ce/d0w7jyEmCCMrzwFRg6PHZxQ37Fmnf+es1qQudbip2rryxPdM8TRoXT6wNtdlzqHnIyXTtLjSs0uIDhxA==", + "path": "microsoft.aspnetcore.jsonpatch/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.jsonpatch.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/dspuIknGgOdBygH3bmjsIH5neuuJ7DHILXrKVPAoCykPARAIUBckZlIW6RrYqmbGTZYT/YFCzr/xDR5f0YiAA==", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "path": "microsoft.aspnetcore.routing/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==", + "path": "microsoft.aspnetcore.signalr/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N+MF6rs64kDDJ4zroD/NqRgXVSEkj/ppTX36AB2S43qm1y64YqWMCFCzLshkmi7SwWwQQPIByTNZDJfz4x7GjQ==", + "path": "microsoft.aspnetcore.signalr.common/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.common.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/7VUbkomGE7ph6R1JTtMji5QPGqesyCSeELFmfylaqFM+SdWf9EmbU3SCQPcIWhfv+RgbUWmTNfWWPzmVDTggw==", + "path": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==", + "path": "microsoft.aspnetcore.websockets/2.2.0", + "hashPath": "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" + }, + "Microsoft.Extensions.Features/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7KLF1jRFQjSttfoilwHU86cU9ZgxN4ABfQR8tQ9qEC5AzTGYIX+K5RDwGFVK320eTiBwWuutV24ecmxBxo7Eg==", + "path": "microsoft.extensions.features/6.0.5", + "hashPath": "microsoft.extensions.features.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qHb3GudscgrgEVByh86kAq3FMmjOdPIVoqvff3eokEP+QkZHzr42l4PlgxBsqhhlIX02SazC7ZdbfiFGDPRv9A==", + "path": "microsoft.extensions.logging.log4net.aspnetcore/6.1.0", + "hashPath": "microsoft.extensions.logging.log4net.aspnetcore.6.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "path": "microsoft.extensions.objectpool/2.2.0", + "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "path": "microsoft.net.http.headers/2.2.0", + "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2FpFllO0wFJmfIXY9NXr33jWgr88b7E4gAuPHSNYzNr5o2XIouynxAoLA+SShuDI2ySSsvnBHURiXRX7tz59YA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MiniProfiler.AspNetCore/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bBirB5d4Q0Bgx05Zg4yzXSmOHZQV4ZJhmxU3DGya4FZxNBwjaVHchqEKY0MJW5XLZo8axMAQm4yywgCvUlTymA==", + "path": "miniprofiler.aspnetcore/4.2.22", + "hashPath": "miniprofiler.aspnetcore.4.2.22.nupkg.sha512" + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nzCEaZnh77U9jw+c/qu4CtwYUpHEf+FH1ZMbYKMzIXr8CNNPlypSR6AJEAwjo3bq9TIJIpBMZIaK3inRLUCg4g==", + "path": "miniprofiler.aspnetcore.mvc/4.2.22", + "hashPath": "miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512" + }, + "MiniProfiler.Shared/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==", + "path": "miniprofiler.shared/4.2.22", + "hashPath": "miniprofiler.shared.4.2.22.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/6XtTu0ZHzge7tzZZN8UXpwG1K0Vgxi7C7R0QiTgxMtN4gkzNl4xNVUI4X3tymMwKWUdwqXvzkrJqt3MdMFXig==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Quartz/3.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N8350OAlQhd8zKg0ARFikGjh3bfAW/CF/KVxu2fTIlAALB/oC1eg54n/QAPYR5ryHuYyDr5G8/Qa4k+D/7OFRQ==", + "path": "quartz/3.4.0", + "hashPath": "quartz.3.4.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kuvqViO3OnqjWcNSQfanREtHgqJx6UK5UHPeIl7M666izpBErP4TDZctWnYvuz7l/hpWPkS3DsUAUPAyVS/zBA==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QnpBRH8jHD/TtGA5fjrdK/BRf+Oslt/M/X+r487ByPS2q+EZUNwEiaoPUuZcqFcLwqAY2Fw7SciCHTPiK2GTqg==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i/u0Svwgj6JM9SpaoJAqTiMU3B0UZEUC35JadEBgkihBi+RzyRe2VlGwhZ6B63r78CmzZ/VAYNXvLAnoIaRG/A==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOKLiiK96F+8pPB+ALL20VFsTDBolLfysxlBZDGlFXDEBEZfdfm4OYuInLtxYHCUSxpJpPivIYm9jasMzfgzEQ==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSKGjRiQWUHf2zpiRD3+q8lzjL89HhiR74cevVqShwVHtDEHjAhDU75w6mPdeFg9QSyqI32Ud3Qskr5WHNCw+g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "Scrutor/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "path": "scrutor/3.3.0", + "hashPath": "scrutor.3.3.0.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "path": "swashbuckle.aspnetcore/6.2.3", + "hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pjj/BdKFcXX1tdUrVjfW6SiRSiHC4dOnqszhU2PuS0RBXZUnGM18tXUrNU2pgPkSjWUnCiyvbjd3GBkEuNTBYA==", + "path": "swashbuckle.aspnetcore.filters/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RqZ+P+m2cw1TVsU9LUHNdLf4Ww7YSqDRt7UHRzauZJnRztDlNR4doOGzXLmWZzq+3CfZyS7NEsQyJmf4Y+7GMQ==", + "path": "swashbuckle.aspnetcore.filters.abstractions/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oy6BwAX+tcKO13n9bw3nPtITBvD03bAHDN2+lTaOY/cUNcQE/liu3xWjbkdhLeNTUiC+7h+lJvR7KUdI7CXz0w==", + "path": "swashbuckle.aspnetcore.newtonsoft/6.3.1", + "hashPath": "swashbuckle.aspnetcore.newtonsoft.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-idAFh4xhyJHYHfdLVOOn+BmscBul1OQbWsnL6YPJE8tO/0y6S79hDCvs6OY5VI093/9+1pYY3j31Zet9yaDZjA==", + "path": "swashbuckle.aspnetcore.swagger/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+uoBV4h/6NhCPLoTofSmuOnZ+usu4PW1jP6l4OHwPyu2frbYXGNpJsHs5uUXXn929OiVQkT8wo3Lj/o+P99Ejg==", + "path": "swashbuckle.aspnetcore.swaggergen/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wvyiJIm0HlaoN+AlJXhTpDrhYkN28OC/nEun5QpbPkZvbpgWSYvZ8Hr9/G4Bd1I0WSmFW18KQuE5DOA05Uubrw==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wAdmaCgCSe298gCNvAf6vlVPfQUR7h43Qr2tTtJFYeto/OvttRLyG4ch6/R2FpuWRMfxHBsAeHYrzjvEk1UM+Q==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Un05L1TLTGqBBRKAFngtzovaNeFL1EGzuUwW0AiTotM/GUWVE0c0xH4owZgdJ6nf6DuK866gbLqD3c/Ms7KSOg==", + "path": "system.collections.immutable/1.3.0", + "hashPath": "system.collections.immutable.1.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sRo7MpbD5VnFdLZA/uVuR5YJdDV4i+DyJTpQ1rk92wCzLE4cXJ+q7tzGr2HwkL/ujeFNcPo/fOs7LKdDyeyupA==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wJLrK/MQdlF3TmfNouxSsgtCRhsgx4tz2KdY/mpvirOcgMc2W4DDK7vR6RcSc6XRV4P6rzrLFXd9wUzp/iWp0g==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aX7O7aytoclkwEvOv4vCDBP2hDVsrAbQVAOJXUka7qCXbbZcqtv8CKrX646dSERl9aO/tY0/g2ezsa4jBAMQOg==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6jD8gKBZvTfp1PEuqAkpMZvG9hF+gzGIvhvRh0K2qDApsiEpRZ9ZUlWE2nACpPdWP8w3DaL0TQAHuA7gXDSupA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "path": "system.diagnostics.tracesource/4.3.0", + "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ChcZW/eQtXpPDW7qMqlqK7xGW4A8hhz7/iY4J5hsvhzPsza7Cml+hdBhm5vAh6KhHcXzMvjfLcbChmZsYPlJsA==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zf/fX6NjK+eL01E0a5+pZb2NaitHwaVPlh7Wc62+wpnAtn1hA0ye8WAMV4r8DJv+AghKZYBwQwGqZJ9ikWLLkw==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ttt2PGgBfejL4xBEdMMd2E+Mqn/wC47jhMBtqRNJeH6uYa2j3fTDi1Jj1hAY5sfgbJcrvfSO46G1pufONMmfmA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kzMaA/htO8n7p5FQvyVXA9Q66+LntW+m0vp+Vnl5gSWsc6btlIYIC3aXs3DvtvdV0ue1tX/Mslkiei1vLgh3WA==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yn4CfuDOHBxI0b6JNSQJGqCIsuEqcjxQIAxktq316Jhz9Q0aRKqqGN7QNwd5fyNqz7mNMXfKDt1bJrtggkt8/g==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kRj3owqKUOxPcvQpK0VItuLGg/aXPjUxzT5ujrfMW0RrAQ7FJYB+mFiCawtGQVQatVCKr78TX39cJueK9ic8wA==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1d5+nGi+bWLgg0/wPO1IKJGSIe8Gy+WsMoT11T472mWHryC/qCISRl/v9w4rmk+72uX/1DFgBjBljUXyAK4jNg==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BnZgb92GKxi/DjV7WbZo2Sm7G8pImuLocQAHIkuFrRExeBMyjX0sIRY039HbnBObE7t5ihxRP3wYPSJ0Zt/apQ==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "path": "system.io.pipelines/6.0.3", + "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dGfhVR2KQhRwrl0D8yb8gJLpr2iX4Hnud1oNRwUbafrqskstG2kC3NMNp/t7QRzdb1mlNqc99F2OjXYKyHzdnA==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MHtkLrHBt/UkTMLaBYgCgrm2WBogOkEjDRlNJSxy18uQWEMN4ymSywGNwNHS8ATNyaGJzddvmdWI/UjLaLyskg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6sVcH1+qeVKf7xD/7k0ouAA7830LIw7Ltwo4bEl9ExyRVN/YNUhka9CBcd2Pp4Ugn14/cIY/i39bSTMUOmftFw==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S70uFEyXRAuRBxWsQWyVciioHMGOYxpob7a/TNchHKF9ceQPktdtcdl3/vktvUJU8B5ES7lG1wkglSWXYKHjcA==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==", + "path": "system.net.websockets.websocketprotocol/4.5.1", + "hashPath": "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TqRGJ6R6S9VpsXm2GpRy87TFXMxVqtYMrZtQFZHNJadQ1njAlpp0F5PfsWH04UNZWeY9X1jK+Kr8faJREA1kfg==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-13ihEbKKWpJYwZpo1kcDv2kW8eCK9twslQXpuqW/ulpHFhB2vuxbCuQgllNLjiSuL3uEKSPz34wC0xRb5hY9OA==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cYyPyIPBNlROATH5CjGQpvFhPdCrkDyVpChahZmpZlpXE4wQS+f6fUl+A/16U8/IShAiS3ofjX6bHuwRyHHWbQ==", + "path": "system.reflection.metadata/1.4.1", + "hashPath": "system.reflection.metadata.1.4.1.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJGsxoZ+9PXn+Qdjc5Nk6yJVqLk8lRR3k3uEGja59sC1EbkzMbVMqPFNOQmYxaO5Fbid8Bm29o+rB/PdDCDXNw==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yhyMfLA28dYAFahmTy+lM6rDrrca84R76fk8J0GH9gdtcZe6NuA7bWhLOCcWOEi74jZOIjtjtRPzkdSv6KlATQ==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-djZnX43T2YuLt526S/mq2pBiHQS8WfAUAg/nOt+oz6MkTo6HKAANCytQEFXmv6jyrumb8ohYe3ht2sEUMi9LMQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jw3ielASDELVDT+VPsL6PGRHp50mytxUnVp7UlKZWS3l5cxWAhZIWfTiunuqyy90WKcEIehjHkfpRqyzO5eFmw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPdBt8ZxEzxDYhPnWz+eegZMhyYBzea/Oi7AuuqwtyCATswlsMdA3tiw/U/rMP+MvDa4DIhI1inEwEDYArfuJg==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DG7gpkRnHPaofkkKx5jWKqI9gjcHhDOt3BeCMKRTImnngZvP1jlgYMXYXxY+S8XWyOoyU8KF5Tv0ZrG9FYREvQ==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xFN3KCCvtAdfdy+AngirK0Tku73Ne9i5NmV995PGnHOn6OvNx5j/f2Aa6FuEoZT1YshMjOlWfEKI8WAjnaxtRg==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iwhUBeB6oQ10iH2CRQeLNTHyQX9lxiMNZuC9nMY0IhiQlRaDtcwTVaGWSTShduj0V8o07kOgI53QayLnHt6i0A==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6hQ2W40ImHD8OSBL8zWYSwdae6iryMpeEThocf8u1m/0LFZUmnRtKyXZtXNNqwkbha/mDcjS+GbbCk+whXz0sA==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aUDiT8Qv4rbc1YwvWhBM76PzeoHLQLook/5PiXhFsBur7cniIsd2K0MhGDZ1M1IN9j7y6HdC7lnk+TS37lJEZA==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3h7hlVK5u8nzCUQFFYj6yw6NKYgnrUySo0oaXN21LyrOQpr052u5rvnSxUGuIKO7M9jRv1FaLZOGVI/+7olf9A==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IKcG64NTLVkZVHawu61/TldF/J/Vb7phwiECTLwB30N7NoUkXs1BquSuCJHyHCLUC0vEmEU0vqnQZY7T21Gc1Q==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EyRjbRA4pD4dG4O4XEzITKvzLRpauU4LhvS1UhiWUlvk5bUcfhFDMw1obsrvfpfD3zvqJ6PXm6Y4r2tUFf1yCQ==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MOrSyJ8eyHXyB4xMFN7AIZ5/B9ODYQxmspxxD2r5Zd8Os6hUAmVRUgl6s6Qml/j4nJGcsOHgonpDYmEAeuADMw==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Extensions/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Tasks/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.dll new file mode 100644 index 0000000..66b0b26 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.exe b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.exe new file mode 100644 index 0000000..0e2703c Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.exe differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.pdb b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.pdb new file mode 100644 index 0000000..4383d8e Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.pdb differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.runtimeconfig.json b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.runtimeconfig.json new file mode 100644 index 0000000..dfb1b77 --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "6.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.staticwebassets.runtime.json b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.staticwebassets.runtime.json new file mode 100644 index 0000000..a0a3e71 --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["F:\\yuhong_plc\\zzz.Api\\wwwroot\\"],"Root":{"Children":{"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.xml b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.xml new file mode 100644 index 0000000..69d94ab --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Api.xml @@ -0,0 +1,410 @@ + + + + zzz.Api + + + + + 持续运行 + + + + + 持续运行 + + + + + + + + 激活 + + + + + 立即执行任务 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 余宏大屏数据 + + + + + 余宏大屏数据 + + + + + + + + 工单列表数据 + + + + + + 工单详情 + + + + + + 动态月订单信息数据 + + + + + + 设备信息 + + + + + + 定时任务 + + + + + 构造 + + + + + + + + 分页获取 + + + + + + + + 添加计划任务 + + + + + + + 修改计划任务 + + + + + + + 删除一个任务 + + + + + + + 启动计划任务 + + + + + + + 停止一个计划任务 + + + + + + + 暂停一个计划任务 + + + + + + + 恢复一个计划任务 + + + + + + + 重启一个计划任务 + + + + + + + 获取任务命名空间 + + + + + + 立即执行任务 + + + + + + + + + + + + + + + + + + + + + 测试 增加数据 BaseService + + + + + + 测试 增加数据 接口 + + + + + + 测试 修改数据 BaseService + + + + + + 测试 修改部分数据 BaseService + + + + + + 测试 修改数据 接口 + + + + + + 测试 修改部分数据 接口 + + + + + + 测试 软删除数据 BaseService + + + + + + 测试 软删除数据 接口 + + + + + + 测试取单条数据 BaseService + + + + + + + 测试取单条数据 IF + + + + + + + 测试分页数据 Baseservice + + + + + + + 测试分页数据 IF + + + + + + + + + + + + + 读取13线数据 + + + + + + 读取2线数据 + + + + + 读取15线数据 + + + + + + 读取7线数据 + + + + + + 数据库操作 + + + + + 构造 + + + + + + 同步表结果 Entity-->数据库 + + + + + + + 全局异常错误日志 + + + + + 异常拦截构造函数 + + + + + + + + 异常发生 + + + + + + 自定义返回格式 + + + + + + + + + + + + + + + + + + + 返回错误信息 + + + + + 生产环境的消息 + + + + + 开发环境的消息 + + + + diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Common.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Common.dll new file mode 100644 index 0000000..6d6f1c6 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Common.pdb b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Common.pdb new file mode 100644 index 0000000..4c5a6d4 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Extensions.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Extensions.dll new file mode 100644 index 0000000..4f36965 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Extensions.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Extensions.pdb b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Extensions.pdb new file mode 100644 index 0000000..8717985 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Extensions.pdb differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Model.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Model.dll new file mode 100644 index 0000000..98ddff2 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Model.pdb b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Model.pdb new file mode 100644 index 0000000..ee6d136 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Model.xml b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Model.xml new file mode 100644 index 0000000..90ea772 --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Model.xml @@ -0,0 +1,1543 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 2线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Repository.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Repository.dll new file mode 100644 index 0000000..991414c Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Repository.pdb b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Repository.pdb new file mode 100644 index 0000000..b9bcd32 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Repository.pdb differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Services.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Services.dll new file mode 100644 index 0000000..691a5d0 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Services.pdb b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Services.pdb new file mode 100644 index 0000000..79fd96c Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Services.pdb differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Services.xml b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Services.xml new file mode 100644 index 0000000..623dba3 --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Services.xml @@ -0,0 +1,941 @@ + + + + zzz.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 种子数据 服务 + + + + + 构造 + + + + + + 异步添加种子数据 + + + + + + + + 同步表结构 + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 种子数据 接口 + + + + + 同步表结构 + + + + + + + 设备名称 + + + + + 设备利用率DTO + + + + + x轴 + + + + + series + + + + + 动态月订单信息数据 + + + + + 生产计划达成率 + + + + + 订单交付率 + + + + + 生产数量 + + + + + 设备利用率 + + + + + 产品合格率 + + + + + 大屏生产工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 完成进度 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 各产品生产数量 + + + + + x轴 + + + + + series + + + + + PLC硬件信息 + + + + + eqmt_id + + + + + ip + + + + + 端口 + + + + + 读取PLC数据接口 + + + + + 读取13线数据 + + + + + 读取16线数据 + + + + + 读取17线数据 + + + + + 读取18线数据 + + + + + 读取19线数据 + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 读取PLC数据服务 + + + + + 构造 + + + + + 打开连接 + + + + + + + + 关闭连接 + + + + + 读取13线数据 + + + + + 读取16线数据 + 一个端口 + + + + + 读取19线数据 + 一个端口 + + + + + 读取17线数据 + 两个端口 + + + + + 读取18线数据 + 两个端口 + + + + + 创建间隔采集数据 + + + + + + 班次产量数据 + + + + + + 计算OEE + + + + + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Tasks.dll b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Tasks.dll new file mode 100644 index 0000000..57d97c0 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Tasks.pdb b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Tasks.pdb new file mode 100644 index 0000000..e87eaee Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Debug/net6.0/zzz.Tasks.pdb differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll new file mode 100644 index 0000000..d8c1c58 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/AutoMapper.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/AutoMapper.dll new file mode 100644 index 0000000..7699210 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/AutoMapper.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Autofac.Extensions.DependencyInjection.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Autofac.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..ecbb4c9 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Autofac.Extensions.DependencyInjection.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Autofac.Extras.DynamicProxy.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Autofac.Extras.DynamicProxy.dll new file mode 100644 index 0000000..30922cf Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Autofac.Extras.DynamicProxy.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Autofac.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Autofac.dll new file mode 100644 index 0000000..fa2fdf5 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Autofac.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/BouncyCastle.Crypto.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/BouncyCastle.Crypto.dll new file mode 100644 index 0000000..395228b Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/BouncyCastle.Crypto.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Castle.Core.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Castle.Core.dll new file mode 100644 index 0000000..527172e Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Castle.Core.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/DmProvider.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/DmProvider.dll new file mode 100644 index 0000000..7f92f58 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/DmProvider.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Google.Protobuf.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Google.Protobuf.dll new file mode 100644 index 0000000..cf2e030 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Google.Protobuf.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/HslCommunication.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/HslCommunication.dll new file mode 100644 index 0000000..649961a Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/HslCommunication.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/K4os.Compression.LZ4.Streams.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/K4os.Compression.LZ4.Streams.dll new file mode 100644 index 0000000..42f55d6 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/K4os.Compression.LZ4.Streams.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/K4os.Compression.LZ4.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/K4os.Compression.LZ4.dll new file mode 100644 index 0000000..718ebb3 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/K4os.Compression.LZ4.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/K4os.Hash.xxHash.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/K4os.Hash.xxHash.dll new file mode 100644 index 0000000..4179a29 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/K4os.Hash.xxHash.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Kdbndp.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Kdbndp.dll new file mode 100644 index 0000000..af774bb Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Kdbndp.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Log/RequestResponseLog.log b/yuhong_plc/zzz.Api/bin/Release/net6.0/Log/RequestResponseLog.log new file mode 100644 index 0000000..387b922 --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Release/net6.0/Log/RequestResponseLog.log @@ -0,0 +1,11 @@ +-------------------------------- +2022-11-02 14:47:18| +Request Data: + QueryData:/api/Test/TestRead15 + BodyData: + +-------------------------------- +2022-11-02 14:47:39| +Response Data: +OK + diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Log4net.config b/yuhong_plc/zzz.Api/bin/Release/net6.0/Log4net.config new file mode 100644 index 0000000..ab6106d --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Release/net6.0/Log4net.config @@ -0,0 +1,511 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/MicroKnights.Log4NetAdoNetAppender.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/MicroKnights.Log4NetAdoNetAppender.dll new file mode 100644 index 0000000..4fd54e0 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/MicroKnights.Log4NetAdoNetAppender.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 0000000..85586ae Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.AspNetCore.JsonPatch.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.AspNetCore.JsonPatch.dll new file mode 100644 index 0000000..cab786e Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.AspNetCore.JsonPatch.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll new file mode 100644 index 0000000..3393ce2 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.AspNetCore.SignalR.Common.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100644 index 0000000..cc430da Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll new file mode 100644 index 0000000..b7f8005 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Data.SqlClient.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..7131196 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Data.Sqlite.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..5929124 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Data.Sqlite.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Extensions.Configuration.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..b84fb11 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Extensions.Configuration.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Extensions.DependencyModel.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..02b9f97 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Extensions.Features.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Extensions.Features.dll new file mode 100644 index 0000000..71bca4a Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Extensions.Features.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll new file mode 100644 index 0000000..66eb022 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Identity.Client.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Identity.Client.dll new file mode 100644 index 0000000..c01fcbf Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Identity.Client.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..70b84f2 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.IdentityModel.Logging.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..7ecc3be Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..d925b5b Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.IdentityModel.Protocols.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..17423cc Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.IdentityModel.Tokens.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..dd66624 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.OpenApi.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.OpenApi.dll new file mode 100644 index 0000000..14f3ded Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.OpenApi.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Win32.SystemEvents.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..e27fe8d Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/MiniProfiler.AspNetCore.Mvc.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/MiniProfiler.AspNetCore.Mvc.dll new file mode 100644 index 0000000..61610c8 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/MiniProfiler.AspNetCore.Mvc.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/MiniProfiler.AspNetCore.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/MiniProfiler.AspNetCore.dll new file mode 100644 index 0000000..bd60830 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/MiniProfiler.AspNetCore.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/MiniProfiler.Shared.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/MiniProfiler.Shared.dll new file mode 100644 index 0000000..5f3f7e0 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/MiniProfiler.Shared.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/MySql.Data.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/MySql.Data.dll new file mode 100644 index 0000000..c4eb61b Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/MySql.Data.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Newtonsoft.Json.Bson.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Newtonsoft.Json.Bson.dll new file mode 100644 index 0000000..e9b1dd2 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Newtonsoft.Json.Bson.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Newtonsoft.Json.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Newtonsoft.Json.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Npgsql.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Npgsql.dll new file mode 100644 index 0000000..7b2d4a0 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Npgsql.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Oracle.ManagedDataAccess.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Oracle.ManagedDataAccess.dll new file mode 100644 index 0000000..50822b9 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Oracle.ManagedDataAccess.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Quartz.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Quartz.dll new file mode 100644 index 0000000..9b4b363 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Quartz.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/SQLitePCLRaw.batteries_v2.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..c51a77d Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/SQLitePCLRaw.batteries_v2.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/SQLitePCLRaw.core.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..d995f27 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/SQLitePCLRaw.core.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/SQLitePCLRaw.nativelibrary.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/SQLitePCLRaw.nativelibrary.dll new file mode 100644 index 0000000..7bb1b03 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/SQLitePCLRaw.nativelibrary.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/SQLitePCLRaw.provider.dynamic_cdecl.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/SQLitePCLRaw.provider.dynamic_cdecl.dll new file mode 100644 index 0000000..2be5647 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/SQLitePCLRaw.provider.dynamic_cdecl.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Scrutor.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Scrutor.dll new file mode 100644 index 0000000..06eb31e Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Scrutor.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Serilog.Sinks.File.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Serilog.Sinks.File.dll new file mode 100644 index 0000000..29dc2fd Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Serilog.Sinks.File.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Serilog.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Serilog.dll new file mode 100644 index 0000000..e040a8a Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Serilog.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/SqlSugar.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/SqlSugar.dll new file mode 100644 index 0000000..2313b7b Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/SqlSugar.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll new file mode 100644 index 0000000..2c44bb5 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.Filters.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.Filters.dll new file mode 100644 index 0000000..7be1d8a Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.Filters.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll new file mode 100644 index 0000000..61534e9 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.Swagger.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..88995c9 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..6afe2f0 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..a26f458 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Configuration.ConfigurationManager.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..6f34b8d Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Configuration.ConfigurationManager.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Diagnostics.PerformanceCounter.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..3300cff Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/System.DirectoryServices.Protocols.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..ffc64e4 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.DirectoryServices.Protocols.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/System.DirectoryServices.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.DirectoryServices.dll new file mode 100644 index 0000000..b361d18 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.DirectoryServices.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Drawing.Common.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..69e5f5c Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Drawing.Common.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/System.IO.Pipelines.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.IO.Pipelines.dll new file mode 100644 index 0000000..8ee4dfd Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.IO.Pipelines.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/System.IdentityModel.Tokens.Jwt.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..efd3c61 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Net.WebSockets.WebSocketProtocol.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Net.WebSockets.WebSocketProtocol.dll new file mode 100644 index 0000000..b6a723a Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Net.WebSockets.WebSocketProtocol.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Runtime.Caching.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..6fedfab Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Runtime.Caching.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Security.Cryptography.ProtectedData.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..a60b95b Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Security.Permissions.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Security.Permissions.dll new file mode 100644 index 0000000..76faf41 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Security.Permissions.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Windows.Extensions.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..7f075b2 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/System.Windows.Extensions.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Ubiety.Dns.Core.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Ubiety.Dns.Core.dll new file mode 100644 index 0000000..b10ecf2 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Ubiety.Dns.Core.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/WebApiClient.Extensions.DependencyInjection.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/WebApiClient.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..f6580f4 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/WebApiClient.Extensions.DependencyInjection.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/WebApiClient.JIT.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/WebApiClient.JIT.dll new file mode 100644 index 0000000..c68d9b5 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/WebApiClient.JIT.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/Yitter.IdGenerator.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/Yitter.IdGenerator.dll new file mode 100644 index 0000000..7eb8700 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/Yitter.IdGenerator.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/ZstdNet.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/ZstdNet.dll new file mode 100644 index 0000000..bc60788 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/ZstdNet.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/appsettings.Development.json b/yuhong_plc/zzz.Api/bin/Release/net6.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Release/net6.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/appsettings.json b/yuhong_plc/zzz.Api/bin/Release/net6.0/appsettings.json new file mode 100644 index 0000000..414ab6a --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Release/net6.0/appsettings.json @@ -0,0 +1,70 @@ +{ + //���ݿ����� /* MySql=0;SqlServer=1;Sqlite=2;Oracle=3;PostgreSQL=4;Dm=5;;;;;;;;*/ + "DBType": 0, + //���ݿ������ַ��� + "ConnectionStrings": { + "Sqlite": "Data Source=./Magic.db", + "SqlServer": "Server=BLACK; Database=zzzTest01; User=sa; Password=123456zls!;MultipleActiveResultSets=True;", + //"MySql": "Data Source=150.158.169.212;Database=cjyx;User ID=base;Password=123456;pooling=true;port=3306;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;", + "MySql": "Data Source=222.71.165.187;Database=cjyx;User ID=root;Password=qawsed,.123;pooling=true;port=3309;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;" + //"MySql": "Data Source=101.34.35.69;Database=cjyx_wm;User ID=base;Password=123456;pooling=true;port=3306;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;" + }, + //�Զ��������ݿ� + "SeedDBEnabled": false, + //�Զ���ʼ������ + "SeedDBDataEnabled": false, + //Logд��DB + "LogToDb": false, + + //Logging���� + "Logging": { + "LogLevel": { + "Default": "Information", //����Default����log4net����д�벻����־ + "zzz.AuthHelper.ApiResponseHandler": "Error" + }, + "Debug": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning" + } + }, + "Console": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning", + "Microsoft.Hosting.Lifetime": "Debug" + } + }, + "Log4Net": { + "Name": "zzz" + } + }, + "AllowedHosts": "*", + //�м������ + "Middleware": { + //��ʱ���� + "QuartzNetJob": true, + //����д��Log + "RequestResponseLog": true, + //���ܷ��� + "MiniProfiler": true, + "SignalR": true + }, + //Aop���� + "Aop": { + "LogAOP": true, + "TranAOP": true, + "SqlAOP": { + "OutToLogFile": true, + "OutToConsole": true + } + }, + //�ܼ���Api���� + "Gjp": { + "BasicUrl": "http://api.cmgrasp.com/CMGraspApi/GateWay", + "AppKey": "80DDA4A9D5804DA4B0887104529523C2", + "SercretKey": "EE379CED41C748B49024FC8CD81B5909", + "userid": "10488149", + "dbname": "M7215API����" + } +} diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/log4net.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/log4net.dll new file mode 100644 index 0000000..3d6a0a6 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/log4net.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/ref/zzz.Api.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/ref/zzz.Api.dll new file mode 100644 index 0000000..0d69d48 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/ref/zzz.Api.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/alpine-x64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/alpine-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/alpine-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-arm/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..6b0158a Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-arm64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..7c590b7 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-armel/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..bc22810 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-mips64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..c82d186 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-musl-x64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-x64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..484bfc2 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-x86/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..d4c96f7 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/osx-x64/native/libe_sqlite3.dylib b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3b9e7a4 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..3a19d3d Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..3fc08e4 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..3068646 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-arm/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..d019891 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..965f535 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-arm64/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..d8b3149 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..227b87b Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-x64/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..8d3ca0c Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..0add8c2 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-x86/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..3ad1bc9 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..9d5fe02 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..c9f3075 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll new file mode 100644 index 0000000..04879ec Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..c49c358 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..9a04b68 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..3fb4939 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..c4b9b5d Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..175d085 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..d8f2f45 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.deps.json b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.deps.json new file mode 100644 index 0000000..ebdd1fd --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.deps.json @@ -0,0 +1,3725 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Api/1.0.0": { + "dependencies": { + "Autofac.Extensions.DependencyInjection": "7.2.0", + "MicroKnights.Log4NetAdoNetAppender": "2.2.0", + "zzz.Extensions": "1.0.0" + }, + "runtime": { + "zzz.Api.dll": {} + } + }, + "Autofac/6.3.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net5.0/Autofac.dll": { + "assemblyVersion": "6.3.0.0", + "fileVersion": "6.3.0.0" + } + } + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "dependencies": { + "Autofac": "6.3.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + }, + "runtime": { + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.2.0.0" + } + } + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "dependencies": { + "Autofac": "6.3.0", + "Castle.Core": "4.4.0" + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.1.0" + } + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Castle.Core/4.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.4.0.0" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "HslCommunication/7.0.1": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": { + "assemblyVersion": "7.0.1.0", + "fileVersion": "7.0.1.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "MicroKnights.Log4NetAdoNetAppender/2.2.0": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "lib/netstandard2.1/MicroKnights.Log4NetAdoNetAppender.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "dependencies": { + "Microsoft.Extensions.Features": "6.0.5", + "System.IO.Pipelines": "6.0.3" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0" + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.0", + "Newtonsoft.Json": "13.0.1", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Newtonsoft.Json": "13.0.1", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "6.0.0-rc.1.21452.15", + "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + } + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections": "1.1.0", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0" + } + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.5.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Net.WebSockets.WebSocketProtocol": "4.5.1" + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.Extensions.Features/6.0.5": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Features.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {}, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll": { + "assemblyVersion": "6.1.0.0", + "fileVersion": "6.1.0.0" + } + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": {}, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MiniProfiler.AspNetCore/4.2.22": { + "dependencies": { + "MiniProfiler.Shared": "4.2.22", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "dependencies": { + "MiniProfiler.AspNetCore": "4.2.22" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.Shared/4.2.22": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.ComponentModel.Primitives": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Quartz/3.4.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.0.0" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "Scrutor/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "13.0.1", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + } + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.OpenApi": "1.2.3", + "Scrutor": "3.3.0", + "Swashbuckle.AspNetCore.Filters.Abstractions": "7.0.2", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.0-rc.1.21452.15", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/1.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Pipelines/6.0.3": { + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21309" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "runtime": { + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26606.5" + } + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.4.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "dependencies": { + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "zzz.Extensions/1.0.0": { + "dependencies": { + "Autofac": "6.3.0", + "Autofac.Extras.DynamicProxy": "6.0.1", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.SignalR": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson": "6.0.5", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.Log4Net.AspNetCore": "6.1.0", + "MiniProfiler.AspNetCore.Mvc": "4.2.22", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Filters": "7.0.2", + "Swashbuckle.AspNetCore.Newtonsoft": "6.3.1", + "log4net": "2.0.14", + "zzz.Services": "1.0.0", + "zzz.Tasks": "1.0.0" + }, + "runtime": { + "zzz.Extensions.dll": {} + } + }, + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "runtime": { + "zzz.Repository.dll": {} + } + }, + "zzz.Services/1.0.0": { + "dependencies": { + "HslCommunication": "7.0.1", + "zzz.Repository": "1.0.0" + }, + "runtime": { + "zzz.Services.dll": {} + } + }, + "zzz.Tasks/1.0.0": { + "dependencies": { + "Quartz": "3.4.0", + "zzz.Services": "1.0.0" + }, + "runtime": { + "zzz.Tasks.dll": {} + } + } + } + }, + "libraries": { + "zzz.Api/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Autofac/6.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gO4bli0N8tDnBHzbYktcnbXlmN6T+IT5W+FUGgCUaM6pwwHXIxOPoUGvfGum7sZpJJgfQNgjFFv80ZPuARgRdA==", + "path": "autofac/6.3.0", + "hashPath": "autofac.6.3.0.nupkg.sha512" + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S2Jor8pTV+8QSs96ENq/FhGdnrWsntGs93z0OXYlIivUWGPNXQHNCjFPfSBeBlHClvJFEXMvlkY32bAKy2YkPg==", + "path": "autofac.extensions.dependencyinjection/7.2.0", + "hashPath": "autofac.extensions.dependencyinjection.7.2.0.nupkg.sha512" + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ulCOXUjbJ5dljBPZf3gRxQNPRGqg/h1cNTZ4SpXK3qiamTfRsW3gXs2w/IJ+CIDmHrFGYXLqzNd5etvzwB8kA==", + "path": "autofac.extras.dynamicproxy/6.0.1", + "hashPath": "autofac.extras.dynamicproxy.6.0.1.nupkg.sha512" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Castle.Core/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "path": "castle.core/4.4.0", + "hashPath": "castle.core.4.4.0.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "HslCommunication/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "path": "hslcommunication/7.0.1", + "hashPath": "hslcommunication.7.0.1.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "MicroKnights.Log4NetAdoNetAppender/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FryL/5pLWynP8znM5LTXd4M+DmD+Ftls5D8IlyMwCbH7MFWviLyNvGneJZFjmdXschal5lTUOB3Cs1FkEPs7tQ==", + "path": "microknights.log4netadonetappender/2.2.0", + "hashPath": "microknights.log4netadonetappender.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OBbGvih5/CLHTbJVDiJ203TmKXCx8z539O2YGnfHmExbNtMwyQ9rgpqoxyYEVvQrVsqxRhXfh57DOCQYhxcOBQ==", + "path": "microsoft.aspnetcore.connections.abstractions/6.0.5", + "hashPath": "microsoft.aspnetcore.connections.abstractions.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BAibpoItxI5puk7YJbIGj95arZueM8B8M5xT1fXBn3hb3L2G3ucrZcYXv1gXdaroLbntUs8qeV8iuBrpjQsrKw==", + "path": "microsoft.aspnetcore.http/2.2.2", + "hashPath": "microsoft.aspnetcore.http.2.2.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==", + "path": "microsoft.aspnetcore.http.connections/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mYk5QUUjyXQmlyDHWDjkLYDArt97plwe6KsDsNVhDEQ+HgZMKGjISyM6YSA7BERQNR25kXBTbIYfSy1vePGQgg==", + "path": "microsoft.aspnetcore.http.connections.common/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+27ce/d0w7jyEmCCMrzwFRg6PHZxQ37Fmnf+es1qQudbip2rryxPdM8TRoXT6wNtdlzqHnIyXTtLjSs0uIDhxA==", + "path": "microsoft.aspnetcore.jsonpatch/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.jsonpatch.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/dspuIknGgOdBygH3bmjsIH5neuuJ7DHILXrKVPAoCykPARAIUBckZlIW6RrYqmbGTZYT/YFCzr/xDR5f0YiAA==", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "path": "microsoft.aspnetcore.routing/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==", + "path": "microsoft.aspnetcore.signalr/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N+MF6rs64kDDJ4zroD/NqRgXVSEkj/ppTX36AB2S43qm1y64YqWMCFCzLshkmi7SwWwQQPIByTNZDJfz4x7GjQ==", + "path": "microsoft.aspnetcore.signalr.common/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.common.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/7VUbkomGE7ph6R1JTtMji5QPGqesyCSeELFmfylaqFM+SdWf9EmbU3SCQPcIWhfv+RgbUWmTNfWWPzmVDTggw==", + "path": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==", + "path": "microsoft.aspnetcore.websockets/2.2.0", + "hashPath": "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" + }, + "Microsoft.Extensions.Features/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7KLF1jRFQjSttfoilwHU86cU9ZgxN4ABfQR8tQ9qEC5AzTGYIX+K5RDwGFVK320eTiBwWuutV24ecmxBxo7Eg==", + "path": "microsoft.extensions.features/6.0.5", + "hashPath": "microsoft.extensions.features.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qHb3GudscgrgEVByh86kAq3FMmjOdPIVoqvff3eokEP+QkZHzr42l4PlgxBsqhhlIX02SazC7ZdbfiFGDPRv9A==", + "path": "microsoft.extensions.logging.log4net.aspnetcore/6.1.0", + "hashPath": "microsoft.extensions.logging.log4net.aspnetcore.6.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "path": "microsoft.extensions.objectpool/2.2.0", + "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "path": "microsoft.net.http.headers/2.2.0", + "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2FpFllO0wFJmfIXY9NXr33jWgr88b7E4gAuPHSNYzNr5o2XIouynxAoLA+SShuDI2ySSsvnBHURiXRX7tz59YA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MiniProfiler.AspNetCore/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bBirB5d4Q0Bgx05Zg4yzXSmOHZQV4ZJhmxU3DGya4FZxNBwjaVHchqEKY0MJW5XLZo8axMAQm4yywgCvUlTymA==", + "path": "miniprofiler.aspnetcore/4.2.22", + "hashPath": "miniprofiler.aspnetcore.4.2.22.nupkg.sha512" + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nzCEaZnh77U9jw+c/qu4CtwYUpHEf+FH1ZMbYKMzIXr8CNNPlypSR6AJEAwjo3bq9TIJIpBMZIaK3inRLUCg4g==", + "path": "miniprofiler.aspnetcore.mvc/4.2.22", + "hashPath": "miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512" + }, + "MiniProfiler.Shared/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==", + "path": "miniprofiler.shared/4.2.22", + "hashPath": "miniprofiler.shared.4.2.22.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/6XtTu0ZHzge7tzZZN8UXpwG1K0Vgxi7C7R0QiTgxMtN4gkzNl4xNVUI4X3tymMwKWUdwqXvzkrJqt3MdMFXig==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Quartz/3.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N8350OAlQhd8zKg0ARFikGjh3bfAW/CF/KVxu2fTIlAALB/oC1eg54n/QAPYR5ryHuYyDr5G8/Qa4k+D/7OFRQ==", + "path": "quartz/3.4.0", + "hashPath": "quartz.3.4.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kuvqViO3OnqjWcNSQfanREtHgqJx6UK5UHPeIl7M666izpBErP4TDZctWnYvuz7l/hpWPkS3DsUAUPAyVS/zBA==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QnpBRH8jHD/TtGA5fjrdK/BRf+Oslt/M/X+r487ByPS2q+EZUNwEiaoPUuZcqFcLwqAY2Fw7SciCHTPiK2GTqg==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i/u0Svwgj6JM9SpaoJAqTiMU3B0UZEUC35JadEBgkihBi+RzyRe2VlGwhZ6B63r78CmzZ/VAYNXvLAnoIaRG/A==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOKLiiK96F+8pPB+ALL20VFsTDBolLfysxlBZDGlFXDEBEZfdfm4OYuInLtxYHCUSxpJpPivIYm9jasMzfgzEQ==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSKGjRiQWUHf2zpiRD3+q8lzjL89HhiR74cevVqShwVHtDEHjAhDU75w6mPdeFg9QSyqI32Ud3Qskr5WHNCw+g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "Scrutor/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "path": "scrutor/3.3.0", + "hashPath": "scrutor.3.3.0.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "path": "swashbuckle.aspnetcore/6.2.3", + "hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pjj/BdKFcXX1tdUrVjfW6SiRSiHC4dOnqszhU2PuS0RBXZUnGM18tXUrNU2pgPkSjWUnCiyvbjd3GBkEuNTBYA==", + "path": "swashbuckle.aspnetcore.filters/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RqZ+P+m2cw1TVsU9LUHNdLf4Ww7YSqDRt7UHRzauZJnRztDlNR4doOGzXLmWZzq+3CfZyS7NEsQyJmf4Y+7GMQ==", + "path": "swashbuckle.aspnetcore.filters.abstractions/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oy6BwAX+tcKO13n9bw3nPtITBvD03bAHDN2+lTaOY/cUNcQE/liu3xWjbkdhLeNTUiC+7h+lJvR7KUdI7CXz0w==", + "path": "swashbuckle.aspnetcore.newtonsoft/6.3.1", + "hashPath": "swashbuckle.aspnetcore.newtonsoft.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-idAFh4xhyJHYHfdLVOOn+BmscBul1OQbWsnL6YPJE8tO/0y6S79hDCvs6OY5VI093/9+1pYY3j31Zet9yaDZjA==", + "path": "swashbuckle.aspnetcore.swagger/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+uoBV4h/6NhCPLoTofSmuOnZ+usu4PW1jP6l4OHwPyu2frbYXGNpJsHs5uUXXn929OiVQkT8wo3Lj/o+P99Ejg==", + "path": "swashbuckle.aspnetcore.swaggergen/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wvyiJIm0HlaoN+AlJXhTpDrhYkN28OC/nEun5QpbPkZvbpgWSYvZ8Hr9/G4Bd1I0WSmFW18KQuE5DOA05Uubrw==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wAdmaCgCSe298gCNvAf6vlVPfQUR7h43Qr2tTtJFYeto/OvttRLyG4ch6/R2FpuWRMfxHBsAeHYrzjvEk1UM+Q==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Un05L1TLTGqBBRKAFngtzovaNeFL1EGzuUwW0AiTotM/GUWVE0c0xH4owZgdJ6nf6DuK866gbLqD3c/Ms7KSOg==", + "path": "system.collections.immutable/1.3.0", + "hashPath": "system.collections.immutable.1.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sRo7MpbD5VnFdLZA/uVuR5YJdDV4i+DyJTpQ1rk92wCzLE4cXJ+q7tzGr2HwkL/ujeFNcPo/fOs7LKdDyeyupA==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wJLrK/MQdlF3TmfNouxSsgtCRhsgx4tz2KdY/mpvirOcgMc2W4DDK7vR6RcSc6XRV4P6rzrLFXd9wUzp/iWp0g==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aX7O7aytoclkwEvOv4vCDBP2hDVsrAbQVAOJXUka7qCXbbZcqtv8CKrX646dSERl9aO/tY0/g2ezsa4jBAMQOg==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6jD8gKBZvTfp1PEuqAkpMZvG9hF+gzGIvhvRh0K2qDApsiEpRZ9ZUlWE2nACpPdWP8w3DaL0TQAHuA7gXDSupA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "path": "system.diagnostics.tracesource/4.3.0", + "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ChcZW/eQtXpPDW7qMqlqK7xGW4A8hhz7/iY4J5hsvhzPsza7Cml+hdBhm5vAh6KhHcXzMvjfLcbChmZsYPlJsA==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zf/fX6NjK+eL01E0a5+pZb2NaitHwaVPlh7Wc62+wpnAtn1hA0ye8WAMV4r8DJv+AghKZYBwQwGqZJ9ikWLLkw==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ttt2PGgBfejL4xBEdMMd2E+Mqn/wC47jhMBtqRNJeH6uYa2j3fTDi1Jj1hAY5sfgbJcrvfSO46G1pufONMmfmA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kzMaA/htO8n7p5FQvyVXA9Q66+LntW+m0vp+Vnl5gSWsc6btlIYIC3aXs3DvtvdV0ue1tX/Mslkiei1vLgh3WA==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yn4CfuDOHBxI0b6JNSQJGqCIsuEqcjxQIAxktq316Jhz9Q0aRKqqGN7QNwd5fyNqz7mNMXfKDt1bJrtggkt8/g==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kRj3owqKUOxPcvQpK0VItuLGg/aXPjUxzT5ujrfMW0RrAQ7FJYB+mFiCawtGQVQatVCKr78TX39cJueK9ic8wA==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1d5+nGi+bWLgg0/wPO1IKJGSIe8Gy+WsMoT11T472mWHryC/qCISRl/v9w4rmk+72uX/1DFgBjBljUXyAK4jNg==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BnZgb92GKxi/DjV7WbZo2Sm7G8pImuLocQAHIkuFrRExeBMyjX0sIRY039HbnBObE7t5ihxRP3wYPSJ0Zt/apQ==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "path": "system.io.pipelines/6.0.3", + "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dGfhVR2KQhRwrl0D8yb8gJLpr2iX4Hnud1oNRwUbafrqskstG2kC3NMNp/t7QRzdb1mlNqc99F2OjXYKyHzdnA==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MHtkLrHBt/UkTMLaBYgCgrm2WBogOkEjDRlNJSxy18uQWEMN4ymSywGNwNHS8ATNyaGJzddvmdWI/UjLaLyskg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6sVcH1+qeVKf7xD/7k0ouAA7830LIw7Ltwo4bEl9ExyRVN/YNUhka9CBcd2Pp4Ugn14/cIY/i39bSTMUOmftFw==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S70uFEyXRAuRBxWsQWyVciioHMGOYxpob7a/TNchHKF9ceQPktdtcdl3/vktvUJU8B5ES7lG1wkglSWXYKHjcA==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==", + "path": "system.net.websockets.websocketprotocol/4.5.1", + "hashPath": "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TqRGJ6R6S9VpsXm2GpRy87TFXMxVqtYMrZtQFZHNJadQ1njAlpp0F5PfsWH04UNZWeY9X1jK+Kr8faJREA1kfg==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-13ihEbKKWpJYwZpo1kcDv2kW8eCK9twslQXpuqW/ulpHFhB2vuxbCuQgllNLjiSuL3uEKSPz34wC0xRb5hY9OA==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cYyPyIPBNlROATH5CjGQpvFhPdCrkDyVpChahZmpZlpXE4wQS+f6fUl+A/16U8/IShAiS3ofjX6bHuwRyHHWbQ==", + "path": "system.reflection.metadata/1.4.1", + "hashPath": "system.reflection.metadata.1.4.1.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJGsxoZ+9PXn+Qdjc5Nk6yJVqLk8lRR3k3uEGja59sC1EbkzMbVMqPFNOQmYxaO5Fbid8Bm29o+rB/PdDCDXNw==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yhyMfLA28dYAFahmTy+lM6rDrrca84R76fk8J0GH9gdtcZe6NuA7bWhLOCcWOEi74jZOIjtjtRPzkdSv6KlATQ==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-djZnX43T2YuLt526S/mq2pBiHQS8WfAUAg/nOt+oz6MkTo6HKAANCytQEFXmv6jyrumb8ohYe3ht2sEUMi9LMQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jw3ielASDELVDT+VPsL6PGRHp50mytxUnVp7UlKZWS3l5cxWAhZIWfTiunuqyy90WKcEIehjHkfpRqyzO5eFmw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPdBt8ZxEzxDYhPnWz+eegZMhyYBzea/Oi7AuuqwtyCATswlsMdA3tiw/U/rMP+MvDa4DIhI1inEwEDYArfuJg==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DG7gpkRnHPaofkkKx5jWKqI9gjcHhDOt3BeCMKRTImnngZvP1jlgYMXYXxY+S8XWyOoyU8KF5Tv0ZrG9FYREvQ==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xFN3KCCvtAdfdy+AngirK0Tku73Ne9i5NmV995PGnHOn6OvNx5j/f2Aa6FuEoZT1YshMjOlWfEKI8WAjnaxtRg==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iwhUBeB6oQ10iH2CRQeLNTHyQX9lxiMNZuC9nMY0IhiQlRaDtcwTVaGWSTShduj0V8o07kOgI53QayLnHt6i0A==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6hQ2W40ImHD8OSBL8zWYSwdae6iryMpeEThocf8u1m/0LFZUmnRtKyXZtXNNqwkbha/mDcjS+GbbCk+whXz0sA==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aUDiT8Qv4rbc1YwvWhBM76PzeoHLQLook/5PiXhFsBur7cniIsd2K0MhGDZ1M1IN9j7y6HdC7lnk+TS37lJEZA==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3h7hlVK5u8nzCUQFFYj6yw6NKYgnrUySo0oaXN21LyrOQpr052u5rvnSxUGuIKO7M9jRv1FaLZOGVI/+7olf9A==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IKcG64NTLVkZVHawu61/TldF/J/Vb7phwiECTLwB30N7NoUkXs1BquSuCJHyHCLUC0vEmEU0vqnQZY7T21Gc1Q==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EyRjbRA4pD4dG4O4XEzITKvzLRpauU4LhvS1UhiWUlvk5bUcfhFDMw1obsrvfpfD3zvqJ6PXm6Y4r2tUFf1yCQ==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MOrSyJ8eyHXyB4xMFN7AIZ5/B9ODYQxmspxxD2r5Zd8Os6hUAmVRUgl6s6Qml/j4nJGcsOHgonpDYmEAeuADMw==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Extensions/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Tasks/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.dll new file mode 100644 index 0000000..6f0509f Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.exe b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.exe new file mode 100644 index 0000000..0e2703c Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.exe differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.pdb b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.pdb new file mode 100644 index 0000000..0b19c3b Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.pdb differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.runtimeconfig.json b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.runtimeconfig.json new file mode 100644 index 0000000..80d0347 --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "6.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.staticwebassets.runtime.json b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.staticwebassets.runtime.json new file mode 100644 index 0000000..a0a3e71 --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["F:\\yuhong_plc\\zzz.Api\\wwwroot\\"],"Root":{"Children":{"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.xml b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.xml new file mode 100644 index 0000000..acd4ea2 --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Api.xml @@ -0,0 +1,400 @@ + + + + zzz.Api + + + + + 持续运行 + + + + + 持续运行 + + + + + + + + 激活 + + + + + 立即执行任务 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 余宏大屏数据 + + + + + 余宏大屏数据 + + + + + + + + 工单列表数据 + + + + + + 工单详情 + + + + + + 动态月订单信息数据 + + + + + + 设备信息 + + + + + + 构造 + + + + + + + + 分页获取 + + + + + + + + 添加计划任务 + + + + + + + 修改计划任务 + + + + + + + 删除一个任务 + + + + + + + 启动计划任务 + + + + + + + 停止一个计划任务 + + + + + + + 暂停一个计划任务 + + + + + + + 恢复一个计划任务 + + + + + + + 重启一个计划任务 + + + + + + + 获取任务命名空间 + + + + + + 立即执行任务 + + + + + + + + + + + + + + + + + + + + + 测试 增加数据 BaseService + + + + + + 测试 增加数据 接口 + + + + + + 测试 修改数据 BaseService + + + + + + 测试 修改部分数据 BaseService + + + + + + 测试 修改数据 接口 + + + + + + 测试 修改部分数据 接口 + + + + + + 测试 软删除数据 BaseService + + + + + + 测试 软删除数据 接口 + + + + + + 测试取单条数据 BaseService + + + + + + + 测试取单条数据 IF + + + + + + + 测试分页数据 Baseservice + + + + + + + 测试分页数据 IF + + + + + + + + + + + + + 读取13线数据 + + + + + + 读取2线数据 + + + + + 读取15线数据 + + + + + + 读取7线数据 + + + + + + 构造 + + + + + + 同步表结果 Entity-->数据库 + + + + + + + 全局异常错误日志 + + + + + 异常拦截构造函数 + + + + + + + + 异常发生 + + + + + + 自定义返回格式 + + + + + + + + + + + + + + + + + + + 返回错误信息 + + + + + 生产环境的消息 + + + + + 开发环境的消息 + + + + diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Common.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Common.dll new file mode 100644 index 0000000..64d9d86 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Common.pdb b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Common.pdb new file mode 100644 index 0000000..72c1cc3 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Extensions.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Extensions.dll new file mode 100644 index 0000000..b0db723 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Extensions.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Extensions.pdb b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Extensions.pdb new file mode 100644 index 0000000..77cd23b Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Extensions.pdb differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Model.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Model.dll new file mode 100644 index 0000000..9fb27f0 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Model.pdb b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Model.pdb new file mode 100644 index 0000000..2d4df51 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Model.xml b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Model.xml new file mode 100644 index 0000000..90ea772 --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Model.xml @@ -0,0 +1,1543 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 2线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Repository.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Repository.dll new file mode 100644 index 0000000..7d79fb4 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Repository.pdb b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Repository.pdb new file mode 100644 index 0000000..b02178a Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Repository.pdb differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Services.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Services.dll new file mode 100644 index 0000000..120d205 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Services.pdb b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Services.pdb new file mode 100644 index 0000000..14b8434 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Services.pdb differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Services.xml b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Services.xml new file mode 100644 index 0000000..623dba3 --- /dev/null +++ b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Services.xml @@ -0,0 +1,941 @@ + + + + zzz.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 种子数据 服务 + + + + + 构造 + + + + + + 异步添加种子数据 + + + + + + + + 同步表结构 + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 种子数据 接口 + + + + + 同步表结构 + + + + + + + 设备名称 + + + + + 设备利用率DTO + + + + + x轴 + + + + + series + + + + + 动态月订单信息数据 + + + + + 生产计划达成率 + + + + + 订单交付率 + + + + + 生产数量 + + + + + 设备利用率 + + + + + 产品合格率 + + + + + 大屏生产工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 完成进度 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 各产品生产数量 + + + + + x轴 + + + + + series + + + + + PLC硬件信息 + + + + + eqmt_id + + + + + ip + + + + + 端口 + + + + + 读取PLC数据接口 + + + + + 读取13线数据 + + + + + 读取16线数据 + + + + + 读取17线数据 + + + + + 读取18线数据 + + + + + 读取19线数据 + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 读取PLC数据服务 + + + + + 构造 + + + + + 打开连接 + + + + + + + + 关闭连接 + + + + + 读取13线数据 + + + + + 读取16线数据 + 一个端口 + + + + + 读取19线数据 + 一个端口 + + + + + 读取17线数据 + 两个端口 + + + + + 读取18线数据 + 两个端口 + + + + + 创建间隔采集数据 + + + + + + 班次产量数据 + + + + + + 计算OEE + + + + + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Tasks.dll b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Tasks.dll new file mode 100644 index 0000000..0d4ef26 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Tasks.pdb b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Tasks.pdb new file mode 100644 index 0000000..54a9137 Binary files /dev/null and b/yuhong_plc/zzz.Api/bin/Release/net6.0/zzz.Tasks.pdb differ diff --git a/yuhong_plc/zzz.Api/index.html b/yuhong_plc/zzz.Api/index.html new file mode 100644 index 0000000..cab6e36 --- /dev/null +++ b/yuhong_plc/zzz.Api/index.html @@ -0,0 +1,123 @@ + + + + + + + + + + + + + %(DocumentTitle) + + + + + + %(HeadContent) + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/yuhong_plc/zzz.Api/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/417e247e-4bd9-416a-895f-70e90b338f4f_cjyx.Api.pdb b/yuhong_plc/zzz.Api/obj/Debug/net6.0/417e247e-4bd9-416a-895f-70e90b338f4f_cjyx.Api.pdb new file mode 100644 index 0000000..d9224db Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/417e247e-4bd9-416a-895f-70e90b338f4f_cjyx.Api.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll new file mode 100644 index 0000000..d8c1c58 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/AutoMapper.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/AutoMapper.dll new file mode 100644 index 0000000..7699210 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/AutoMapper.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Autofac.Extensions.DependencyInjection.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Autofac.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..ecbb4c9 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Autofac.Extensions.DependencyInjection.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Autofac.Extras.DynamicProxy.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Autofac.Extras.DynamicProxy.dll new file mode 100644 index 0000000..30922cf Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Autofac.Extras.DynamicProxy.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Autofac.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Autofac.dll new file mode 100644 index 0000000..fa2fdf5 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Autofac.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/BouncyCastle.Crypto.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/BouncyCastle.Crypto.dll new file mode 100644 index 0000000..395228b Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/BouncyCastle.Crypto.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Castle.Core.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Castle.Core.dll new file mode 100644 index 0000000..527172e Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Castle.Core.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/DmProvider.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/DmProvider.dll new file mode 100644 index 0000000..7f92f58 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/DmProvider.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Google.Protobuf.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Google.Protobuf.dll new file mode 100644 index 0000000..cf2e030 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Google.Protobuf.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/HslCommunication.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/HslCommunication.dll new file mode 100644 index 0000000..649961a Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/HslCommunication.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/K4os.Compression.LZ4.Streams.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/K4os.Compression.LZ4.Streams.dll new file mode 100644 index 0000000..42f55d6 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/K4os.Compression.LZ4.Streams.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/K4os.Compression.LZ4.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/K4os.Compression.LZ4.dll new file mode 100644 index 0000000..718ebb3 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/K4os.Compression.LZ4.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/K4os.Hash.xxHash.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/K4os.Hash.xxHash.dll new file mode 100644 index 0000000..4179a29 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/K4os.Hash.xxHash.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Kdbndp.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Kdbndp.dll new file mode 100644 index 0000000..af774bb Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Kdbndp.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Log4net.config b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Log4net.config new file mode 100644 index 0000000..ab6106d --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Log4net.config @@ -0,0 +1,511 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/MicroKnights.Log4NetAdoNetAppender.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/MicroKnights.Log4NetAdoNetAppender.dll new file mode 100644 index 0000000..4fd54e0 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/MicroKnights.Log4NetAdoNetAppender.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.AspNetCore.Connections.Abstractions.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 0000000..85586ae Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.AspNetCore.JsonPatch.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.AspNetCore.JsonPatch.dll new file mode 100644 index 0000000..cab786e Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.AspNetCore.JsonPatch.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll new file mode 100644 index 0000000..3393ce2 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.AspNetCore.SignalR.Common.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100644 index 0000000..cc430da Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll new file mode 100644 index 0000000..b7f8005 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Data.SqlClient.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..7131196 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Data.Sqlite.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..5929124 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Data.Sqlite.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Extensions.Configuration.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..b84fb11 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Extensions.Configuration.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Extensions.DependencyModel.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..02b9f97 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Extensions.DependencyModel.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Extensions.Features.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Extensions.Features.dll new file mode 100644 index 0000000..71bca4a Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Extensions.Features.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll new file mode 100644 index 0000000..66eb022 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Identity.Client.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Identity.Client.dll new file mode 100644 index 0000000..c01fcbf Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Identity.Client.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..70b84f2 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.IdentityModel.Logging.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..7ecc3be Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.IdentityModel.Logging.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..d925b5b Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..17423cc Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..dd66624 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.OpenApi.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.OpenApi.dll new file mode 100644 index 0000000..14f3ded Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.OpenApi.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Win32.SystemEvents.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..e27fe8d Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Microsoft.Win32.SystemEvents.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/MiniProfiler.AspNetCore.Mvc.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/MiniProfiler.AspNetCore.Mvc.dll new file mode 100644 index 0000000..61610c8 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/MiniProfiler.AspNetCore.Mvc.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/MiniProfiler.AspNetCore.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/MiniProfiler.AspNetCore.dll new file mode 100644 index 0000000..bd60830 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/MiniProfiler.AspNetCore.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/MiniProfiler.Shared.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/MiniProfiler.Shared.dll new file mode 100644 index 0000000..5f3f7e0 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/MiniProfiler.Shared.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/MySql.Data.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/MySql.Data.dll new file mode 100644 index 0000000..c4eb61b Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/MySql.Data.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Newtonsoft.Json.Bson.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Newtonsoft.Json.Bson.dll new file mode 100644 index 0000000..e9b1dd2 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Newtonsoft.Json.Bson.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Newtonsoft.Json.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Newtonsoft.Json.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Npgsql.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Npgsql.dll new file mode 100644 index 0000000..7b2d4a0 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Npgsql.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Oracle.ManagedDataAccess.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Oracle.ManagedDataAccess.dll new file mode 100644 index 0000000..50822b9 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Oracle.ManagedDataAccess.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Quartz.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Quartz.dll new file mode 100644 index 0000000..9b4b363 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Quartz.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/SQLitePCLRaw.batteries_v2.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..c51a77d Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/SQLitePCLRaw.batteries_v2.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/SQLitePCLRaw.core.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..d995f27 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/SQLitePCLRaw.core.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/SQLitePCLRaw.nativelibrary.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/SQLitePCLRaw.nativelibrary.dll new file mode 100644 index 0000000..7bb1b03 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/SQLitePCLRaw.nativelibrary.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/SQLitePCLRaw.provider.dynamic_cdecl.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/SQLitePCLRaw.provider.dynamic_cdecl.dll new file mode 100644 index 0000000..2be5647 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/SQLitePCLRaw.provider.dynamic_cdecl.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Scrutor.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Scrutor.dll new file mode 100644 index 0000000..06eb31e Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Scrutor.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Serilog.Sinks.File.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Serilog.Sinks.File.dll new file mode 100644 index 0000000..29dc2fd Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Serilog.Sinks.File.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Serilog.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Serilog.dll new file mode 100644 index 0000000..e040a8a Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Serilog.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/SqlSugar.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/SqlSugar.dll new file mode 100644 index 0000000..2313b7b Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/SqlSugar.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Filters.Abstractions.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Filters.Abstractions.dll new file mode 100644 index 0000000..2c44bb5 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Filters.Abstractions.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Filters.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Filters.dll new file mode 100644 index 0000000..7be1d8a Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Filters.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Newtonsoft.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Newtonsoft.dll new file mode 100644 index 0000000..61534e9 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Newtonsoft.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..88995c9 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..6afe2f0 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..a26f458 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Configuration.ConfigurationManager.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..6f34b8d Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Configuration.ConfigurationManager.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Diagnostics.PerformanceCounter.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..3300cff Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Diagnostics.PerformanceCounter.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.DirectoryServices.Protocols.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..ffc64e4 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.DirectoryServices.Protocols.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.DirectoryServices.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.DirectoryServices.dll new file mode 100644 index 0000000..b361d18 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.DirectoryServices.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Drawing.Common.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Drawing.Common.dll new file mode 100644 index 0000000..69e5f5c Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Drawing.Common.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.IO.Pipelines.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.IO.Pipelines.dll new file mode 100644 index 0000000..8ee4dfd Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.IO.Pipelines.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..efd3c61 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Net.WebSockets.WebSocketProtocol.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Net.WebSockets.WebSocketProtocol.dll new file mode 100644 index 0000000..b6a723a Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Net.WebSockets.WebSocketProtocol.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Runtime.Caching.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Runtime.Caching.dll new file mode 100644 index 0000000..6fedfab Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Runtime.Caching.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..a60b95b Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Security.Permissions.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Security.Permissions.dll new file mode 100644 index 0000000..76faf41 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Security.Permissions.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Windows.Extensions.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Windows.Extensions.dll new file mode 100644 index 0000000..7f075b2 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/System.Windows.Extensions.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Ubiety.Dns.Core.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Ubiety.Dns.Core.dll new file mode 100644 index 0000000..b10ecf2 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Ubiety.Dns.Core.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/WebApiClient.Extensions.DependencyInjection.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/WebApiClient.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..f6580f4 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/WebApiClient.Extensions.DependencyInjection.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/WebApiClient.JIT.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/WebApiClient.JIT.dll new file mode 100644 index 0000000..c68d9b5 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/WebApiClient.JIT.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Yitter.IdGenerator.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Yitter.IdGenerator.dll new file mode 100644 index 0000000..7eb8700 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/Yitter.IdGenerator.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/ZstdNet.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/ZstdNet.dll new file mode 100644 index 0000000..bc60788 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/ZstdNet.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/appsettings.Development.json b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/appsettings.json b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/appsettings.json new file mode 100644 index 0000000..414ab6a --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/appsettings.json @@ -0,0 +1,70 @@ +{ + //���ݿ����� /* MySql=0;SqlServer=1;Sqlite=2;Oracle=3;PostgreSQL=4;Dm=5;;;;;;;;*/ + "DBType": 0, + //���ݿ������ַ��� + "ConnectionStrings": { + "Sqlite": "Data Source=./Magic.db", + "SqlServer": "Server=BLACK; Database=zzzTest01; User=sa; Password=123456zls!;MultipleActiveResultSets=True;", + //"MySql": "Data Source=150.158.169.212;Database=cjyx;User ID=base;Password=123456;pooling=true;port=3306;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;", + "MySql": "Data Source=222.71.165.187;Database=cjyx;User ID=root;Password=qawsed,.123;pooling=true;port=3309;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;" + //"MySql": "Data Source=101.34.35.69;Database=cjyx_wm;User ID=base;Password=123456;pooling=true;port=3306;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;" + }, + //�Զ��������ݿ� + "SeedDBEnabled": false, + //�Զ���ʼ������ + "SeedDBDataEnabled": false, + //Logд��DB + "LogToDb": false, + + //Logging���� + "Logging": { + "LogLevel": { + "Default": "Information", //����Default����log4net����д�벻����־ + "zzz.AuthHelper.ApiResponseHandler": "Error" + }, + "Debug": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning" + } + }, + "Console": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning", + "Microsoft.Hosting.Lifetime": "Debug" + } + }, + "Log4Net": { + "Name": "zzz" + } + }, + "AllowedHosts": "*", + //�м������ + "Middleware": { + //��ʱ���� + "QuartzNetJob": true, + //����д��Log + "RequestResponseLog": true, + //���ܷ��� + "MiniProfiler": true, + "SignalR": true + }, + //Aop���� + "Aop": { + "LogAOP": true, + "TranAOP": true, + "SqlAOP": { + "OutToLogFile": true, + "OutToConsole": true + } + }, + //�ܼ���Api���� + "Gjp": { + "BasicUrl": "http://api.cmgrasp.com/CMGraspApi/GateWay", + "AppKey": "80DDA4A9D5804DA4B0887104529523C2", + "SercretKey": "EE379CED41C748B49024FC8CD81B5909", + "userid": "10488149", + "dbname": "M7215API����" + } +} diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/log4net.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/log4net.dll new file mode 100644 index 0000000..3d6a0a6 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/log4net.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/alpine-x64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/alpine-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/alpine-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-arm/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..6b0158a Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-arm64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..7c590b7 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-armel/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..bc22810 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-mips64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..c82d186 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-musl-x64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-x64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..484bfc2 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-x86/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..d4c96f7 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/osx-x64/native/libe_sqlite3.dylib b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3b9e7a4 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..3a19d3d Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..3fc08e4 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..3068646 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-arm/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..d019891 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..965f535 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-arm64/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..d8b3149 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..227b87b Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-x64/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..8d3ca0c Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..0add8c2 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-x86/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..3ad1bc9 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..9d5fe02 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..c9f3075 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll new file mode 100644 index 0000000..04879ec Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..c49c358 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..9a04b68 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..3fb4939 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..c4b9b5d Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..175d085 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..d8f2f45 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/web.config b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/web.config new file mode 100644 index 0000000..f9ad3ee --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/web.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/wwwroot/index.html b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/wwwroot/index.html new file mode 100644 index 0000000..73e74b5 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/wwwroot/index.html @@ -0,0 +1,10 @@ + + + + + Swagger入坑 + + + + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.deps.json b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.deps.json new file mode 100644 index 0000000..ebdd1fd --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.deps.json @@ -0,0 +1,3725 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Api/1.0.0": { + "dependencies": { + "Autofac.Extensions.DependencyInjection": "7.2.0", + "MicroKnights.Log4NetAdoNetAppender": "2.2.0", + "zzz.Extensions": "1.0.0" + }, + "runtime": { + "zzz.Api.dll": {} + } + }, + "Autofac/6.3.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net5.0/Autofac.dll": { + "assemblyVersion": "6.3.0.0", + "fileVersion": "6.3.0.0" + } + } + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "dependencies": { + "Autofac": "6.3.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + }, + "runtime": { + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.2.0.0" + } + } + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "dependencies": { + "Autofac": "6.3.0", + "Castle.Core": "4.4.0" + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.1.0" + } + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Castle.Core/4.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.4.0.0" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "HslCommunication/7.0.1": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": { + "assemblyVersion": "7.0.1.0", + "fileVersion": "7.0.1.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "MicroKnights.Log4NetAdoNetAppender/2.2.0": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "lib/netstandard2.1/MicroKnights.Log4NetAdoNetAppender.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "dependencies": { + "Microsoft.Extensions.Features": "6.0.5", + "System.IO.Pipelines": "6.0.3" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0" + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.0", + "Newtonsoft.Json": "13.0.1", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Newtonsoft.Json": "13.0.1", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "6.0.0-rc.1.21452.15", + "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + } + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections": "1.1.0", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0" + } + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.5.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Net.WebSockets.WebSocketProtocol": "4.5.1" + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.Extensions.Features/6.0.5": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Features.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {}, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll": { + "assemblyVersion": "6.1.0.0", + "fileVersion": "6.1.0.0" + } + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": {}, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MiniProfiler.AspNetCore/4.2.22": { + "dependencies": { + "MiniProfiler.Shared": "4.2.22", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "dependencies": { + "MiniProfiler.AspNetCore": "4.2.22" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.Shared/4.2.22": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.ComponentModel.Primitives": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Quartz/3.4.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.0.0" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "Scrutor/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "13.0.1", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + } + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.OpenApi": "1.2.3", + "Scrutor": "3.3.0", + "Swashbuckle.AspNetCore.Filters.Abstractions": "7.0.2", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.0-rc.1.21452.15", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/1.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Pipelines/6.0.3": { + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21309" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "runtime": { + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26606.5" + } + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.4.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "dependencies": { + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "zzz.Extensions/1.0.0": { + "dependencies": { + "Autofac": "6.3.0", + "Autofac.Extras.DynamicProxy": "6.0.1", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.SignalR": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson": "6.0.5", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.Log4Net.AspNetCore": "6.1.0", + "MiniProfiler.AspNetCore.Mvc": "4.2.22", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Filters": "7.0.2", + "Swashbuckle.AspNetCore.Newtonsoft": "6.3.1", + "log4net": "2.0.14", + "zzz.Services": "1.0.0", + "zzz.Tasks": "1.0.0" + }, + "runtime": { + "zzz.Extensions.dll": {} + } + }, + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "runtime": { + "zzz.Repository.dll": {} + } + }, + "zzz.Services/1.0.0": { + "dependencies": { + "HslCommunication": "7.0.1", + "zzz.Repository": "1.0.0" + }, + "runtime": { + "zzz.Services.dll": {} + } + }, + "zzz.Tasks/1.0.0": { + "dependencies": { + "Quartz": "3.4.0", + "zzz.Services": "1.0.0" + }, + "runtime": { + "zzz.Tasks.dll": {} + } + } + } + }, + "libraries": { + "zzz.Api/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Autofac/6.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gO4bli0N8tDnBHzbYktcnbXlmN6T+IT5W+FUGgCUaM6pwwHXIxOPoUGvfGum7sZpJJgfQNgjFFv80ZPuARgRdA==", + "path": "autofac/6.3.0", + "hashPath": "autofac.6.3.0.nupkg.sha512" + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S2Jor8pTV+8QSs96ENq/FhGdnrWsntGs93z0OXYlIivUWGPNXQHNCjFPfSBeBlHClvJFEXMvlkY32bAKy2YkPg==", + "path": "autofac.extensions.dependencyinjection/7.2.0", + "hashPath": "autofac.extensions.dependencyinjection.7.2.0.nupkg.sha512" + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ulCOXUjbJ5dljBPZf3gRxQNPRGqg/h1cNTZ4SpXK3qiamTfRsW3gXs2w/IJ+CIDmHrFGYXLqzNd5etvzwB8kA==", + "path": "autofac.extras.dynamicproxy/6.0.1", + "hashPath": "autofac.extras.dynamicproxy.6.0.1.nupkg.sha512" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Castle.Core/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "path": "castle.core/4.4.0", + "hashPath": "castle.core.4.4.0.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "HslCommunication/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "path": "hslcommunication/7.0.1", + "hashPath": "hslcommunication.7.0.1.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "MicroKnights.Log4NetAdoNetAppender/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FryL/5pLWynP8znM5LTXd4M+DmD+Ftls5D8IlyMwCbH7MFWviLyNvGneJZFjmdXschal5lTUOB3Cs1FkEPs7tQ==", + "path": "microknights.log4netadonetappender/2.2.0", + "hashPath": "microknights.log4netadonetappender.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OBbGvih5/CLHTbJVDiJ203TmKXCx8z539O2YGnfHmExbNtMwyQ9rgpqoxyYEVvQrVsqxRhXfh57DOCQYhxcOBQ==", + "path": "microsoft.aspnetcore.connections.abstractions/6.0.5", + "hashPath": "microsoft.aspnetcore.connections.abstractions.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BAibpoItxI5puk7YJbIGj95arZueM8B8M5xT1fXBn3hb3L2G3ucrZcYXv1gXdaroLbntUs8qeV8iuBrpjQsrKw==", + "path": "microsoft.aspnetcore.http/2.2.2", + "hashPath": "microsoft.aspnetcore.http.2.2.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==", + "path": "microsoft.aspnetcore.http.connections/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mYk5QUUjyXQmlyDHWDjkLYDArt97plwe6KsDsNVhDEQ+HgZMKGjISyM6YSA7BERQNR25kXBTbIYfSy1vePGQgg==", + "path": "microsoft.aspnetcore.http.connections.common/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+27ce/d0w7jyEmCCMrzwFRg6PHZxQ37Fmnf+es1qQudbip2rryxPdM8TRoXT6wNtdlzqHnIyXTtLjSs0uIDhxA==", + "path": "microsoft.aspnetcore.jsonpatch/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.jsonpatch.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/dspuIknGgOdBygH3bmjsIH5neuuJ7DHILXrKVPAoCykPARAIUBckZlIW6RrYqmbGTZYT/YFCzr/xDR5f0YiAA==", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "path": "microsoft.aspnetcore.routing/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==", + "path": "microsoft.aspnetcore.signalr/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N+MF6rs64kDDJ4zroD/NqRgXVSEkj/ppTX36AB2S43qm1y64YqWMCFCzLshkmi7SwWwQQPIByTNZDJfz4x7GjQ==", + "path": "microsoft.aspnetcore.signalr.common/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.common.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/7VUbkomGE7ph6R1JTtMji5QPGqesyCSeELFmfylaqFM+SdWf9EmbU3SCQPcIWhfv+RgbUWmTNfWWPzmVDTggw==", + "path": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==", + "path": "microsoft.aspnetcore.websockets/2.2.0", + "hashPath": "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" + }, + "Microsoft.Extensions.Features/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7KLF1jRFQjSttfoilwHU86cU9ZgxN4ABfQR8tQ9qEC5AzTGYIX+K5RDwGFVK320eTiBwWuutV24ecmxBxo7Eg==", + "path": "microsoft.extensions.features/6.0.5", + "hashPath": "microsoft.extensions.features.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qHb3GudscgrgEVByh86kAq3FMmjOdPIVoqvff3eokEP+QkZHzr42l4PlgxBsqhhlIX02SazC7ZdbfiFGDPRv9A==", + "path": "microsoft.extensions.logging.log4net.aspnetcore/6.1.0", + "hashPath": "microsoft.extensions.logging.log4net.aspnetcore.6.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "path": "microsoft.extensions.objectpool/2.2.0", + "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "path": "microsoft.net.http.headers/2.2.0", + "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2FpFllO0wFJmfIXY9NXr33jWgr88b7E4gAuPHSNYzNr5o2XIouynxAoLA+SShuDI2ySSsvnBHURiXRX7tz59YA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MiniProfiler.AspNetCore/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bBirB5d4Q0Bgx05Zg4yzXSmOHZQV4ZJhmxU3DGya4FZxNBwjaVHchqEKY0MJW5XLZo8axMAQm4yywgCvUlTymA==", + "path": "miniprofiler.aspnetcore/4.2.22", + "hashPath": "miniprofiler.aspnetcore.4.2.22.nupkg.sha512" + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nzCEaZnh77U9jw+c/qu4CtwYUpHEf+FH1ZMbYKMzIXr8CNNPlypSR6AJEAwjo3bq9TIJIpBMZIaK3inRLUCg4g==", + "path": "miniprofiler.aspnetcore.mvc/4.2.22", + "hashPath": "miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512" + }, + "MiniProfiler.Shared/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==", + "path": "miniprofiler.shared/4.2.22", + "hashPath": "miniprofiler.shared.4.2.22.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/6XtTu0ZHzge7tzZZN8UXpwG1K0Vgxi7C7R0QiTgxMtN4gkzNl4xNVUI4X3tymMwKWUdwqXvzkrJqt3MdMFXig==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Quartz/3.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N8350OAlQhd8zKg0ARFikGjh3bfAW/CF/KVxu2fTIlAALB/oC1eg54n/QAPYR5ryHuYyDr5G8/Qa4k+D/7OFRQ==", + "path": "quartz/3.4.0", + "hashPath": "quartz.3.4.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kuvqViO3OnqjWcNSQfanREtHgqJx6UK5UHPeIl7M666izpBErP4TDZctWnYvuz7l/hpWPkS3DsUAUPAyVS/zBA==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QnpBRH8jHD/TtGA5fjrdK/BRf+Oslt/M/X+r487ByPS2q+EZUNwEiaoPUuZcqFcLwqAY2Fw7SciCHTPiK2GTqg==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i/u0Svwgj6JM9SpaoJAqTiMU3B0UZEUC35JadEBgkihBi+RzyRe2VlGwhZ6B63r78CmzZ/VAYNXvLAnoIaRG/A==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOKLiiK96F+8pPB+ALL20VFsTDBolLfysxlBZDGlFXDEBEZfdfm4OYuInLtxYHCUSxpJpPivIYm9jasMzfgzEQ==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSKGjRiQWUHf2zpiRD3+q8lzjL89HhiR74cevVqShwVHtDEHjAhDU75w6mPdeFg9QSyqI32Ud3Qskr5WHNCw+g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "Scrutor/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "path": "scrutor/3.3.0", + "hashPath": "scrutor.3.3.0.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "path": "swashbuckle.aspnetcore/6.2.3", + "hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pjj/BdKFcXX1tdUrVjfW6SiRSiHC4dOnqszhU2PuS0RBXZUnGM18tXUrNU2pgPkSjWUnCiyvbjd3GBkEuNTBYA==", + "path": "swashbuckle.aspnetcore.filters/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RqZ+P+m2cw1TVsU9LUHNdLf4Ww7YSqDRt7UHRzauZJnRztDlNR4doOGzXLmWZzq+3CfZyS7NEsQyJmf4Y+7GMQ==", + "path": "swashbuckle.aspnetcore.filters.abstractions/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oy6BwAX+tcKO13n9bw3nPtITBvD03bAHDN2+lTaOY/cUNcQE/liu3xWjbkdhLeNTUiC+7h+lJvR7KUdI7CXz0w==", + "path": "swashbuckle.aspnetcore.newtonsoft/6.3.1", + "hashPath": "swashbuckle.aspnetcore.newtonsoft.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-idAFh4xhyJHYHfdLVOOn+BmscBul1OQbWsnL6YPJE8tO/0y6S79hDCvs6OY5VI093/9+1pYY3j31Zet9yaDZjA==", + "path": "swashbuckle.aspnetcore.swagger/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+uoBV4h/6NhCPLoTofSmuOnZ+usu4PW1jP6l4OHwPyu2frbYXGNpJsHs5uUXXn929OiVQkT8wo3Lj/o+P99Ejg==", + "path": "swashbuckle.aspnetcore.swaggergen/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wvyiJIm0HlaoN+AlJXhTpDrhYkN28OC/nEun5QpbPkZvbpgWSYvZ8Hr9/G4Bd1I0WSmFW18KQuE5DOA05Uubrw==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wAdmaCgCSe298gCNvAf6vlVPfQUR7h43Qr2tTtJFYeto/OvttRLyG4ch6/R2FpuWRMfxHBsAeHYrzjvEk1UM+Q==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Un05L1TLTGqBBRKAFngtzovaNeFL1EGzuUwW0AiTotM/GUWVE0c0xH4owZgdJ6nf6DuK866gbLqD3c/Ms7KSOg==", + "path": "system.collections.immutable/1.3.0", + "hashPath": "system.collections.immutable.1.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sRo7MpbD5VnFdLZA/uVuR5YJdDV4i+DyJTpQ1rk92wCzLE4cXJ+q7tzGr2HwkL/ujeFNcPo/fOs7LKdDyeyupA==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wJLrK/MQdlF3TmfNouxSsgtCRhsgx4tz2KdY/mpvirOcgMc2W4DDK7vR6RcSc6XRV4P6rzrLFXd9wUzp/iWp0g==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aX7O7aytoclkwEvOv4vCDBP2hDVsrAbQVAOJXUka7qCXbbZcqtv8CKrX646dSERl9aO/tY0/g2ezsa4jBAMQOg==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6jD8gKBZvTfp1PEuqAkpMZvG9hF+gzGIvhvRh0K2qDApsiEpRZ9ZUlWE2nACpPdWP8w3DaL0TQAHuA7gXDSupA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "path": "system.diagnostics.tracesource/4.3.0", + "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ChcZW/eQtXpPDW7qMqlqK7xGW4A8hhz7/iY4J5hsvhzPsza7Cml+hdBhm5vAh6KhHcXzMvjfLcbChmZsYPlJsA==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zf/fX6NjK+eL01E0a5+pZb2NaitHwaVPlh7Wc62+wpnAtn1hA0ye8WAMV4r8DJv+AghKZYBwQwGqZJ9ikWLLkw==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ttt2PGgBfejL4xBEdMMd2E+Mqn/wC47jhMBtqRNJeH6uYa2j3fTDi1Jj1hAY5sfgbJcrvfSO46G1pufONMmfmA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kzMaA/htO8n7p5FQvyVXA9Q66+LntW+m0vp+Vnl5gSWsc6btlIYIC3aXs3DvtvdV0ue1tX/Mslkiei1vLgh3WA==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yn4CfuDOHBxI0b6JNSQJGqCIsuEqcjxQIAxktq316Jhz9Q0aRKqqGN7QNwd5fyNqz7mNMXfKDt1bJrtggkt8/g==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kRj3owqKUOxPcvQpK0VItuLGg/aXPjUxzT5ujrfMW0RrAQ7FJYB+mFiCawtGQVQatVCKr78TX39cJueK9ic8wA==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1d5+nGi+bWLgg0/wPO1IKJGSIe8Gy+WsMoT11T472mWHryC/qCISRl/v9w4rmk+72uX/1DFgBjBljUXyAK4jNg==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BnZgb92GKxi/DjV7WbZo2Sm7G8pImuLocQAHIkuFrRExeBMyjX0sIRY039HbnBObE7t5ihxRP3wYPSJ0Zt/apQ==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "path": "system.io.pipelines/6.0.3", + "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dGfhVR2KQhRwrl0D8yb8gJLpr2iX4Hnud1oNRwUbafrqskstG2kC3NMNp/t7QRzdb1mlNqc99F2OjXYKyHzdnA==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MHtkLrHBt/UkTMLaBYgCgrm2WBogOkEjDRlNJSxy18uQWEMN4ymSywGNwNHS8ATNyaGJzddvmdWI/UjLaLyskg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6sVcH1+qeVKf7xD/7k0ouAA7830LIw7Ltwo4bEl9ExyRVN/YNUhka9CBcd2Pp4Ugn14/cIY/i39bSTMUOmftFw==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S70uFEyXRAuRBxWsQWyVciioHMGOYxpob7a/TNchHKF9ceQPktdtcdl3/vktvUJU8B5ES7lG1wkglSWXYKHjcA==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==", + "path": "system.net.websockets.websocketprotocol/4.5.1", + "hashPath": "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TqRGJ6R6S9VpsXm2GpRy87TFXMxVqtYMrZtQFZHNJadQ1njAlpp0F5PfsWH04UNZWeY9X1jK+Kr8faJREA1kfg==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-13ihEbKKWpJYwZpo1kcDv2kW8eCK9twslQXpuqW/ulpHFhB2vuxbCuQgllNLjiSuL3uEKSPz34wC0xRb5hY9OA==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cYyPyIPBNlROATH5CjGQpvFhPdCrkDyVpChahZmpZlpXE4wQS+f6fUl+A/16U8/IShAiS3ofjX6bHuwRyHHWbQ==", + "path": "system.reflection.metadata/1.4.1", + "hashPath": "system.reflection.metadata.1.4.1.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJGsxoZ+9PXn+Qdjc5Nk6yJVqLk8lRR3k3uEGja59sC1EbkzMbVMqPFNOQmYxaO5Fbid8Bm29o+rB/PdDCDXNw==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yhyMfLA28dYAFahmTy+lM6rDrrca84R76fk8J0GH9gdtcZe6NuA7bWhLOCcWOEi74jZOIjtjtRPzkdSv6KlATQ==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-djZnX43T2YuLt526S/mq2pBiHQS8WfAUAg/nOt+oz6MkTo6HKAANCytQEFXmv6jyrumb8ohYe3ht2sEUMi9LMQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jw3ielASDELVDT+VPsL6PGRHp50mytxUnVp7UlKZWS3l5cxWAhZIWfTiunuqyy90WKcEIehjHkfpRqyzO5eFmw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPdBt8ZxEzxDYhPnWz+eegZMhyYBzea/Oi7AuuqwtyCATswlsMdA3tiw/U/rMP+MvDa4DIhI1inEwEDYArfuJg==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DG7gpkRnHPaofkkKx5jWKqI9gjcHhDOt3BeCMKRTImnngZvP1jlgYMXYXxY+S8XWyOoyU8KF5Tv0ZrG9FYREvQ==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xFN3KCCvtAdfdy+AngirK0Tku73Ne9i5NmV995PGnHOn6OvNx5j/f2Aa6FuEoZT1YshMjOlWfEKI8WAjnaxtRg==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iwhUBeB6oQ10iH2CRQeLNTHyQX9lxiMNZuC9nMY0IhiQlRaDtcwTVaGWSTShduj0V8o07kOgI53QayLnHt6i0A==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6hQ2W40ImHD8OSBL8zWYSwdae6iryMpeEThocf8u1m/0LFZUmnRtKyXZtXNNqwkbha/mDcjS+GbbCk+whXz0sA==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aUDiT8Qv4rbc1YwvWhBM76PzeoHLQLook/5PiXhFsBur7cniIsd2K0MhGDZ1M1IN9j7y6HdC7lnk+TS37lJEZA==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3h7hlVK5u8nzCUQFFYj6yw6NKYgnrUySo0oaXN21LyrOQpr052u5rvnSxUGuIKO7M9jRv1FaLZOGVI/+7olf9A==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IKcG64NTLVkZVHawu61/TldF/J/Vb7phwiECTLwB30N7NoUkXs1BquSuCJHyHCLUC0vEmEU0vqnQZY7T21Gc1Q==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EyRjbRA4pD4dG4O4XEzITKvzLRpauU4LhvS1UhiWUlvk5bUcfhFDMw1obsrvfpfD3zvqJ6PXm6Y4r2tUFf1yCQ==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MOrSyJ8eyHXyB4xMFN7AIZ5/B9ODYQxmspxxD2r5Zd8Os6hUAmVRUgl6s6Qml/j4nJGcsOHgonpDYmEAeuADMw==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Extensions/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Tasks/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.dll new file mode 100644 index 0000000..66b0b26 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.exe b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.exe new file mode 100644 index 0000000..0e2703c Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.exe differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.pdb b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.pdb new file mode 100644 index 0000000..4383d8e Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.runtimeconfig.json b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.runtimeconfig.json new file mode 100644 index 0000000..dfb1b77 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "6.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.xml b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.xml new file mode 100644 index 0000000..69d94ab --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Api.xml @@ -0,0 +1,410 @@ + + + + zzz.Api + + + + + 持续运行 + + + + + 持续运行 + + + + + + + + 激活 + + + + + 立即执行任务 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 余宏大屏数据 + + + + + 余宏大屏数据 + + + + + + + + 工单列表数据 + + + + + + 工单详情 + + + + + + 动态月订单信息数据 + + + + + + 设备信息 + + + + + + 定时任务 + + + + + 构造 + + + + + + + + 分页获取 + + + + + + + + 添加计划任务 + + + + + + + 修改计划任务 + + + + + + + 删除一个任务 + + + + + + + 启动计划任务 + + + + + + + 停止一个计划任务 + + + + + + + 暂停一个计划任务 + + + + + + + 恢复一个计划任务 + + + + + + + 重启一个计划任务 + + + + + + + 获取任务命名空间 + + + + + + 立即执行任务 + + + + + + + + + + + + + + + + + + + + + 测试 增加数据 BaseService + + + + + + 测试 增加数据 接口 + + + + + + 测试 修改数据 BaseService + + + + + + 测试 修改部分数据 BaseService + + + + + + 测试 修改数据 接口 + + + + + + 测试 修改部分数据 接口 + + + + + + 测试 软删除数据 BaseService + + + + + + 测试 软删除数据 接口 + + + + + + 测试取单条数据 BaseService + + + + + + + 测试取单条数据 IF + + + + + + + 测试分页数据 Baseservice + + + + + + + 测试分页数据 IF + + + + + + + + + + + + + 读取13线数据 + + + + + + 读取2线数据 + + + + + 读取15线数据 + + + + + + 读取7线数据 + + + + + + 数据库操作 + + + + + 构造 + + + + + + 同步表结果 Entity-->数据库 + + + + + + + 全局异常错误日志 + + + + + 异常拦截构造函数 + + + + + + + + 异常发生 + + + + + + 自定义返回格式 + + + + + + + + + + + + + + + + + + + 返回错误信息 + + + + + 生产环境的消息 + + + + + 开发环境的消息 + + + + diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Common.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Common.dll new file mode 100644 index 0000000..6d6f1c6 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Common.pdb b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Common.pdb new file mode 100644 index 0000000..4c5a6d4 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Extensions.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Extensions.dll new file mode 100644 index 0000000..4f36965 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Extensions.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Extensions.pdb b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Extensions.pdb new file mode 100644 index 0000000..8717985 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Extensions.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Model.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Model.dll new file mode 100644 index 0000000..98ddff2 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Model.pdb b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Model.pdb new file mode 100644 index 0000000..ee6d136 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Model.xml b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Model.xml new file mode 100644 index 0000000..90ea772 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Model.xml @@ -0,0 +1,1543 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 2线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Repository.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Repository.dll new file mode 100644 index 0000000..991414c Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Repository.pdb b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Repository.pdb new file mode 100644 index 0000000..b9bcd32 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Repository.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Services.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Services.dll new file mode 100644 index 0000000..691a5d0 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Services.pdb b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Services.pdb new file mode 100644 index 0000000..79fd96c Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Services.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Services.xml b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Services.xml new file mode 100644 index 0000000..623dba3 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Services.xml @@ -0,0 +1,941 @@ + + + + zzz.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 种子数据 服务 + + + + + 构造 + + + + + + 异步添加种子数据 + + + + + + + + 同步表结构 + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 种子数据 接口 + + + + + 同步表结构 + + + + + + + 设备名称 + + + + + 设备利用率DTO + + + + + x轴 + + + + + series + + + + + 动态月订单信息数据 + + + + + 生产计划达成率 + + + + + 订单交付率 + + + + + 生产数量 + + + + + 设备利用率 + + + + + 产品合格率 + + + + + 大屏生产工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 完成进度 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 各产品生产数量 + + + + + x轴 + + + + + series + + + + + PLC硬件信息 + + + + + eqmt_id + + + + + ip + + + + + 端口 + + + + + 读取PLC数据接口 + + + + + 读取13线数据 + + + + + 读取16线数据 + + + + + 读取17线数据 + + + + + 读取18线数据 + + + + + 读取19线数据 + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 读取PLC数据服务 + + + + + 构造 + + + + + 打开连接 + + + + + + + + 关闭连接 + + + + + 读取13线数据 + + + + + 读取16线数据 + 一个端口 + + + + + 读取19线数据 + 一个端口 + + + + + 读取17线数据 + 两个端口 + + + + + 读取18线数据 + 两个端口 + + + + + 创建间隔采集数据 + + + + + + 班次产量数据 + + + + + + 计算OEE + + + + + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Tasks.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Tasks.dll new file mode 100644 index 0000000..57d97c0 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Tasks.pdb b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Tasks.pdb new file mode 100644 index 0000000..e87eaee Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PubTmp/Out/zzz.Tasks.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/PublishOutputs.52e0da184f.txt b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PublishOutputs.52e0da184f.txt new file mode 100644 index 0000000..c29f47a --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/PublishOutputs.52e0da184f.txt @@ -0,0 +1,126 @@ +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Api.exe +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Log4net.config +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\appsettings.Development.json +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\appsettings.json +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Api.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Api.deps.json +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Api.runtimeconfig.json +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Api.pdb +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Autofac.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Autofac.Extensions.DependencyInjection.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Autofac.Extras.DynamicProxy.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\AutoMapper.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\AutoMapper.Extensions.Microsoft.DependencyInjection.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\BouncyCastle.Crypto.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Castle.Core.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Google.Protobuf.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\HslCommunication.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\K4os.Compression.LZ4.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\K4os.Compression.LZ4.Streams.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\K4os.Hash.xxHash.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\log4net.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\MicroKnights.Log4NetAdoNetAppender.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.AspNetCore.Connections.Abstractions.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.AspNetCore.JsonPatch.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.AspNetCore.SignalR.Common.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.Data.SqlClient.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.Data.Sqlite.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.Extensions.Configuration.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.Extensions.DependencyModel.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.Extensions.Features.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.Identity.Client.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.IdentityModel.JsonWebTokens.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.IdentityModel.Logging.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.IdentityModel.Protocols.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.IdentityModel.Tokens.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.OpenApi.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Microsoft.Win32.SystemEvents.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\MiniProfiler.AspNetCore.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\MiniProfiler.AspNetCore.Mvc.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\MiniProfiler.Shared.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\MySql.Data.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Ubiety.Dns.Core.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\ZstdNet.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Newtonsoft.Json.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Newtonsoft.Json.Bson.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Npgsql.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Oracle.ManagedDataAccess.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Quartz.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Scrutor.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Serilog.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Serilog.Sinks.File.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\SQLitePCLRaw.batteries_v2.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\SQLitePCLRaw.nativelibrary.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\SQLitePCLRaw.core.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\SQLitePCLRaw.provider.dynamic_cdecl.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\SqlSugar.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\DmProvider.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Kdbndp.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Filters.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Filters.Abstractions.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Newtonsoft.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Swagger.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerGen.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerUI.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\System.Configuration.ConfigurationManager.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\System.Diagnostics.PerformanceCounter.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\System.DirectoryServices.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\System.DirectoryServices.Protocols.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\System.Drawing.Common.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\System.IdentityModel.Tokens.Jwt.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\System.IO.Pipelines.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\System.Net.WebSockets.WebSocketProtocol.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\System.Runtime.Caching.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\System.Security.Cryptography.ProtectedData.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\System.Security.Permissions.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\System.Windows.Extensions.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\WebApiClient.Extensions.DependencyInjection.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\WebApiClient.JIT.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\Yitter.IdGenerator.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\alpine-x64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\linux-arm\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\linux-arm64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\linux-armel\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\linux-mips64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\linux-musl-x64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\linux-x64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\linux-x86\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\osx-x64\native\libe_sqlite3.dylib +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win-arm\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win-arm64\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win-x64\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win-x86\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Common.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Extensions.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Model.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Repository.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Services.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Tasks.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Extensions.pdb +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Common.pdb +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Model.pdb +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Model.xml +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Repository.pdb +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Services.pdb +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Services.xml +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Tasks.pdb +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\PubTmp\Out\zzz.Api.xml diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/apphost.exe b/yuhong_plc/zzz.Api/obj/Debug/net6.0/apphost.exe new file mode 100644 index 0000000..0e2703c Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/apphost.exe differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.AssemblyInfo.cs b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.AssemblyInfo.cs new file mode 100644 index 0000000..b86a0ec --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("cjyx.Api")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("cjyx.Api")] +[assembly: System.Reflection.AssemblyTitleAttribute("cjyx.Api")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.AssemblyInfoInputs.cache new file mode 100644 index 0000000..b4f2545 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +c35293fbaf5195386c96eaa73aa52360485d8a98 diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7b612bd --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = cjyx.Api +build_property.RootNamespace = cjyx.Api +build_property.ProjectDir = D:\work\长江云息\Src\cjyx\cjyx.Api\ +build_property.RazorLangVersion = 6.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = D:\work\长江云息\Src\cjyx\cjyx.Api +build_property._RazorSourceGeneratorDebug = diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.GlobalUsings.g.cs b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.MvcApplicationPartsAssemblyInfo.cache b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.MvcApplicationPartsAssemblyInfo.cs b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..2975bf7 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,20 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("cjyx.Extensions")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.Filters")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.Newtonsoft")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.assets.cache b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.assets.cache new file mode 100644 index 0000000..7f691ce Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.assets.cache differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.csproj.AssemblyReference.cache new file mode 100644 index 0000000..204fdef Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.csproj.CopyComplete b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a93767d --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +32d5492689f50baa29b4c4e6c431cec0d4352aee diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..00f6a2b --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.csproj.FileListAbsolute.txt @@ -0,0 +1,134 @@ +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\cjyx.Api.csproj.AssemblyReference.cache +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\cjyx.Api.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\cjyx.Api.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\cjyx.Api.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\cjyx.Api.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\cjyx.Api.MvcApplicationPartsAssemblyInfo.cache +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\appsettings.Development.json +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\appsettings.json +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Api.exe +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Api.deps.json +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Api.runtimeconfig.json +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Api.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\ref\cjyx.Api.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Api.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Autofac.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Autofac.Extensions.DependencyInjection.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Autofac.Extras.DynamicProxy.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\AutoMapper.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\BouncyCastle.Crypto.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Castle.Core.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Google.Protobuf.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\K4os.Compression.LZ4.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\K4os.Compression.LZ4.Streams.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\K4os.Hash.xxHash.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\log4net.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.Data.SqlClient.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.Data.Sqlite.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.Extensions.Configuration.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.Identity.Client.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.OpenApi.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\MiniProfiler.Shared.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\MySql.Data.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Ubiety.Dns.Core.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\ZstdNet.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Newtonsoft.Json.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Npgsql.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Oracle.ManagedDataAccess.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Serilog.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Serilog.Sinks.File.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\SQLitePCLRaw.batteries_v2.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\SQLitePCLRaw.nativelibrary.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\SQLitePCLRaw.core.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\SQLitePCLRaw.provider.dynamic_cdecl.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\SqlSugar.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\DmProvider.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Kdbndp.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.DirectoryServices.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.Drawing.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.Runtime.Caching.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.Security.Permissions.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.Windows.Extensions.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\WebApiClient.Extensions.DependencyInjection.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\WebApiClient.JIT.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Yitter.IdGenerator.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\alpine-x64\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\linux-arm\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\linux-arm64\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\linux-armel\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\linux-mips64\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\linux-x64\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\linux-x86\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\osx-x64\native\libe_sqlite3.dylib +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-arm\native\e_sqlite3.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-arm64\native\e_sqlite3.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-x64\native\e_sqlite3.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-x86\native\e_sqlite3.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Extensions.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Services.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Extensions.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Common.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Model.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Repository.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Services.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\cjyx.Api.MvcApplicationPartsAssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\staticwebassets.build.json +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\staticwebassets.development.json +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\scopedcss\bundle\cjyx.Api.styles.css +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\cjyx.Api.csproj.CopyComplete +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\cjyx.Api.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\ref\cjyx.Api.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\cjyx.Api.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\cjyx.Api.genruntimeconfig.cache +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Log4net.config +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Api.staticwebassets.runtime.json +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\MicroKnights.Log4NetAdoNetAppender.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Quartz.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Tasks.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Tasks.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Api.xml +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.AspNetCore.JsonPatch.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.Extensions.DependencyModel.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Newtonsoft.Json.Bson.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Scrutor.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Filters.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Filters.Abstractions.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Newtonsoft.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Model.xml +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Services.xml +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.dll new file mode 100644 index 0000000..6660982 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.genruntimeconfig.cache b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.genruntimeconfig.cache new file mode 100644 index 0000000..e2c3acd --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.genruntimeconfig.cache @@ -0,0 +1 @@ +ba62e5dac3b55a18d4d37e6376446a1b7370e26b diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.pdb b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.pdb new file mode 100644 index 0000000..512bf5f Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/cjyx.Api.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/project.razor.json b/yuhong_plc/zzz.Api/obj/Debug/net6.0/project.razor.json new file mode 100644 index 0000000..323fe58 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/project.razor.json @@ -0,0 +1,16469 @@ +{ + "FilePath": "d:\\work\\长江云息\\余宏企业\\Src\\YuhongPlcRead\\zzz.Api\\zzz.Api.csproj", + "Configuration": { + "ConfigurationName": "MVC-3.0", + "LanguageVersion": "6.0", + "Extensions": [ + { + "ExtensionName": "MVC-3.0" + } + ] + }, + "ProjectWorkspaceState": { + "TagHelpers": [ + { + "HashCode": 601091348, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n Combines the behaviors of and ,\n so that it displays the page matching the specified route but only if the user\n is authorized to see it.\n \n Additionally, this component supplies a cascading parameter of type ,\n which makes the user's current authentication state available to descendants.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "AuthorizeRouteView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "NotAuthorized", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", + "Metadata": { + "Common.PropertyName": "NotAuthorized", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Authorizing", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", + "Metadata": { + "Common.PropertyName": "Authorizing", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Resource", + "TypeName": "System.Object", + "Documentation": "\n \n The resource to which access is being controlled.\n \n ", + "Metadata": { + "Common.PropertyName": "Resource" + } + }, + { + "Kind": "Components.Component", + "Name": "RouteData", + "TypeName": "Microsoft.AspNetCore.Components.RouteData", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ", + "Metadata": { + "Common.PropertyName": "RouteData" + } + }, + { + "Kind": "Components.Component", + "Name": "DefaultLayout", + "TypeName": "System.Type", + "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ", + "Metadata": { + "Common.PropertyName": "DefaultLayout" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView" + } + }, + { + "HashCode": 1141037198, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n Combines the behaviors of and ,\n so that it displays the page matching the specified route but only if the user\n is authorized to see it.\n \n Additionally, this component supplies a cascading parameter of type ,\n which makes the user's current authentication state available to descendants.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "NotAuthorized", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", + "Metadata": { + "Common.PropertyName": "NotAuthorized", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Authorizing", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", + "Metadata": { + "Common.PropertyName": "Authorizing", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Resource", + "TypeName": "System.Object", + "Documentation": "\n \n The resource to which access is being controlled.\n \n ", + "Metadata": { + "Common.PropertyName": "Resource" + } + }, + { + "Kind": "Components.Component", + "Name": "RouteData", + "TypeName": "Microsoft.AspNetCore.Components.RouteData", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ", + "Metadata": { + "Common.PropertyName": "RouteData" + } + }, + { + "Kind": "Components.Component", + "Name": "DefaultLayout", + "TypeName": "System.Type", + "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ", + "Metadata": { + "Common.PropertyName": "DefaultLayout" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1389977784, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "NotAuthorized", + "ParentTag": "AuthorizeRouteView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -2131162756, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "NotAuthorized", + "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -578876356, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Authorizing", + "ParentTag": "AuthorizeRouteView" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -1438500503, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Authorizing", + "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1116304108, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n Displays differing content depending on the user's authorization status.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "AuthorizeView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "Policy", + "TypeName": "System.String", + "Documentation": "\n \n The policy name that determines whether the content can be displayed.\n \n ", + "Metadata": { + "Common.PropertyName": "Policy" + } + }, + { + "Kind": "Components.Component", + "Name": "Roles", + "TypeName": "System.String", + "Documentation": "\n \n A comma delimited list of roles that are allowed to display the content.\n \n ", + "Metadata": { + "Common.PropertyName": "Roles" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content that will be displayed if the user is authorized.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "NotAuthorized", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", + "Metadata": { + "Common.PropertyName": "NotAuthorized", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Authorized", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content that will be displayed if the user is authorized.\n If you specify a value for this parameter, do not also specify a value for .\n \n ", + "Metadata": { + "Common.PropertyName": "Authorized", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Authorizing", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", + "Metadata": { + "Common.PropertyName": "Authorizing", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Resource", + "TypeName": "System.Object", + "Documentation": "\n \n The resource to which access is being controlled.\n \n ", + "Metadata": { + "Common.PropertyName": "Resource" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView" + } + }, + { + "HashCode": 1855493956, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n Displays differing content depending on the user's authorization status.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "Policy", + "TypeName": "System.String", + "Documentation": "\n \n The policy name that determines whether the content can be displayed.\n \n ", + "Metadata": { + "Common.PropertyName": "Policy" + } + }, + { + "Kind": "Components.Component", + "Name": "Roles", + "TypeName": "System.String", + "Documentation": "\n \n A comma delimited list of roles that are allowed to display the content.\n \n ", + "Metadata": { + "Common.PropertyName": "Roles" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content that will be displayed if the user is authorized.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "NotAuthorized", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", + "Metadata": { + "Common.PropertyName": "NotAuthorized", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Authorized", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content that will be displayed if the user is authorized.\n If you specify a value for this parameter, do not also specify a value for .\n \n ", + "Metadata": { + "Common.PropertyName": "Authorized", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Authorizing", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", + "Metadata": { + "Common.PropertyName": "Authorizing", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Resource", + "TypeName": "System.Object", + "Documentation": "\n \n The resource to which access is being controlled.\n \n ", + "Metadata": { + "Common.PropertyName": "Resource" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -229340227, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n The content that will be displayed if the user is authorized.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "AuthorizeView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": 606176489, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n The content that will be displayed if the user is authorized.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1597154817, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "NotAuthorized", + "ParentTag": "AuthorizeView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": 49803878, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "NotAuthorized", + "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1681451122, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n The content that will be displayed if the user is authorized.\n If you specify a value for this parameter, do not also specify a value for .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Authorized", + "ParentTag": "AuthorizeView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'Authorized' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -1893687490, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n The content that will be displayed if the user is authorized.\n If you specify a value for this parameter, do not also specify a value for .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Authorized", + "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'Authorized' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 414042824, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Authorizing", + "ParentTag": "AuthorizeView" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -1894780591, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Authorizing", + "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1861316493, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "CascadingAuthenticationState" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content to which the authentication state should be provided.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState" + } + }, + { + "HashCode": -1292783421, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content to which the authentication state should be provided.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -762668923, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n The content to which the authentication state should be provided.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "CascadingAuthenticationState" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": 489644546, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", + "Documentation": "\n \n The content to which the authentication state should be provided.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1945895355, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.CascadingValue", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n A component that provides a cascading value to all descendant components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "CascadingValue" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.CascadingValue component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content to which the value should be provided.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n The value to be provided.\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Name", + "TypeName": "System.String", + "Documentation": "\n \n Optionally gives a name to the provided value. Descendant components\n will be able to receive the value by specifying this name.\n \n If no name is specified, then descendant components will receive the\n value based the type of value they are requesting.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + }, + { + "Kind": "Components.Component", + "Name": "IsFixed", + "TypeName": "System.Boolean", + "Documentation": "\n \n If true, indicates that will not change. This is a\n performance optimization that allows the framework to skip setting up\n change notifications. Set this flag only if you will not change\n during the component's lifetime.\n \n ", + "Metadata": { + "Common.PropertyName": "IsFixed" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": -1914439800, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.CascadingValue", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n A component that provides a cascading value to all descendant components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.CascadingValue" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.CascadingValue component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content to which the value should be provided.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n The value to be provided.\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Name", + "TypeName": "System.String", + "Documentation": "\n \n Optionally gives a name to the provided value. Descendant components\n will be able to receive the value by specifying this name.\n \n If no name is specified, then descendant components will receive the\n value based the type of value they are requesting.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + }, + { + "Kind": "Components.Component", + "Name": "IsFixed", + "TypeName": "System.Boolean", + "Documentation": "\n \n If true, indicates that will not change. This is a\n performance optimization that allows the framework to skip setting up\n change notifications. Set this flag only if you will not change\n during the component's lifetime.\n \n ", + "Metadata": { + "Common.PropertyName": "IsFixed" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -700126053, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n The content to which the value should be provided.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "CascadingValue" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -177216428, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n The content to which the value should be provided.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.CascadingValue" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1032713598, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.DynamicComponent", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n A component that renders another component dynamically according to its\n parameter.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "DynamicComponent" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "Type", + "TypeName": "System.Type", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the type of the component to be rendered. The supplied type must\n implement .\n \n ", + "Metadata": { + "Common.PropertyName": "Type" + } + }, + { + "Kind": "Components.Component", + "Name": "Parameters", + "TypeName": "System.Collections.Generic.IDictionary", + "Documentation": "\n \n Gets or sets a dictionary of parameters to be passed to the component.\n \n ", + "Metadata": { + "Common.PropertyName": "Parameters" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.DynamicComponent" + } + }, + { + "HashCode": 1928872016, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.DynamicComponent", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n A component that renders another component dynamically according to its\n parameter.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.DynamicComponent" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "Type", + "TypeName": "System.Type", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the type of the component to be rendered. The supplied type must\n implement .\n \n ", + "Metadata": { + "Common.PropertyName": "Type" + } + }, + { + "Kind": "Components.Component", + "Name": "Parameters", + "TypeName": "System.Collections.Generic.IDictionary", + "Documentation": "\n \n Gets or sets a dictionary of parameters to be passed to the component.\n \n ", + "Metadata": { + "Common.PropertyName": "Parameters" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.DynamicComponent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1364251577, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.LayoutView", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Displays the specified content inside the specified layout and any further\n nested layouts.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "LayoutView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the content to display.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Layout", + "TypeName": "System.Type", + "Documentation": "\n \n Gets or sets the type of the layout in which to display the content.\n The type must implement and accept a parameter named .\n \n ", + "Metadata": { + "Common.PropertyName": "Layout" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView" + } + }, + { + "HashCode": 197362166, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.LayoutView", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Displays the specified content inside the specified layout and any further\n nested layouts.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.LayoutView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the content to display.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Layout", + "TypeName": "System.Type", + "Documentation": "\n \n Gets or sets the type of the layout in which to display the content.\n The type must implement and accept a parameter named .\n \n ", + "Metadata": { + "Common.PropertyName": "Layout" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1394155708, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Gets or sets the content to display.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "LayoutView" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -380841197, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Gets or sets the content to display.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.LayoutView" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 2011135580, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.RouteView", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Displays the specified page component, rendering it inside its layout\n and any further nested layouts.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "RouteView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "RouteData", + "TypeName": "Microsoft.AspNetCore.Components.RouteData", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ", + "Metadata": { + "Common.PropertyName": "RouteData" + } + }, + { + "Kind": "Components.Component", + "Name": "DefaultLayout", + "TypeName": "System.Type", + "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ", + "Metadata": { + "Common.PropertyName": "DefaultLayout" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.RouteView" + } + }, + { + "HashCode": -383066204, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.RouteView", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Displays the specified page component, rendering it inside its layout\n and any further nested layouts.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.RouteView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "RouteData", + "TypeName": "Microsoft.AspNetCore.Components.RouteData", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ", + "Metadata": { + "Common.PropertyName": "RouteData" + } + }, + { + "Kind": "Components.Component", + "Name": "DefaultLayout", + "TypeName": "System.Type", + "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ", + "Metadata": { + "Common.PropertyName": "DefaultLayout" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.RouteView", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 696182095, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Routing.Router", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n A component that supplies route data corresponding to the current navigation state.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Router" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AppAssembly", + "TypeName": "System.Reflection.Assembly", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the assembly that should be searched for components matching the URI.\n \n ", + "Metadata": { + "Common.PropertyName": "AppAssembly" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAssemblies", + "TypeName": "System.Collections.Generic.IEnumerable", + "Documentation": "\n \n Gets or sets a collection of additional assemblies that should be searched for components\n that can match URIs.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAssemblies" + } + }, + { + "Kind": "Components.Component", + "Name": "NotFound", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", + "Metadata": { + "Common.PropertyName": "NotFound", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Found", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", + "Metadata": { + "Common.PropertyName": "Found", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Navigating", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ", + "Metadata": { + "Common.PropertyName": "Navigating", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnNavigateAsync", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a handler that should be called before navigating to a new page.\n \n ", + "Metadata": { + "Common.PropertyName": "OnNavigateAsync", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "PreferExactMatches", + "TypeName": "System.Boolean", + "Documentation": "\n \n Gets or sets a flag to indicate whether route matching should prefer exact matches\n over wildcards.\n This property is obsolete and configuring it does nothing.\n \n ", + "Metadata": { + "Common.PropertyName": "PreferExactMatches" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router" + } + }, + { + "HashCode": -770142953, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Routing.Router", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n A component that supplies route data corresponding to the current navigation state.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Routing.Router" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AppAssembly", + "TypeName": "System.Reflection.Assembly", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the assembly that should be searched for components matching the URI.\n \n ", + "Metadata": { + "Common.PropertyName": "AppAssembly" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAssemblies", + "TypeName": "System.Collections.Generic.IEnumerable", + "Documentation": "\n \n Gets or sets a collection of additional assemblies that should be searched for components\n that can match URIs.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAssemblies" + } + }, + { + "Kind": "Components.Component", + "Name": "NotFound", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", + "Metadata": { + "Common.PropertyName": "NotFound", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Found", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", + "Metadata": { + "Common.PropertyName": "Found", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Navigating", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ", + "Metadata": { + "Common.PropertyName": "Navigating", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnNavigateAsync", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a handler that should be called before navigating to a new page.\n \n ", + "Metadata": { + "Common.PropertyName": "OnNavigateAsync", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "PreferExactMatches", + "TypeName": "System.Boolean", + "Documentation": "\n \n Gets or sets a flag to indicate whether route matching should prefer exact matches\n over wildcards.\n This property is obsolete and configuring it does nothing.\n \n ", + "Metadata": { + "Common.PropertyName": "PreferExactMatches" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1258842005, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "NotFound", + "ParentTag": "Router" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -654628103, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "NotFound", + "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -787978660, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Found", + "ParentTag": "Router" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'Found' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Found", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -861648063, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Found", + "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'Found' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Found", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 963649902, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Navigating", + "ParentTag": "Router" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": 1148093520, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Navigating", + "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 943005808, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", + "AssemblyName": "Microsoft.AspNetCore.Components.Forms", + "Documentation": "\n \n Adds Data Annotations validation support to an .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "DataAnnotationsValidator" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator" + } + }, + { + "HashCode": 1866440821, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", + "AssemblyName": "Microsoft.AspNetCore.Components.Forms", + "Documentation": "\n \n Adds Data Annotations validation support to an .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 643239486, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Renders a form element that cascades an to descendants.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "EditForm" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created form element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "EditContext", + "TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext", + "Documentation": "\n \n Supplies the edit context explicitly. If using this parameter, do not\n also supply , since the model value will be taken\n from the property.\n \n ", + "Metadata": { + "Common.PropertyName": "EditContext" + } + }, + { + "Kind": "Components.Component", + "Name": "Model", + "TypeName": "System.Object", + "Documentation": "\n \n Specifies the top-level model object for the form. An edit context will\n be constructed for this model. If using this parameter, do not also supply\n a value for .\n \n ", + "Metadata": { + "Common.PropertyName": "Model" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnSubmit", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n A callback that will be invoked when the form is submitted.\n \n If using this parameter, you are responsible for triggering any validation\n manually, e.g., by calling .\n \n ", + "Metadata": { + "Common.PropertyName": "OnSubmit", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnValidSubmit", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be valid.\n \n ", + "Metadata": { + "Common.PropertyName": "OnValidSubmit", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnInvalidSubmit", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be invalid.\n \n ", + "Metadata": { + "Common.PropertyName": "OnInvalidSubmit", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm" + } + }, + { + "HashCode": 1317893193, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Renders a form element that cascades an to descendants.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.EditForm" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created form element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "EditContext", + "TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext", + "Documentation": "\n \n Supplies the edit context explicitly. If using this parameter, do not\n also supply , since the model value will be taken\n from the property.\n \n ", + "Metadata": { + "Common.PropertyName": "EditContext" + } + }, + { + "Kind": "Components.Component", + "Name": "Model", + "TypeName": "System.Object", + "Documentation": "\n \n Specifies the top-level model object for the form. An edit context will\n be constructed for this model. If using this parameter, do not also supply\n a value for .\n \n ", + "Metadata": { + "Common.PropertyName": "Model" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnSubmit", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n A callback that will be invoked when the form is submitted.\n \n If using this parameter, you are responsible for triggering any validation\n manually, e.g., by calling .\n \n ", + "Metadata": { + "Common.PropertyName": "OnSubmit", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnValidSubmit", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be valid.\n \n ", + "Metadata": { + "Common.PropertyName": "OnValidSubmit", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnInvalidSubmit", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be invalid.\n \n ", + "Metadata": { + "Common.PropertyName": "OnInvalidSubmit", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -172274474, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "EditForm" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": 277342872, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Forms.EditForm" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -86630047, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing values.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputCheckbox" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "System.Boolean", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox" + } + }, + { + "HashCode": 921260652, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing values.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "System.Boolean", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1644229851, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing date values.\n Supported types are and .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputDate" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputDate component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "Type", + "TypeName": "Microsoft.AspNetCore.Components.Forms.InputDateType", + "IsEnum": true, + "Documentation": "\n \n Gets or sets the type of HTML input to be rendered.\n \n ", + "Metadata": { + "Common.PropertyName": "Type" + } + }, + { + "Kind": "Components.Component", + "Name": "ParsingErrorMessage", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", + "Metadata": { + "Common.PropertyName": "ParsingErrorMessage" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": -266689420, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing date values.\n Supported types are and .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputDate" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputDate component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "Type", + "TypeName": "Microsoft.AspNetCore.Components.Forms.InputDateType", + "IsEnum": true, + "Documentation": "\n \n Gets or sets the type of HTML input to be rendered.\n \n ", + "Metadata": { + "Common.PropertyName": "Type" + } + }, + { + "Kind": "Components.Component", + "Name": "ParsingErrorMessage", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", + "Metadata": { + "Common.PropertyName": "ParsingErrorMessage" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -998835901, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputFile", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A component that wraps the HTML file input element and supplies a for each file's contents.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputFile" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "OnChange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets the event callback that will be invoked when the collection of selected files changes.\n \n ", + "Metadata": { + "Common.PropertyName": "OnChange", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputFile" + } + }, + { + "HashCode": -1493211782, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputFile", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A component that wraps the HTML file input element and supplies a for each file's contents.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputFile" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "OnChange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets the event callback that will be invoked when the collection of selected files changes.\n \n ", + "Metadata": { + "Common.PropertyName": "OnChange", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputFile", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -371468943, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing numeric values.\n Supported numeric types are , , , , , .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputNumber" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputNumber component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ParsingErrorMessage", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", + "Metadata": { + "Common.PropertyName": "ParsingErrorMessage" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": 1212261061, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing numeric values.\n Supported numeric types are , , , , , .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputNumber" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputNumber component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ParsingErrorMessage", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", + "Metadata": { + "Common.PropertyName": "ParsingErrorMessage" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 2055438584, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadio", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component used for selecting a value from a group of choices.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputRadio" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadio component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of this input.\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Name", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the name of the parent input radio group.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadio", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": -358937337, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadio", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component used for selecting a value from a group of choices.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputRadio" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadio component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of this input.\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Name", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the name of the parent input radio group.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadio", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -623886816, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Groups child components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputRadioGroup" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadioGroup component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Name", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the name of the group.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": -435206601, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Groups child components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadioGroup component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Name", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the name of the group.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1581697222, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "InputRadioGroup" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -535695285, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -775928792, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A dropdown selection component.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputSelect" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputSelect component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": -319469089, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A dropdown selection component.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputSelect" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputSelect component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -40392636, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "InputSelect" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": 2143525258, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Forms.InputSelect" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -161657883, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputText", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing values.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputText" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText" + } + }, + { + "HashCode": -152952824, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputText", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing values.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputText" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 834183838, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A multiline input component for editing values.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputTextArea" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea" + } + }, + { + "HashCode": 588041695, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A multiline input component for editing values.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputTextArea" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1839224978, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Displays a list of validation messages for a specified field within a cascaded .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ValidationMessage" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.ValidationMessage component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created div element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "For", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Specifies the field for which validation messages should be displayed.\n \n ", + "Metadata": { + "Common.PropertyName": "For", + "Components.GenericTyped": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": 998266648, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Displays a list of validation messages for a specified field within a cascaded .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.ValidationMessage component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created div element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "For", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Specifies the field for which validation messages should be displayed.\n \n ", + "Metadata": { + "Common.PropertyName": "For", + "Components.GenericTyped": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1453846501, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Displays a list of validation messages from a cascaded .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ValidationSummary" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "Model", + "TypeName": "System.Object", + "Documentation": "\n \n Gets or sets the model to produce the list of validation messages for.\n When specified, this lists all errors that are associated with the model instance.\n \n ", + "Metadata": { + "Common.PropertyName": "Model" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created ul element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary" + } + }, + { + "HashCode": -1323937953, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Displays a list of validation messages from a cascaded .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "Model", + "TypeName": "System.Object", + "Documentation": "\n \n Gets or sets the model to produce the list of validation messages for.\n When specified, this lists all errors that are associated with the model instance.\n \n ", + "Metadata": { + "Common.PropertyName": "Model" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created ul element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1556765514, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n After navigating from one page to another, sets focus to an element\n matching a CSS selector. This can be used to build an accessible\n navigation system compatible with screen readers.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "FocusOnNavigate" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "RouteData", + "TypeName": "Microsoft.AspNetCore.Components.RouteData", + "Documentation": "\n \n Gets or sets the route data. This can be obtained from an enclosing\n component.\n \n ", + "Metadata": { + "Common.PropertyName": "RouteData" + } + }, + { + "Kind": "Components.Component", + "Name": "Selector", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets a CSS selector describing the element to be focused after\n navigation between pages.\n \n ", + "Metadata": { + "Common.PropertyName": "Selector" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate" + } + }, + { + "HashCode": -1664990074, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n After navigating from one page to another, sets focus to an element\n matching a CSS selector. This can be used to build an accessible\n navigation system compatible with screen readers.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "RouteData", + "TypeName": "Microsoft.AspNetCore.Components.RouteData", + "Documentation": "\n \n Gets or sets the route data. This can be obtained from an enclosing\n component.\n \n ", + "Metadata": { + "Common.PropertyName": "RouteData" + } + }, + { + "Kind": "Components.Component", + "Name": "Selector", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets a CSS selector describing the element to be focused after\n navigation between pages.\n \n ", + "Metadata": { + "Common.PropertyName": "Selector" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 299568050, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A component that renders an anchor tag, automatically toggling its 'active'\n class based on whether its 'href' matches the current URI.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "NavLink" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ActiveClass", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the CSS class name applied to the NavLink when the\n current route matches the NavLink href.\n \n ", + "Metadata": { + "Common.PropertyName": "ActiveClass" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be added to the generated\n a element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Match", + "TypeName": "Microsoft.AspNetCore.Components.Routing.NavLinkMatch", + "IsEnum": true, + "Documentation": "\n \n Gets or sets a value representing the URL matching behavior.\n \n ", + "Metadata": { + "Common.PropertyName": "Match" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink" + } + }, + { + "HashCode": 1589271264, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A component that renders an anchor tag, automatically toggling its 'active'\n class based on whether its 'href' matches the current URI.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Routing.NavLink" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ActiveClass", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the CSS class name applied to the NavLink when the\n current route matches the NavLink href.\n \n ", + "Metadata": { + "Common.PropertyName": "ActiveClass" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be added to the generated\n a element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Match", + "TypeName": "Microsoft.AspNetCore.Components.Routing.NavLinkMatch", + "IsEnum": true, + "Documentation": "\n \n Gets or sets a value representing the URL matching behavior.\n \n ", + "Metadata": { + "Common.PropertyName": "Match" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1152777220, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "NavLink" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -1387754263, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Routing.NavLink" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1530071229, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.HeadContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Provides content to components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "HeadContent" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent" + } + }, + { + "HashCode": 1624384863, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.HeadContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Provides content to components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Web.HeadContent" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1127103200, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "HeadContent" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -972140533, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Web.HeadContent" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -380162151, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Renders content provided by components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "HeadOutlet" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadOutlet" + } + }, + { + "HashCode": -710543761, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Renders content provided by components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Web.HeadOutlet" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadOutlet", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 505901946, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.PageTitle", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Enables rendering an HTML <title> to a component.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "PageTitle" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle" + } + }, + { + "HashCode": 1642659445, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.PageTitle", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Enables rendering an HTML <title> to a component.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Web.PageTitle" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -143449569, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "PageTitle" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": 517244416, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Web.PageTitle" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 449649524, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Captures errors thrown from its child content.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ErrorBoundary" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content to be displayed when there is no error.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ErrorContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content to be displayed when there is an error.\n \n ", + "Metadata": { + "Common.PropertyName": "ErrorContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "MaximumErrorCount", + "TypeName": "System.Int32", + "Documentation": "\n \n The maximum number of errors that can be handled. If more errors are received,\n they will be treated as fatal. Calling resets the count.\n \n ", + "Metadata": { + "Common.PropertyName": "MaximumErrorCount" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary" + } + }, + { + "HashCode": 1210625846, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Captures errors thrown from its child content.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content to be displayed when there is no error.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ErrorContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content to be displayed when there is an error.\n \n ", + "Metadata": { + "Common.PropertyName": "ErrorContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "MaximumErrorCount", + "TypeName": "System.Int32", + "Documentation": "\n \n The maximum number of errors that can be handled. If more errors are received,\n they will be treated as fatal. Calling resets the count.\n \n ", + "Metadata": { + "Common.PropertyName": "MaximumErrorCount" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 866123180, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n The content to be displayed when there is no error.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "ErrorBoundary" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -204563599, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n The content to be displayed when there is no error.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Web.ErrorBoundary" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1091039092, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n The content to be displayed when there is an error.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ErrorContent", + "ParentTag": "ErrorBoundary" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ErrorContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -669214502, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n The content to be displayed when there is an error.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ErrorContent", + "ParentTag": "Microsoft.AspNetCore.Components.Web.ErrorBoundary" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ErrorContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 665182837, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Provides functionality for rendering a virtualized list of items.\n \n The context type for the items being rendered.\n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TItem", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TItem for the Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize component.", + "Metadata": { + "Common.PropertyName": "TItem", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ItemContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "Metadata": { + "Common.PropertyName": "ItemContent", + "Components.ChildContent": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Placeholder", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ", + "Metadata": { + "Common.PropertyName": "Placeholder", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ItemSize", + "TypeName": "System.Single", + "Documentation": "\n \n Gets the size of each item in pixels. Defaults to 50px.\n \n ", + "Metadata": { + "Common.PropertyName": "ItemSize" + } + }, + { + "Kind": "Components.Component", + "Name": "ItemsProvider", + "TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate", + "Documentation": "\n \n Gets or sets the function providing items to the list.\n \n ", + "Metadata": { + "Common.PropertyName": "ItemsProvider", + "Components.DelegateSignature": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Items", + "TypeName": "System.Collections.Generic.ICollection", + "Documentation": "\n \n Gets or sets the fixed item source.\n \n ", + "Metadata": { + "Common.PropertyName": "Items", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OverscanCount", + "TypeName": "System.Int32", + "Documentation": "\n \n Gets or sets a value that determines how many additional items will be rendered\n before and after the visible region. This help to reduce the frequency of rendering\n during scrolling. However, higher values mean that more elements will be present\n in the page.\n \n ", + "Metadata": { + "Common.PropertyName": "OverscanCount" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": 237456775, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Provides functionality for rendering a virtualized list of items.\n \n The context type for the items being rendered.\n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TItem", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TItem for the Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize component.", + "Metadata": { + "Common.PropertyName": "TItem", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ItemContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "Metadata": { + "Common.PropertyName": "ItemContent", + "Components.ChildContent": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Placeholder", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ", + "Metadata": { + "Common.PropertyName": "Placeholder", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ItemSize", + "TypeName": "System.Single", + "Documentation": "\n \n Gets the size of each item in pixels. Defaults to 50px.\n \n ", + "Metadata": { + "Common.PropertyName": "ItemSize" + } + }, + { + "Kind": "Components.Component", + "Name": "ItemsProvider", + "TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate", + "Documentation": "\n \n Gets or sets the function providing items to the list.\n \n ", + "Metadata": { + "Common.PropertyName": "ItemsProvider", + "Components.DelegateSignature": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Items", + "TypeName": "System.Collections.Generic.ICollection", + "Documentation": "\n \n Gets or sets the fixed item source.\n \n ", + "Metadata": { + "Common.PropertyName": "Items", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OverscanCount", + "TypeName": "System.Int32", + "Documentation": "\n \n Gets or sets a value that determines how many additional items will be rendered\n before and after the visible region. This help to reduce the frequency of rendering\n during scrolling. However, higher values mean that more elements will be present\n in the page.\n \n ", + "Metadata": { + "Common.PropertyName": "OverscanCount" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -643365260, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -1121882557, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -751560941, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ItemContent", + "ParentTag": "Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ItemContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": 1834976602, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ItemContent", + "ParentTag": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ItemContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1477303775, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Placeholder", + "ParentTag": "Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'Placeholder' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": 1642547794, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Placeholder", + "ParentTag": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'Placeholder' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1966590200, + "Kind": "Components.EventHandler", + "Name": "onfocus", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onfocus' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocus", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocus:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocus:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onfocus", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onfocus' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onfocus" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocus' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onfocus' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1511832153, + "Kind": "Components.EventHandler", + "Name": "onblur", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onblur' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onblur", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onblur:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onblur:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onblur", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onblur' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onblur" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onblur' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onblur' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 124246191, + "Kind": "Components.EventHandler", + "Name": "onfocusin", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onfocusin' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocusin", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocusin:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocusin:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onfocusin", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onfocusin' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onfocusin" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocusin' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onfocusin' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 432357392, + "Kind": "Components.EventHandler", + "Name": "onfocusout", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onfocusout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocusout", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocusout:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocusout:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onfocusout", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onfocusout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onfocusout" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocusout' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onfocusout' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1486390679, + "Kind": "Components.EventHandler", + "Name": "onmouseover", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onmouseover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseover", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseover:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseover:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onmouseover", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onmouseover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onmouseover" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseover' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onmouseover' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 2098460091, + "Kind": "Components.EventHandler", + "Name": "onmouseout", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onmouseout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseout", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseout:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseout:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onmouseout", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onmouseout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onmouseout" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseout' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onmouseout' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 149622228, + "Kind": "Components.EventHandler", + "Name": "onmousemove", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onmousemove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousemove", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousemove:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousemove:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onmousemove", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onmousemove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onmousemove" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousemove' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onmousemove' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1895580115, + "Kind": "Components.EventHandler", + "Name": "onmousedown", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onmousedown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousedown", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousedown:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousedown:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onmousedown", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onmousedown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onmousedown" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousedown' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onmousedown' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 2106255036, + "Kind": "Components.EventHandler", + "Name": "onmouseup", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onmouseup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseup", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseup:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseup:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onmouseup", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onmouseup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onmouseup" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseup' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onmouseup' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 402596013, + "Kind": "Components.EventHandler", + "Name": "onclick", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onclick", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onclick:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onclick:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onclick", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onclick" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onclick' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onclick' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -282804689, + "Kind": "Components.EventHandler", + "Name": "ondblclick", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondblclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondblclick", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondblclick:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondblclick:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondblclick", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondblclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondblclick" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondblclick' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondblclick' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1653386884, + "Kind": "Components.EventHandler", + "Name": "onwheel", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onwheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onwheel", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onwheel:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onwheel:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onwheel", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onwheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onwheel" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onwheel' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onwheel' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.WheelEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 2010299042, + "Kind": "Components.EventHandler", + "Name": "onmousewheel", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onmousewheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousewheel", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousewheel:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousewheel:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onmousewheel", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onmousewheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onmousewheel" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousewheel' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onmousewheel' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.WheelEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -302013686, + "Kind": "Components.EventHandler", + "Name": "oncontextmenu", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oncontextmenu' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncontextmenu", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncontextmenu:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncontextmenu:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oncontextmenu", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oncontextmenu' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oncontextmenu" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncontextmenu' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oncontextmenu' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1217262211, + "Kind": "Components.EventHandler", + "Name": "ondrag", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondrag' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondrag", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondrag:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondrag:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondrag", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondrag' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondrag" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondrag' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondrag' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1413353434, + "Kind": "Components.EventHandler", + "Name": "ondragend", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondragend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragend", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragend:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragend:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondragend", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondragend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondragend" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragend' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondragend' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 2060354309, + "Kind": "Components.EventHandler", + "Name": "ondragenter", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondragenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragenter", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragenter:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragenter:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondragenter", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondragenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondragenter" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragenter' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondragenter' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1636113312, + "Kind": "Components.EventHandler", + "Name": "ondragleave", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondragleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragleave", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragleave:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragleave:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondragleave", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondragleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondragleave" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragleave' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondragleave' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 827371985, + "Kind": "Components.EventHandler", + "Name": "ondragover", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondragover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragover", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragover:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragover:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondragover", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondragover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondragover" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragover' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondragover' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 341504444, + "Kind": "Components.EventHandler", + "Name": "ondragstart", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondragstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragstart", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragstart:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragstart:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondragstart", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondragstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondragstart" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragstart' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondragstart' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -2047043181, + "Kind": "Components.EventHandler", + "Name": "ondrop", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondrop' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondrop", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondrop:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondrop:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondrop", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondrop' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondrop" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondrop' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondrop' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1376409770, + "Kind": "Components.EventHandler", + "Name": "onkeydown", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onkeydown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeydown", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeydown:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeydown:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onkeydown", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onkeydown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onkeydown" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeydown' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onkeydown' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 687072674, + "Kind": "Components.EventHandler", + "Name": "onkeyup", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onkeyup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeyup", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeyup:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeyup:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onkeyup", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onkeyup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onkeyup" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeyup' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onkeyup' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1166015738, + "Kind": "Components.EventHandler", + "Name": "onkeypress", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onkeypress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeypress", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeypress:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeypress:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onkeypress", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onkeypress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onkeypress" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeypress' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onkeypress' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1107469910, + "Kind": "Components.EventHandler", + "Name": "onchange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onchange' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onchange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onchange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onchange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onchange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onchange' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onchange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onchange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onchange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.ChangeEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -856512333, + "Kind": "Components.EventHandler", + "Name": "oninput", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oninput' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oninput", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oninput:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oninput:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oninput", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oninput' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oninput" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oninput' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oninput' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.ChangeEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 82369002, + "Kind": "Components.EventHandler", + "Name": "oninvalid", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oninvalid' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oninvalid", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oninvalid:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oninvalid:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oninvalid", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oninvalid' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oninvalid" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oninvalid' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oninvalid' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1979678124, + "Kind": "Components.EventHandler", + "Name": "onreset", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onreset' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onreset", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onreset:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onreset:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onreset", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onreset' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onreset" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onreset' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onreset' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -111109978, + "Kind": "Components.EventHandler", + "Name": "onselect", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onselect' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselect", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselect:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselect:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onselect", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onselect' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onselect" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselect' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onselect' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1902205770, + "Kind": "Components.EventHandler", + "Name": "onselectstart", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onselectstart' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselectstart", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselectstart:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselectstart:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onselectstart", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onselectstart' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onselectstart" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselectstart' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onselectstart' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1819301876, + "Kind": "Components.EventHandler", + "Name": "onselectionchange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onselectionchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselectionchange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselectionchange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselectionchange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onselectionchange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onselectionchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onselectionchange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselectionchange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onselectionchange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1843188511, + "Kind": "Components.EventHandler", + "Name": "onsubmit", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onsubmit' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onsubmit", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onsubmit:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onsubmit:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onsubmit", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onsubmit' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onsubmit" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onsubmit' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onsubmit' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 750388544, + "Kind": "Components.EventHandler", + "Name": "onbeforecopy", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onbeforecopy' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforecopy", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforecopy:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforecopy:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onbeforecopy", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onbeforecopy' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onbeforecopy" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforecopy' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onbeforecopy' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1406318868, + "Kind": "Components.EventHandler", + "Name": "onbeforecut", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onbeforecut' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforecut", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforecut:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforecut:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onbeforecut", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onbeforecut' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onbeforecut" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforecut' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onbeforecut' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 444971656, + "Kind": "Components.EventHandler", + "Name": "onbeforepaste", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onbeforepaste' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforepaste", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforepaste:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforepaste:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onbeforepaste", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onbeforepaste' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onbeforepaste" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforepaste' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onbeforepaste' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1116669229, + "Kind": "Components.EventHandler", + "Name": "oncopy", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oncopy' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncopy", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncopy:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncopy:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oncopy", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oncopy' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oncopy" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncopy' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oncopy' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1058108251, + "Kind": "Components.EventHandler", + "Name": "oncut", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oncut' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncut", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncut:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncut:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oncut", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oncut' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oncut" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncut' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oncut' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 652678624, + "Kind": "Components.EventHandler", + "Name": "onpaste", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpaste' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpaste", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpaste:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpaste:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpaste", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpaste' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpaste" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpaste' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpaste' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1791317469, + "Kind": "Components.EventHandler", + "Name": "ontouchcancel", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontouchcancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchcancel", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchcancel:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchcancel:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontouchcancel", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontouchcancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontouchcancel" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchcancel' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchcancel' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -872210706, + "Kind": "Components.EventHandler", + "Name": "ontouchend", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontouchend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchend", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchend:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchend:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontouchend", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontouchend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontouchend" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchend' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchend' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -2031729414, + "Kind": "Components.EventHandler", + "Name": "ontouchmove", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontouchmove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchmove", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchmove:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchmove:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontouchmove", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontouchmove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontouchmove" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchmove' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchmove' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1727575360, + "Kind": "Components.EventHandler", + "Name": "ontouchstart", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontouchstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchstart", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchstart:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchstart:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontouchstart", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontouchstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontouchstart" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchstart' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchstart' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 726357757, + "Kind": "Components.EventHandler", + "Name": "ontouchenter", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontouchenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchenter", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchenter:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchenter:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontouchenter", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontouchenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontouchenter" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchenter' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchenter' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1667320342, + "Kind": "Components.EventHandler", + "Name": "ontouchleave", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontouchleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchleave", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchleave:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchleave:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontouchleave", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontouchleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontouchleave" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchleave' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchleave' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1344493480, + "Kind": "Components.EventHandler", + "Name": "ongotpointercapture", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ongotpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ongotpointercapture", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ongotpointercapture:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ongotpointercapture:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ongotpointercapture", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ongotpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ongotpointercapture" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ongotpointercapture' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ongotpointercapture' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 331859304, + "Kind": "Components.EventHandler", + "Name": "onlostpointercapture", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onlostpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onlostpointercapture", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onlostpointercapture:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onlostpointercapture:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onlostpointercapture", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onlostpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onlostpointercapture" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onlostpointercapture' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onlostpointercapture' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 2081914566, + "Kind": "Components.EventHandler", + "Name": "onpointercancel", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointercancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointercancel", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointercancel:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointercancel:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointercancel", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointercancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointercancel" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointercancel' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointercancel' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1173185605, + "Kind": "Components.EventHandler", + "Name": "onpointerdown", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerdown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerdown", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerdown:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerdown:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerdown", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerdown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerdown" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerdown' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerdown' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1937898255, + "Kind": "Components.EventHandler", + "Name": "onpointerenter", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerenter", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerenter:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerenter:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerenter", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerenter" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerenter' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerenter' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -839694694, + "Kind": "Components.EventHandler", + "Name": "onpointerleave", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerleave", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerleave:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerleave:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerleave", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerleave" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerleave' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerleave' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -553586938, + "Kind": "Components.EventHandler", + "Name": "onpointermove", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointermove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointermove", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointermove:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointermove:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointermove", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointermove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointermove" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointermove' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointermove' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 103658104, + "Kind": "Components.EventHandler", + "Name": "onpointerout", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerout", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerout:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerout:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerout", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerout" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerout' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerout' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1416079727, + "Kind": "Components.EventHandler", + "Name": "onpointerover", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerover", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerover:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerover:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerover", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerover" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerover' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerover' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1773476388, + "Kind": "Components.EventHandler", + "Name": "onpointerup", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerup", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerup:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerup:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerup", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerup" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerup' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerup' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 605895425, + "Kind": "Components.EventHandler", + "Name": "oncanplay", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oncanplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncanplay", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncanplay:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncanplay:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oncanplay", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oncanplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oncanplay" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncanplay' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oncanplay' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1096584356, + "Kind": "Components.EventHandler", + "Name": "oncanplaythrough", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oncanplaythrough' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncanplaythrough", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncanplaythrough:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncanplaythrough:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oncanplaythrough", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oncanplaythrough' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oncanplaythrough" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncanplaythrough' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oncanplaythrough' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -465291863, + "Kind": "Components.EventHandler", + "Name": "oncuechange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oncuechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncuechange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncuechange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncuechange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oncuechange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oncuechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oncuechange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncuechange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oncuechange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -2138752040, + "Kind": "Components.EventHandler", + "Name": "ondurationchange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondurationchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondurationchange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondurationchange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondurationchange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondurationchange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondurationchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondurationchange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondurationchange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondurationchange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -261398627, + "Kind": "Components.EventHandler", + "Name": "onemptied", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onemptied' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onemptied", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onemptied:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onemptied:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onemptied", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onemptied' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onemptied" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onemptied' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onemptied' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 945731866, + "Kind": "Components.EventHandler", + "Name": "onpause", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpause' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpause", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpause:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpause:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpause", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpause' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpause" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpause' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpause' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -975098540, + "Kind": "Components.EventHandler", + "Name": "onplay", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onplay", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onplay:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onplay:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onplay", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onplay" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onplay' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onplay' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1185414958, + "Kind": "Components.EventHandler", + "Name": "onplaying", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onplaying' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onplaying", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onplaying:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onplaying:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onplaying", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onplaying' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onplaying" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onplaying' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onplaying' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 172072583, + "Kind": "Components.EventHandler", + "Name": "onratechange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onratechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onratechange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onratechange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onratechange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onratechange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onratechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onratechange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onratechange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onratechange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1359165123, + "Kind": "Components.EventHandler", + "Name": "onseeked", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onseeked' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onseeked", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onseeked:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onseeked:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onseeked", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onseeked' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onseeked" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onseeked' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onseeked' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 142028075, + "Kind": "Components.EventHandler", + "Name": "onseeking", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onseeking' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onseeking", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onseeking:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onseeking:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onseeking", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onseeking' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onseeking" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onseeking' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onseeking' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -232417665, + "Kind": "Components.EventHandler", + "Name": "onstalled", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onstalled' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onstalled", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onstalled:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onstalled:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onstalled", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onstalled' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onstalled" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onstalled' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onstalled' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 621461499, + "Kind": "Components.EventHandler", + "Name": "onstop", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onstop' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onstop", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onstop:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onstop:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onstop", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onstop' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onstop" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onstop' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onstop' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1175852044, + "Kind": "Components.EventHandler", + "Name": "onsuspend", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onsuspend' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onsuspend", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onsuspend:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onsuspend:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onsuspend", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onsuspend' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onsuspend" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onsuspend' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onsuspend' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1392709040, + "Kind": "Components.EventHandler", + "Name": "ontimeupdate", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontimeupdate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontimeupdate", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontimeupdate:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontimeupdate:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontimeupdate", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontimeupdate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontimeupdate" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontimeupdate' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontimeupdate' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 399442260, + "Kind": "Components.EventHandler", + "Name": "onvolumechange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onvolumechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onvolumechange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onvolumechange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onvolumechange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onvolumechange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onvolumechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onvolumechange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onvolumechange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onvolumechange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1969035508, + "Kind": "Components.EventHandler", + "Name": "onwaiting", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onwaiting' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onwaiting", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onwaiting:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onwaiting:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onwaiting", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onwaiting' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onwaiting" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onwaiting' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onwaiting' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1225428367, + "Kind": "Components.EventHandler", + "Name": "onloadstart", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onloadstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadstart", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadstart:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadstart:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onloadstart", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onloadstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onloadstart" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadstart' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onloadstart' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1257165714, + "Kind": "Components.EventHandler", + "Name": "ontimeout", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontimeout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontimeout", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontimeout:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontimeout:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontimeout", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontimeout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontimeout" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontimeout' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontimeout' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -692852550, + "Kind": "Components.EventHandler", + "Name": "onabort", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onabort' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onabort", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onabort:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onabort:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onabort", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onabort' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onabort" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onabort' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onabort' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 512715643, + "Kind": "Components.EventHandler", + "Name": "onload", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onload' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onload", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onload:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onload:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onload", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onload' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onload" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onload' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onload' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1974901108, + "Kind": "Components.EventHandler", + "Name": "onloadend", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onloadend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadend", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadend:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadend:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onloadend", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onloadend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onloadend" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadend' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onloadend' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -665342297, + "Kind": "Components.EventHandler", + "Name": "onprogress", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onprogress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onprogress", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onprogress:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onprogress:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onprogress", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onprogress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onprogress" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onprogress' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onprogress' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1279677082, + "Kind": "Components.EventHandler", + "Name": "onerror", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onerror' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ErrorEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onerror", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onerror:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onerror:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onerror", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onerror' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ErrorEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onerror" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onerror' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onerror' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ErrorEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1557367869, + "Kind": "Components.EventHandler", + "Name": "onactivate", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onactivate", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onactivate:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onactivate:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onactivate", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onactivate" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onactivate' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onactivate' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1957090977, + "Kind": "Components.EventHandler", + "Name": "onbeforeactivate", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onbeforeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforeactivate", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforeactivate:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforeactivate:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onbeforeactivate", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onbeforeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onbeforeactivate" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforeactivate' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onbeforeactivate' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1361722061, + "Kind": "Components.EventHandler", + "Name": "onbeforedeactivate", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onbeforedeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforedeactivate", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforedeactivate:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforedeactivate:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onbeforedeactivate", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onbeforedeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onbeforedeactivate" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforedeactivate' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onbeforedeactivate' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1835759085, + "Kind": "Components.EventHandler", + "Name": "ondeactivate", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondeactivate", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondeactivate:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondeactivate:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondeactivate", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondeactivate" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondeactivate' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondeactivate' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 977767803, + "Kind": "Components.EventHandler", + "Name": "onended", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onended' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onended", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onended:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onended:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onended", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onended' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onended" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onended' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onended' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 515089506, + "Kind": "Components.EventHandler", + "Name": "onfullscreenchange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onfullscreenchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfullscreenchange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfullscreenchange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfullscreenchange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onfullscreenchange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onfullscreenchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onfullscreenchange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfullscreenchange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onfullscreenchange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 999649302, + "Kind": "Components.EventHandler", + "Name": "onfullscreenerror", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onfullscreenerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfullscreenerror", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfullscreenerror:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfullscreenerror:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onfullscreenerror", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onfullscreenerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onfullscreenerror" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfullscreenerror' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onfullscreenerror' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1890222982, + "Kind": "Components.EventHandler", + "Name": "onloadeddata", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onloadeddata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadeddata", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadeddata:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadeddata:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onloadeddata", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onloadeddata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onloadeddata" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadeddata' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onloadeddata' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 849808666, + "Kind": "Components.EventHandler", + "Name": "onloadedmetadata", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onloadedmetadata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadedmetadata", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadedmetadata:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadedmetadata:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onloadedmetadata", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onloadedmetadata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onloadedmetadata" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadedmetadata' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onloadedmetadata' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 500996156, + "Kind": "Components.EventHandler", + "Name": "onpointerlockchange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerlockchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerlockchange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerlockchange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerlockchange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerlockchange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerlockchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerlockchange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerlockchange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerlockchange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 22321710, + "Kind": "Components.EventHandler", + "Name": "onpointerlockerror", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerlockerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerlockerror", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerlockerror:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerlockerror:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerlockerror", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerlockerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerlockerror" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerlockerror' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerlockerror' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 969902059, + "Kind": "Components.EventHandler", + "Name": "onreadystatechange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onreadystatechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onreadystatechange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onreadystatechange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onreadystatechange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onreadystatechange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onreadystatechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onreadystatechange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onreadystatechange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onreadystatechange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1679480866, + "Kind": "Components.EventHandler", + "Name": "onscroll", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onscroll' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onscroll", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onscroll:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onscroll:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onscroll", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onscroll' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onscroll" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onscroll' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onscroll' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1653531665, + "Kind": "Components.EventHandler", + "Name": "ontoggle", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontoggle' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontoggle", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontoggle:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontoggle:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontoggle", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontoggle' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontoggle" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontoggle' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontoggle' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 281687148, + "Kind": "Components.Splat", + "Name": "Attributes", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Merges a collection of attributes into the current element or component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@attributes", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Splat", + "Name": "@attributes", + "TypeName": "System.Object", + "Documentation": "Merges a collection of attributes into the current element or component.", + "Metadata": { + "Common.PropertyName": "Attributes", + "Common.DirectiveAttribute": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Splat", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Attributes" + } + }, + { + "HashCode": -1915102884, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.Razor", + "Documentation": "\n \n implementation targeting elements containing attributes with URL expected values.\n \n Resolves URLs starting with '~/' (relative to the application's 'webroot' setting) that are not\n targeted by other s. Runs prior to other s to ensure\n application-relative URLs are resolved.\n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "itemid", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "a", + "Attributes": [ + { + "Name": "href", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "applet", + "Attributes": [ + { + "Name": "archive", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "area", + "TagStructure": 2, + "Attributes": [ + { + "Name": "href", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "audio", + "Attributes": [ + { + "Name": "src", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "base", + "TagStructure": 2, + "Attributes": [ + { + "Name": "href", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "blockquote", + "Attributes": [ + { + "Name": "cite", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "button", + "Attributes": [ + { + "Name": "formaction", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "del", + "Attributes": [ + { + "Name": "cite", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "embed", + "TagStructure": 2, + "Attributes": [ + { + "Name": "src", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "form", + "Attributes": [ + { + "Name": "action", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "html", + "Attributes": [ + { + "Name": "manifest", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "iframe", + "Attributes": [ + { + "Name": "src", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "img", + "TagStructure": 2, + "Attributes": [ + { + "Name": "src", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "img", + "TagStructure": 2, + "Attributes": [ + { + "Name": "srcset", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "src", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "formaction", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "ins", + "Attributes": [ + { + "Name": "cite", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "link", + "TagStructure": 2, + "Attributes": [ + { + "Name": "href", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "menuitem", + "Attributes": [ + { + "Name": "icon", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "object", + "Attributes": [ + { + "Name": "archive", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "object", + "Attributes": [ + { + "Name": "data", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "q", + "Attributes": [ + { + "Name": "cite", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "script", + "Attributes": [ + { + "Name": "src", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "source", + "TagStructure": 2, + "Attributes": [ + { + "Name": "src", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "source", + "TagStructure": 2, + "Attributes": [ + { + "Name": "srcset", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "track", + "TagStructure": 2, + "Attributes": [ + { + "Name": "src", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "video", + "Attributes": [ + { + "Name": "src", + "Value": "~/", + "ValueComparison": 2 + } + ] + }, + { + "TagName": "video", + "Attributes": [ + { + "Name": "poster", + "Value": "~/", + "ValueComparison": 2 + } + ] + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper" + } + }, + { + "HashCode": 1600293731, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <a> elements.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "a", + "Attributes": [ + { + "Name": "asp-action" + } + ] + }, + { + "TagName": "a", + "Attributes": [ + { + "Name": "asp-controller" + } + ] + }, + { + "TagName": "a", + "Attributes": [ + { + "Name": "asp-area" + } + ] + }, + { + "TagName": "a", + "Attributes": [ + { + "Name": "asp-page" + } + ] + }, + { + "TagName": "a", + "Attributes": [ + { + "Name": "asp-page-handler" + } + ] + }, + { + "TagName": "a", + "Attributes": [ + { + "Name": "asp-fragment" + } + ] + }, + { + "TagName": "a", + "Attributes": [ + { + "Name": "asp-host" + } + ] + }, + { + "TagName": "a", + "Attributes": [ + { + "Name": "asp-protocol" + } + ] + }, + { + "TagName": "a", + "Attributes": [ + { + "Name": "asp-route" + } + ] + }, + { + "TagName": "a", + "Attributes": [ + { + "Name": "asp-all-route-data" + } + ] + }, + { + "TagName": "a", + "Attributes": [ + { + "Name": "asp-route-", + "NameComparison": 1 + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-action", + "TypeName": "System.String", + "Documentation": "\n \n The name of the action method.\n \n \n Must be null if or is non-null.\n \n ", + "Metadata": { + "Common.PropertyName": "Action" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-controller", + "TypeName": "System.String", + "Documentation": "\n \n The name of the controller.\n \n \n Must be null if or is non-null.\n \n ", + "Metadata": { + "Common.PropertyName": "Controller" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-area", + "TypeName": "System.String", + "Documentation": "\n \n The name of the area.\n \n \n Must be null if is non-null.\n \n ", + "Metadata": { + "Common.PropertyName": "Area" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-page", + "TypeName": "System.String", + "Documentation": "\n \n The name of the page.\n \n \n Must be null if or , \n is non-null.\n \n ", + "Metadata": { + "Common.PropertyName": "Page" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-page-handler", + "TypeName": "System.String", + "Documentation": "\n \n The name of the page handler.\n \n \n Must be null if or , or \n is non-null.\n \n ", + "Metadata": { + "Common.PropertyName": "PageHandler" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-protocol", + "TypeName": "System.String", + "Documentation": "\n \n The protocol for the URL, such as \"http\" or \"https\".\n \n ", + "Metadata": { + "Common.PropertyName": "Protocol" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-host", + "TypeName": "System.String", + "Documentation": "\n \n The host name.\n \n ", + "Metadata": { + "Common.PropertyName": "Host" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-fragment", + "TypeName": "System.String", + "Documentation": "\n \n The URL fragment name.\n \n ", + "Metadata": { + "Common.PropertyName": "Fragment" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-route", + "TypeName": "System.String", + "Documentation": "\n \n Name of the route.\n \n \n Must be null if one of , , \n or is non-null.\n \n ", + "Metadata": { + "Common.PropertyName": "Route" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-all-route-data", + "TypeName": "System.Collections.Generic.IDictionary", + "IndexerNamePrefix": "asp-route-", + "IndexerTypeName": "System.String", + "Documentation": "\n \n Additional parameters for the route.\n \n ", + "Metadata": { + "Common.PropertyName": "RouteValues" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper" + } + }, + { + "HashCode": -1251342516, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <cache> elements.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "cache" + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "priority", + "TypeName": "Microsoft.Extensions.Caching.Memory.CacheItemPriority?", + "Documentation": "\n \n Gets or sets the policy for the cache entry.\n \n ", + "Metadata": { + "Common.PropertyName": "Priority" + } + }, + { + "Kind": "ITagHelper", + "Name": "vary-by", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets a to vary the cached result by.\n \n ", + "Metadata": { + "Common.PropertyName": "VaryBy" + } + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-header", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\n \n ", + "Metadata": { + "Common.PropertyName": "VaryByHeader" + } + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-query", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\n \n ", + "Metadata": { + "Common.PropertyName": "VaryByQuery" + } + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-route", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\n \n ", + "Metadata": { + "Common.PropertyName": "VaryByRoute" + } + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-cookie", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\n \n ", + "Metadata": { + "Common.PropertyName": "VaryByCookie" + } + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-user", + "TypeName": "System.Boolean", + "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\n .\n \n ", + "Metadata": { + "Common.PropertyName": "VaryByUser" + } + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-culture", + "TypeName": "System.Boolean", + "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by request culture.\n \n Setting this to true would result in the result to be varied by \n and .\n \n \n ", + "Metadata": { + "Common.PropertyName": "VaryByCulture" + } + }, + { + "Kind": "ITagHelper", + "Name": "expires-on", + "TypeName": "System.DateTimeOffset?", + "Documentation": "\n \n Gets or sets the exact the cache entry should be evicted.\n \n ", + "Metadata": { + "Common.PropertyName": "ExpiresOn" + } + }, + { + "Kind": "ITagHelper", + "Name": "expires-after", + "TypeName": "System.TimeSpan?", + "Documentation": "\n \n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\n \n ", + "Metadata": { + "Common.PropertyName": "ExpiresAfter" + } + }, + { + "Kind": "ITagHelper", + "Name": "expires-sliding", + "TypeName": "System.TimeSpan?", + "Documentation": "\n \n Gets or sets the duration from last access that the cache entry should be evicted.\n \n ", + "Metadata": { + "Common.PropertyName": "ExpiresSliding" + } + }, + { + "Kind": "ITagHelper", + "Name": "enabled", + "TypeName": "System.Boolean", + "Documentation": "\n \n Gets or sets the value which determines if the tag helper is enabled or not.\n \n ", + "Metadata": { + "Common.PropertyName": "Enabled" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper" + } + }, + { + "HashCode": -1953098467, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n A that renders a Razor component.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "component", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type" + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "params", + "TypeName": "System.Collections.Generic.IDictionary", + "IndexerNamePrefix": "param-", + "IndexerTypeName": "System.Object", + "Documentation": "\n \n Gets or sets values for component parameters.\n \n ", + "Metadata": { + "Common.PropertyName": "Parameters" + } + }, + { + "Kind": "ITagHelper", + "Name": "type", + "TypeName": "System.Type", + "Documentation": "\n \n Gets or sets the component type. This value is required.\n \n ", + "Metadata": { + "Common.PropertyName": "ComponentType" + } + }, + { + "Kind": "ITagHelper", + "Name": "render-mode", + "TypeName": "Microsoft.AspNetCore.Mvc.Rendering.RenderMode", + "IsEnum": true, + "Documentation": "\n \n Gets or sets the \n \n ", + "Metadata": { + "Common.PropertyName": "RenderMode" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper" + } + }, + { + "HashCode": 177407877, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <distributed-cache> elements.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "distributed-cache", + "Attributes": [ + { + "Name": "name" + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "name", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets a unique name to discriminate cached entries.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + }, + { + "Kind": "ITagHelper", + "Name": "vary-by", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets a to vary the cached result by.\n \n ", + "Metadata": { + "Common.PropertyName": "VaryBy" + } + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-header", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\n \n ", + "Metadata": { + "Common.PropertyName": "VaryByHeader" + } + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-query", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\n \n ", + "Metadata": { + "Common.PropertyName": "VaryByQuery" + } + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-route", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\n \n ", + "Metadata": { + "Common.PropertyName": "VaryByRoute" + } + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-cookie", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\n \n ", + "Metadata": { + "Common.PropertyName": "VaryByCookie" + } + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-user", + "TypeName": "System.Boolean", + "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\n .\n \n ", + "Metadata": { + "Common.PropertyName": "VaryByUser" + } + }, + { + "Kind": "ITagHelper", + "Name": "vary-by-culture", + "TypeName": "System.Boolean", + "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by request culture.\n \n Setting this to true would result in the result to be varied by \n and .\n \n \n ", + "Metadata": { + "Common.PropertyName": "VaryByCulture" + } + }, + { + "Kind": "ITagHelper", + "Name": "expires-on", + "TypeName": "System.DateTimeOffset?", + "Documentation": "\n \n Gets or sets the exact the cache entry should be evicted.\n \n ", + "Metadata": { + "Common.PropertyName": "ExpiresOn" + } + }, + { + "Kind": "ITagHelper", + "Name": "expires-after", + "TypeName": "System.TimeSpan?", + "Documentation": "\n \n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\n \n ", + "Metadata": { + "Common.PropertyName": "ExpiresAfter" + } + }, + { + "Kind": "ITagHelper", + "Name": "expires-sliding", + "TypeName": "System.TimeSpan?", + "Documentation": "\n \n Gets or sets the duration from last access that the cache entry should be evicted.\n \n ", + "Metadata": { + "Common.PropertyName": "ExpiresSliding" + } + }, + { + "Kind": "ITagHelper", + "Name": "enabled", + "TypeName": "System.Boolean", + "Documentation": "\n \n Gets or sets the value which determines if the tag helper is enabled or not.\n \n ", + "Metadata": { + "Common.PropertyName": "Enabled" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper" + } + }, + { + "HashCode": -1615762370, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <environment> elements that conditionally renders\n content based on the current value of .\n If the environment is not listed in the specified or ,\n or if it is in , the content will not be rendered.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "environment" + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "names", + "TypeName": "System.String", + "Documentation": "\n \n A comma separated list of environment names in which the content should be rendered.\n If the current environment is also in the list, the content will not be rendered.\n \n \n The specified environment names are compared case insensitively to the current value of\n .\n \n ", + "Metadata": { + "Common.PropertyName": "Names" + } + }, + { + "Kind": "ITagHelper", + "Name": "include", + "TypeName": "System.String", + "Documentation": "\n \n A comma separated list of environment names in which the content should be rendered.\n If the current environment is also in the list, the content will not be rendered.\n \n \n The specified environment names are compared case insensitively to the current value of\n .\n \n ", + "Metadata": { + "Common.PropertyName": "Include" + } + }, + { + "Kind": "ITagHelper", + "Name": "exclude", + "TypeName": "System.String", + "Documentation": "\n \n A comma separated list of environment names in which the content will not be rendered.\n \n \n The specified environment names are compared case insensitively to the current value of\n .\n \n ", + "Metadata": { + "Common.PropertyName": "Exclude" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper" + } + }, + { + "HashCode": 849886308, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <button> elements and <input> elements with\n their type attribute set to image or submit.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "button", + "Attributes": [ + { + "Name": "asp-action" + } + ] + }, + { + "TagName": "button", + "Attributes": [ + { + "Name": "asp-controller" + } + ] + }, + { + "TagName": "button", + "Attributes": [ + { + "Name": "asp-area" + } + ] + }, + { + "TagName": "button", + "Attributes": [ + { + "Name": "asp-page" + } + ] + }, + { + "TagName": "button", + "Attributes": [ + { + "Name": "asp-page-handler" + } + ] + }, + { + "TagName": "button", + "Attributes": [ + { + "Name": "asp-fragment" + } + ] + }, + { + "TagName": "button", + "Attributes": [ + { + "Name": "asp-route" + } + ] + }, + { + "TagName": "button", + "Attributes": [ + { + "Name": "asp-all-route-data" + } + ] + }, + { + "TagName": "button", + "Attributes": [ + { + "Name": "asp-route-", + "NameComparison": 1 + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "image", + "ValueComparison": 1 + }, + { + "Name": "asp-action" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "image", + "ValueComparison": 1 + }, + { + "Name": "asp-controller" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "image", + "ValueComparison": 1 + }, + { + "Name": "asp-area" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "image", + "ValueComparison": 1 + }, + { + "Name": "asp-page" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "image", + "ValueComparison": 1 + }, + { + "Name": "asp-page-handler" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "image", + "ValueComparison": 1 + }, + { + "Name": "asp-fragment" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "image", + "ValueComparison": 1 + }, + { + "Name": "asp-route" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "image", + "ValueComparison": 1 + }, + { + "Name": "asp-all-route-data" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "image", + "ValueComparison": 1 + }, + { + "Name": "asp-route-", + "NameComparison": 1 + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "submit", + "ValueComparison": 1 + }, + { + "Name": "asp-action" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "submit", + "ValueComparison": 1 + }, + { + "Name": "asp-controller" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "submit", + "ValueComparison": 1 + }, + { + "Name": "asp-area" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "submit", + "ValueComparison": 1 + }, + { + "Name": "asp-page" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "submit", + "ValueComparison": 1 + }, + { + "Name": "asp-page-handler" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "submit", + "ValueComparison": 1 + }, + { + "Name": "asp-fragment" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "submit", + "ValueComparison": 1 + }, + { + "Name": "asp-route" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "submit", + "ValueComparison": 1 + }, + { + "Name": "asp-all-route-data" + } + ] + }, + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "type", + "Value": "submit", + "ValueComparison": 1 + }, + { + "Name": "asp-route-", + "NameComparison": 1 + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-action", + "TypeName": "System.String", + "Documentation": "\n \n The name of the action method.\n \n ", + "Metadata": { + "Common.PropertyName": "Action" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-controller", + "TypeName": "System.String", + "Documentation": "\n \n The name of the controller.\n \n ", + "Metadata": { + "Common.PropertyName": "Controller" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-area", + "TypeName": "System.String", + "Documentation": "\n \n The name of the area.\n \n ", + "Metadata": { + "Common.PropertyName": "Area" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-page", + "TypeName": "System.String", + "Documentation": "\n \n The name of the page.\n \n ", + "Metadata": { + "Common.PropertyName": "Page" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-page-handler", + "TypeName": "System.String", + "Documentation": "\n \n The name of the page handler.\n \n ", + "Metadata": { + "Common.PropertyName": "PageHandler" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-fragment", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the URL fragment.\n \n ", + "Metadata": { + "Common.PropertyName": "Fragment" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-route", + "TypeName": "System.String", + "Documentation": "\n \n Name of the route.\n \n \n Must be null if or is non-null.\n \n ", + "Metadata": { + "Common.PropertyName": "Route" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-all-route-data", + "TypeName": "System.Collections.Generic.IDictionary", + "IndexerNamePrefix": "asp-route-", + "IndexerTypeName": "System.String", + "Documentation": "\n \n Additional parameters for the route.\n \n ", + "Metadata": { + "Common.PropertyName": "RouteValues" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper" + } + }, + { + "HashCode": 117211860, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <form> elements.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "form" + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-action", + "TypeName": "System.String", + "Documentation": "\n \n The name of the action method.\n \n ", + "Metadata": { + "Common.PropertyName": "Action" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-controller", + "TypeName": "System.String", + "Documentation": "\n \n The name of the controller.\n \n ", + "Metadata": { + "Common.PropertyName": "Controller" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-area", + "TypeName": "System.String", + "Documentation": "\n \n The name of the area.\n \n ", + "Metadata": { + "Common.PropertyName": "Area" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-page", + "TypeName": "System.String", + "Documentation": "\n \n The name of the page.\n \n ", + "Metadata": { + "Common.PropertyName": "Page" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-page-handler", + "TypeName": "System.String", + "Documentation": "\n \n The name of the page handler.\n \n ", + "Metadata": { + "Common.PropertyName": "PageHandler" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-antiforgery", + "TypeName": "System.Boolean?", + "Documentation": "\n \n Whether the antiforgery token should be generated.\n \n Defaults to false if user provides an action attribute\n or if the method is ; true otherwise.\n ", + "Metadata": { + "Common.PropertyName": "Antiforgery" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-fragment", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the URL fragment.\n \n ", + "Metadata": { + "Common.PropertyName": "Fragment" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-route", + "TypeName": "System.String", + "Documentation": "\n \n Name of the route.\n \n \n Must be null if or is non-null.\n \n ", + "Metadata": { + "Common.PropertyName": "Route" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-all-route-data", + "TypeName": "System.Collections.Generic.IDictionary", + "IndexerNamePrefix": "asp-route-", + "IndexerTypeName": "System.String", + "Documentation": "\n \n Additional parameters for the route.\n \n ", + "Metadata": { + "Common.PropertyName": "RouteValues" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper" + } + }, + { + "HashCode": 344363894, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <img> elements that supports file versioning.\n \n \n The tag helper won't process for cases with just the 'src' attribute.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "img", + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-append-version" + }, + { + "Name": "src" + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "src", + "TypeName": "System.String", + "Documentation": "\n \n Source of the image.\n \n \n Passed through to the generated HTML in all cases.\n \n ", + "Metadata": { + "Common.PropertyName": "Src" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-append-version", + "TypeName": "System.Boolean", + "Documentation": "\n \n Value indicating if file version should be appended to the src urls.\n \n \n If true then a query string \"v\" with the encoded content of the file is added.\n \n ", + "Metadata": { + "Common.PropertyName": "AppendVersion" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper" + } + }, + { + "HashCode": 1460112602, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <input> elements with an asp-for attribute.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "input", + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-for" + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-for", + "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", + "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", + "Metadata": { + "Common.PropertyName": "For" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-format", + "TypeName": "System.String", + "Documentation": "\n \n The format string (see https://msdn.microsoft.com/en-us/library/txafckwd.aspx) used to format the\n result. Sets the generated \"value\" attribute to that formatted string.\n \n \n Not used if the provided (see ) or calculated \"type\" attribute value is\n checkbox, password, or radio. That is, is used when calling\n .\n \n ", + "Metadata": { + "Common.PropertyName": "Format" + } + }, + { + "Kind": "ITagHelper", + "Name": "type", + "TypeName": "System.String", + "Documentation": "\n \n The type of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine the \n helper to call and the default value. A default is not calculated\n if the provided (see ) or calculated \"type\" attribute value is checkbox,\n hidden, password, or radio.\n \n ", + "Metadata": { + "Common.PropertyName": "InputTypeName" + } + }, + { + "Kind": "ITagHelper", + "Name": "name", + "TypeName": "System.String", + "Documentation": "\n \n The name of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine whether is\n valid with an empty .\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + }, + { + "Kind": "ITagHelper", + "Name": "value", + "TypeName": "System.String", + "Documentation": "\n \n The value of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine the generated \"checked\" attribute\n if is \"radio\". Must not be null in that case.\n \n ", + "Metadata": { + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper" + } + }, + { + "HashCode": -2038781024, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <label> elements with an asp-for attribute.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "label", + "Attributes": [ + { + "Name": "asp-for" + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-for", + "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", + "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", + "Metadata": { + "Common.PropertyName": "For" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper" + } + }, + { + "HashCode": 2137360389, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <link> elements that supports fallback href paths.\n \n \n The tag helper won't process for cases with just the 'href' attribute.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "link", + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-href-include" + } + ] + }, + { + "TagName": "link", + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-href-exclude" + } + ] + }, + { + "TagName": "link", + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-fallback-href" + } + ] + }, + { + "TagName": "link", + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-fallback-href-include" + } + ] + }, + { + "TagName": "link", + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-fallback-href-exclude" + } + ] + }, + { + "TagName": "link", + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-fallback-test-class" + } + ] + }, + { + "TagName": "link", + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-fallback-test-property" + } + ] + }, + { + "TagName": "link", + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-fallback-test-value" + } + ] + }, + { + "TagName": "link", + "TagStructure": 2, + "Attributes": [ + { + "Name": "asp-append-version" + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "href", + "TypeName": "System.String", + "Documentation": "\n \n Address of the linked resource.\n \n \n Passed through to the generated HTML in all cases.\n \n ", + "Metadata": { + "Common.PropertyName": "Href" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-href-include", + "TypeName": "System.String", + "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to load.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", + "Metadata": { + "Common.PropertyName": "HrefInclude" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-href-exclude", + "TypeName": "System.String", + "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to exclude from loading.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", + "Metadata": { + "Common.PropertyName": "HrefExclude" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-href", + "TypeName": "System.String", + "Documentation": "\n \n The URL of a CSS stylesheet to fallback to in the case the primary one fails.\n \n ", + "Metadata": { + "Common.PropertyName": "FallbackHref" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-suppress-fallback-integrity", + "TypeName": "System.Boolean", + "Documentation": "\n \n Boolean value that determines if an integrity hash will be compared with value.\n \n ", + "Metadata": { + "Common.PropertyName": "SuppressFallbackIntegrity" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-append-version", + "TypeName": "System.Boolean?", + "Documentation": "\n \n Value indicating if file version should be appended to the href urls.\n \n \n If true then a query string \"v\" with the encoded content of the file is added.\n \n ", + "Metadata": { + "Common.PropertyName": "AppendVersion" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-href-include", + "TypeName": "System.String", + "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to fallback to in the case the primary\n one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", + "Metadata": { + "Common.PropertyName": "FallbackHrefInclude" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-href-exclude", + "TypeName": "System.String", + "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to exclude from the fallback list, in\n the case the primary one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", + "Metadata": { + "Common.PropertyName": "FallbackHrefExclude" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-test-class", + "TypeName": "System.String", + "Documentation": "\n \n The class name defined in the stylesheet to use for the fallback test.\n Must be used in conjunction with and ,\n and either or .\n \n ", + "Metadata": { + "Common.PropertyName": "FallbackTestClass" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-test-property", + "TypeName": "System.String", + "Documentation": "\n \n The CSS property name to use for the fallback test.\n Must be used in conjunction with and ,\n and either or .\n \n ", + "Metadata": { + "Common.PropertyName": "FallbackTestProperty" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-test-value", + "TypeName": "System.String", + "Documentation": "\n \n The CSS property value to use for the fallback test.\n Must be used in conjunction with and ,\n and either or .\n \n ", + "Metadata": { + "Common.PropertyName": "FallbackTestValue" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper" + } + }, + { + "HashCode": 1318465459, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <option> elements.\n \n \n This works in conjunction with . It reads elements\n content but does not modify that content. The only modification it makes is to add a selected attribute\n in some cases.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "option" + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "value", + "TypeName": "System.String", + "Documentation": "\n \n Specifies a value for the <option> element.\n \n \n Passed through to the generated HTML in all cases.\n \n ", + "Metadata": { + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper" + } + }, + { + "HashCode": -1416338091, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n Renders a partial view.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "partial", + "TagStructure": 2, + "Attributes": [ + { + "Name": "name" + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "name", + "TypeName": "System.String", + "Documentation": "\n \n The name or path of the partial view that is rendered to the response.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + }, + { + "Kind": "ITagHelper", + "Name": "for", + "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", + "Documentation": "\n \n An expression to be evaluated against the current model. Cannot be used together with .\n \n ", + "Metadata": { + "Common.PropertyName": "For" + } + }, + { + "Kind": "ITagHelper", + "Name": "model", + "TypeName": "System.Object", + "Documentation": "\n \n The model to pass into the partial view. Cannot be used together with .\n \n ", + "Metadata": { + "Common.PropertyName": "Model" + } + }, + { + "Kind": "ITagHelper", + "Name": "optional", + "TypeName": "System.Boolean", + "Documentation": "\n \n When optional, executing the tag helper will no-op if the view cannot be located.\n Otherwise will throw stating the view could not be found.\n \n ", + "Metadata": { + "Common.PropertyName": "Optional" + } + }, + { + "Kind": "ITagHelper", + "Name": "fallback-name", + "TypeName": "System.String", + "Documentation": "\n \n View to lookup if the view specified by cannot be located.\n \n ", + "Metadata": { + "Common.PropertyName": "FallbackName" + } + }, + { + "Kind": "ITagHelper", + "Name": "view-data", + "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary", + "IndexerNamePrefix": "view-data-", + "IndexerTypeName": "System.Object", + "Documentation": "\n \n A to pass into the partial view.\n \n ", + "Metadata": { + "Common.PropertyName": "ViewData" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper" + } + }, + { + "HashCode": 921037425, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PersistComponentStateTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n A that saves the state of Razor components rendered on the page up to that point.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "persist-component-state", + "TagStructure": 2 + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "persist-mode", + "TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.PersistenceMode?", + "Documentation": "\n \n Gets or sets the for the state to persist.\n \n ", + "Metadata": { + "Common.PropertyName": "PersistenceMode" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.PersistComponentStateTagHelper" + } + }, + { + "HashCode": 1183431281, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <script> elements that supports fallback src paths.\n \n \n The tag helper won't process for cases with just the 'src' attribute.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "script", + "Attributes": [ + { + "Name": "asp-src-include" + } + ] + }, + { + "TagName": "script", + "Attributes": [ + { + "Name": "asp-src-exclude" + } + ] + }, + { + "TagName": "script", + "Attributes": [ + { + "Name": "asp-fallback-src" + } + ] + }, + { + "TagName": "script", + "Attributes": [ + { + "Name": "asp-fallback-src-include" + } + ] + }, + { + "TagName": "script", + "Attributes": [ + { + "Name": "asp-fallback-src-exclude" + } + ] + }, + { + "TagName": "script", + "Attributes": [ + { + "Name": "asp-fallback-test" + } + ] + }, + { + "TagName": "script", + "Attributes": [ + { + "Name": "asp-append-version" + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "src", + "TypeName": "System.String", + "Documentation": "\n \n Address of the external script to use.\n \n \n Passed through to the generated HTML in all cases.\n \n ", + "Metadata": { + "Common.PropertyName": "Src" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-src-include", + "TypeName": "System.String", + "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to load.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", + "Metadata": { + "Common.PropertyName": "SrcInclude" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-src-exclude", + "TypeName": "System.String", + "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to exclude from loading.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", + "Metadata": { + "Common.PropertyName": "SrcExclude" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-src", + "TypeName": "System.String", + "Documentation": "\n \n The URL of a Script tag to fallback to in the case the primary one fails.\n \n ", + "Metadata": { + "Common.PropertyName": "FallbackSrc" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-suppress-fallback-integrity", + "TypeName": "System.Boolean", + "Documentation": "\n \n Boolean value that determines if an integrity hash will be compared with value.\n \n ", + "Metadata": { + "Common.PropertyName": "SuppressFallbackIntegrity" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-append-version", + "TypeName": "System.Boolean?", + "Documentation": "\n \n Value indicating if file version should be appended to src urls.\n \n \n A query string \"v\" with the encoded content of the file is added.\n \n ", + "Metadata": { + "Common.PropertyName": "AppendVersion" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-src-include", + "TypeName": "System.String", + "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to fallback to in the case the\n primary one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", + "Metadata": { + "Common.PropertyName": "FallbackSrcInclude" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-src-exclude", + "TypeName": "System.String", + "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to exclude from the fallback list, in\n the case the primary one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", + "Metadata": { + "Common.PropertyName": "FallbackSrcExclude" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-fallback-test", + "TypeName": "System.String", + "Documentation": "\n \n The script method defined in the primary script to use for the fallback test.\n \n ", + "Metadata": { + "Common.PropertyName": "FallbackTestExpression" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper" + } + }, + { + "HashCode": -1869573769, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <select> elements with asp-for and/or\n asp-items attribute(s).\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "select", + "Attributes": [ + { + "Name": "asp-for" + } + ] + }, + { + "TagName": "select", + "Attributes": [ + { + "Name": "asp-items" + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-for", + "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", + "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", + "Metadata": { + "Common.PropertyName": "For" + } + }, + { + "Kind": "ITagHelper", + "Name": "asp-items", + "TypeName": "System.Collections.Generic.IEnumerable", + "Documentation": "\n \n A collection of objects used to populate the <select> element with\n <optgroup> and <option> elements.\n \n ", + "Metadata": { + "Common.PropertyName": "Items" + } + }, + { + "Kind": "ITagHelper", + "Name": "name", + "TypeName": "System.String", + "Documentation": "\n \n The name of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine whether is\n valid with an empty .\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper" + } + }, + { + "HashCode": -1764683945, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting <textarea> elements with an asp-for attribute.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "textarea", + "Attributes": [ + { + "Name": "asp-for" + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-for", + "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", + "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", + "Metadata": { + "Common.PropertyName": "For" + } + }, + { + "Kind": "ITagHelper", + "Name": "name", + "TypeName": "System.String", + "Documentation": "\n \n The name of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine whether is\n valid with an empty .\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper" + } + }, + { + "HashCode": 206197995, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting any HTML element with an asp-validation-for\n attribute.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "span", + "Attributes": [ + { + "Name": "asp-validation-for" + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-validation-for", + "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", + "Documentation": "\n \n Gets an expression to be evaluated against the current model.\n \n ", + "Metadata": { + "Common.PropertyName": "For" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper" + } + }, + { + "HashCode": 1600928889, + "Kind": "ITagHelper", + "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper", + "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", + "Documentation": "\n \n implementation targeting any HTML element with an asp-validation-summary\n attribute.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "div", + "Attributes": [ + { + "Name": "asp-validation-summary" + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "asp-validation-summary", + "TypeName": "Microsoft.AspNetCore.Mvc.Rendering.ValidationSummary", + "IsEnum": true, + "Documentation": "\n \n If or , appends a validation\n summary. Otherwise (, the default), this tag helper does nothing.\n \n \n Thrown if setter is called with an undefined value e.g.\n (ValidationSummary)23.\n \n ", + "Metadata": { + "Common.PropertyName": "ValidationSummary" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper" + } + }, + { + "HashCode": -2101891819, + "Kind": "ITagHelper", + "Name": "StackExchange.Profiling.MiniProfilerScriptTagHelper", + "AssemblyName": "MiniProfiler.AspNetCore.Mvc", + "Documentation": "\n \n Tag helper to render MiniProfiler in ASP.NET Core views, e.g. <mini-profiler position=\"Right\" />\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "mini-profiler", + "TagStructure": 2 + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "view-context", + "TypeName": "Microsoft.AspNetCore.Mvc.Rendering.ViewContext", + "Documentation": "\n \n The view context of this tag helper, for accessing HttpContext on render.\n \n ", + "Metadata": { + "Common.PropertyName": "ViewContext" + } + }, + { + "Kind": "ITagHelper", + "Name": "position", + "TypeName": "StackExchange.Profiling.RenderPosition?", + "Documentation": "\n \n The UI position to render the profiler in (defaults to ).\n \n ", + "Metadata": { + "Common.PropertyName": "Position" + } + }, + { + "Kind": "ITagHelper", + "Name": "show-trivial", + "TypeName": "System.Boolean?", + "Documentation": "\n \n Whether to show trivial timings column initially or not (defaults to ).\n \n ", + "Metadata": { + "Common.PropertyName": "ShowTrivial" + } + }, + { + "Kind": "ITagHelper", + "Name": "show-time-with-children", + "TypeName": "System.Boolean?", + "Documentation": "\n \n Whether to show time with children column initially or not (defaults to ).\n \n ", + "Metadata": { + "Common.PropertyName": "ShowTimeWithChildren" + } + }, + { + "Kind": "ITagHelper", + "Name": "max-traces", + "TypeName": "System.Int32?", + "Documentation": "\n \n The maximum number of profilers to show (before the oldest is removed - defaults to ).\n \n ", + "Metadata": { + "Common.PropertyName": "MaxTraces" + } + }, + { + "Kind": "ITagHelper", + "Name": "show-controls", + "TypeName": "System.Boolean?", + "Documentation": "\n \n Whether to show the controls (defaults to ).\n \n ", + "Metadata": { + "Common.PropertyName": "ShowControls" + } + }, + { + "Kind": "ITagHelper", + "Name": "start-hidden", + "TypeName": "System.Boolean?", + "Documentation": "\n \n Whether to start hidden (defaults to ).\n \n ", + "Metadata": { + "Common.PropertyName": "StartHidden" + } + }, + { + "Kind": "ITagHelper", + "Name": "color-scheme", + "TypeName": "StackExchange.Profiling.ColorScheme?", + "Documentation": "\n \n The color scheme to start with:\n \n ", + "Metadata": { + "Common.PropertyName": "ColorScheme" + } + }, + { + "Kind": "ITagHelper", + "Name": "nonce", + "TypeName": "System.String", + "Documentation": "\n \n The JavaScript nonce (if any) to use on this script tag render.\n \n ", + "Metadata": { + "Common.PropertyName": "Nonce" + } + }, + { + "Kind": "ITagHelper", + "Name": "options", + "TypeName": "StackExchange.Profiling.RenderOptions", + "Documentation": "\n \n The options to use when rendering this MiniProfiler.\n Note: overrides all other options.\n \n ", + "Metadata": { + "Common.PropertyName": "RenderOptions" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "StackExchange.Profiling.MiniProfilerScriptTagHelper" + } + }, + { + "HashCode": -1057254113, + "Kind": "ITagHelper", + "Name": "StackExchange.Profiling.ProfileScriptTagHelper", + "AssemblyName": "MiniProfiler.AspNetCore.Mvc", + "Documentation": "\n \n Tag helper to profile script execution in ASP.NET Core views, e.g. \n <profile-script name=\"My Step\" />\n ...script blocks...\n </profile-script>\n Include as self closing to provide initialization only.\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "profile-script", + "TagStructure": 1 + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "name", + "TypeName": "System.String", + "Documentation": "\n \n The name of this step.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "StackExchange.Profiling.ProfileScriptTagHelper" + } + }, + { + "HashCode": -1332773738, + "Kind": "ITagHelper", + "Name": "StackExchange.Profiling.ProfileTagHelper", + "AssemblyName": "MiniProfiler.AspNetCore.Mvc", + "Documentation": "\n \n Tag helper to profile child contents in ASP.NET Core views, e.g. \n <profile name=\"My Step\" />\n ...child content...\n </profile>\n \n ", + "CaseSensitive": false, + "TagMatchingRules": [ + { + "TagName": "profile", + "TagStructure": 1 + } + ], + "BoundAttributes": [ + { + "Kind": "ITagHelper", + "Name": "name", + "TypeName": "System.String", + "Documentation": "\n \n The name of this step.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + } + ], + "Metadata": { + "Runtime.Name": "ITagHelper", + "Common.TypeName": "StackExchange.Profiling.ProfileTagHelper" + } + }, + { + "HashCode": -258658265, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to an attribute and a change event, based on the naming of the bind attribute. For example: @bind-value=\"...\" and @bind-value:event=\"onchange\" will assign the current value of the expression to the 'value' attribute, and assign a delegate that attempts to set the value to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@bind-", + "NameComparison": 1, + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-...", + "TypeName": "System.Collections.Generic.Dictionary", + "IndexerNamePrefix": "@bind-", + "IndexerTypeName": "System.Object", + "Documentation": "Binds the provided expression to an attribute and a change event, based on the naming of the bind attribute. For example: @bind-value=\"...\" and @bind-value:event=\"onchange\" will assign the current value of the expression to the 'value' attribute, and assign a delegate that attempts to set the value to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the corresponding bind attribute. For example: @bind-value:format=\"...\" will apply a format string to the value specified in @bind-value=\"...\". The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-...' attribute.", + "Metadata": { + "Common.PropertyName": "Event" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.Fallback": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Bind" + } + }, + { + "HashCode": 1379183078, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "False", + "Components.Bind.Format": null, + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": 1560587658, + "Kind": "Components.Bind", + "Name": "Bind_value", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "@bind-value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-value", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind_value" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "False", + "Components.Bind.Format": null, + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -82545938, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'checked' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "checkbox", + "ValueComparison": 1 + }, + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'checked' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_checked" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_checked" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-checked", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_checked" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "checked", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "False", + "Components.Bind.Format": null, + "Components.Bind.TypeAttribute": "checkbox", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -1483360074, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "text", + "ValueComparison": 1 + }, + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "False", + "Components.Bind.Format": null, + "Components.Bind.TypeAttribute": "text", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": 1167875188, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "number", + "ValueComparison": 1 + }, + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": null, + "Components.Bind.TypeAttribute": "number", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": 1223587472, + "Kind": "Components.Bind", + "Name": "Bind_value", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "number", + "ValueComparison": 1 + }, + { + "Name": "@bind-value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-value", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind_value" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": null, + "Components.Bind.TypeAttribute": "number", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": 1599665806, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "date", + "ValueComparison": 1 + }, + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "yyyy-MM-dd", + "Components.Bind.TypeAttribute": "date", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -1978756908, + "Kind": "Components.Bind", + "Name": "Bind_value", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "date", + "ValueComparison": 1 + }, + { + "Name": "@bind-value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-value", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind_value" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "yyyy-MM-dd", + "Components.Bind.TypeAttribute": "date", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -1492051664, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "datetime-local", + "ValueComparison": 1 + }, + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "yyyy-MM-ddTHH:mm:ss", + "Components.Bind.TypeAttribute": "datetime-local", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -1511973556, + "Kind": "Components.Bind", + "Name": "Bind_value", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "datetime-local", + "ValueComparison": 1 + }, + { + "Name": "@bind-value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-value", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind_value" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "yyyy-MM-ddTHH:mm:ss", + "Components.Bind.TypeAttribute": "datetime-local", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": 797739909, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "month", + "ValueComparison": 1 + }, + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "yyyy-MM", + "Components.Bind.TypeAttribute": "month", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": 69481179, + "Kind": "Components.Bind", + "Name": "Bind_value", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "month", + "ValueComparison": 1 + }, + { + "Name": "@bind-value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-value", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind_value" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "yyyy-MM", + "Components.Bind.TypeAttribute": "month", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -752766971, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "time", + "ValueComparison": 1 + }, + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "HH:mm:ss", + "Components.Bind.TypeAttribute": "time", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": 851319980, + "Kind": "Components.Bind", + "Name": "Bind_value", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "time", + "ValueComparison": 1 + }, + { + "Name": "@bind-value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-value", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind_value" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "HH:mm:ss", + "Components.Bind.TypeAttribute": "time", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -1774130989, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "select", + "Attributes": [ + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "False", + "Components.Bind.Format": null, + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -234192988, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "textarea", + "Attributes": [ + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "False", + "Components.Bind.Format": null, + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": 818642023, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputCheckbox", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox" + } + }, + { + "HashCode": -1291587637, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1465089606, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputDate", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate" + } + }, + { + "HashCode": 1952194510, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputDate", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -692865270, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputNumber", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber" + } + }, + { + "HashCode": 1415825300, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1017319795, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputRadioGroup", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup" + } + }, + { + "HashCode": -1638135900, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1570906584, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputSelect", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect" + } + }, + { + "HashCode": 570209740, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 922046341, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputText", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputText", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText" + } + }, + { + "HashCode": -150732073, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputText", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputText", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -2088140671, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputTextArea", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea" + } + }, + { + "HashCode": 1586802272, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputTextArea", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -154833363, + "Kind": "Components.Ref", + "Name": "Ref", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Populates the specified field or property with a reference to the element or component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ref", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Ref", + "Name": "@ref", + "TypeName": "System.Object", + "Documentation": "Populates the specified field or property with a reference to the element or component.", + "Metadata": { + "Common.PropertyName": "Ref", + "Common.DirectiveAttribute": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Ref", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Ref" + } + }, + { + "HashCode": -878223259, + "Kind": "Components.Key", + "Name": "Key", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Ensures that the component or element will be preserved across renders if (and only if) the supplied key value matches.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@key", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Key", + "Name": "@key", + "TypeName": "System.Object", + "Documentation": "Ensures that the component or element will be preserved across renders if (and only if) the supplied key value matches.", + "Metadata": { + "Common.PropertyName": "Key", + "Common.DirectiveAttribute": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Key", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Key" + } + } + ], + "CSharpLanguageVersion": 1000 + }, + "RootNamespace": "zzz.Api", + "Documents": [], + "SerializationFormat": "0.2" +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/ref/cjyx.Api.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/ref/cjyx.Api.dll new file mode 100644 index 0000000..5510808 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/ref/cjyx.Api.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/ref/zzz.Api.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/ref/zzz.Api.dll new file mode 100644 index 0000000..60ae183 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/ref/zzz.Api.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/refint/zzz.Api.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/refint/zzz.Api.dll new file mode 100644 index 0000000..60ae183 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/refint/zzz.Api.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/staticwebassets.build.json b/yuhong_plc/zzz.Api/obj/Debug/net6.0/staticwebassets.build.json new file mode 100644 index 0000000..4f29f52 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/staticwebassets.build.json @@ -0,0 +1,37 @@ +{ + "Version": 1, + "Hash": "JRRw62GIcFSeqj/dPtpFzjHTIIbufDwojy458QXr2rY=", + "Source": "zzz.Api", + "BasePath": "_content/zzz.Api", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [ + { + "Name": "zzz.Api\\wwwroot", + "Source": "zzz.Api", + "ContentRoot": "F:\\yuhong_plc\\zzz.Api\\wwwroot\\", + "BasePath": "_content/zzz.Api", + "Pattern": "**" + } + ], + "Assets": [ + { + "Identity": "F:\\yuhong_plc\\zzz.Api\\wwwroot\\index.html", + "SourceId": "zzz.Api", + "SourceType": "Discovered", + "ContentRoot": "F:\\yuhong_plc\\zzz.Api\\wwwroot\\", + "BasePath": "_content/zzz.Api", + "RelativePath": "index.html", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\index.html" + } + ] +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/staticwebassets.development.json b/yuhong_plc/zzz.Api/obj/Debug/net6.0/staticwebassets.development.json new file mode 100644 index 0000000..a0a3e71 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["F:\\yuhong_plc\\zzz.Api\\wwwroot\\"],"Root":{"Children":{"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/staticwebassets.publish.json b/yuhong_plc/zzz.Api/obj/Debug/net6.0/staticwebassets.publish.json new file mode 100644 index 0000000..01fae4e --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/staticwebassets.publish.json @@ -0,0 +1,37 @@ +{ + "Version": 1, + "Hash": "K5RCb0wcqpjcJk0qzoc50HlLt2hur1+OyPvWApFv8pY=", + "Source": "zzz.Api", + "BasePath": "_content/zzz.Api", + "Mode": "Default", + "ManifestType": "Publish", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [ + { + "Name": "zzz.Api\\wwwroot", + "Source": "zzz.Api", + "ContentRoot": "F:\\yuhong_plc\\zzz.Api\\wwwroot\\", + "BasePath": "_content/zzz.Api", + "Pattern": "**" + } + ], + "Assets": [ + { + "Identity": "F:\\yuhong_plc\\zzz.Api\\wwwroot\\index.html", + "SourceId": "zzz.Api", + "SourceType": "Discovered", + "ContentRoot": "F:\\yuhong_plc\\zzz.Api\\wwwroot\\", + "BasePath": "_content/zzz.Api", + "RelativePath": "index.html", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\index.html" + } + ] +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.AssemblyInfo.cs b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.AssemblyInfo.cs new file mode 100644 index 0000000..a8ebcb4 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("zzz.Api")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("zzz.Api")] +[assembly: System.Reflection.AssemblyTitleAttribute("zzz.Api")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ccbebee --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b2771824ddfe6af7412be5bc33e4ba0e8ef197df diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..799f466 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = zzz.Api +build_property.RootNamespace = zzz.Api +build_property.ProjectDir = F:\yuhong_plc\zzz.Api\ +build_property.RazorLangVersion = 6.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = F:\yuhong_plc\zzz.Api +build_property._RazorSourceGeneratorDebug = diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.GlobalUsings.g.cs b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.MvcApplicationPartsAssemblyInfo.cache b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.MvcApplicationPartsAssemblyInfo.cs b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..156abdc --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,21 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("MiniProfiler.AspNetCore.Mvc")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.Filters")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.Newtonsoft")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("zzz.Extensions")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.assets.cache b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.assets.cache new file mode 100644 index 0000000..328ec85 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.assets.cache differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.csproj.AssemblyReference.cache new file mode 100644 index 0000000..0918565 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.csproj.CopyComplete b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..2fb4ebd --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a8507e2fce704fadf5b09a735e3f832177dd283e diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..0b9c9f5 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.csproj.FileListAbsolute.txt @@ -0,0 +1,846 @@ +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Log4net.config +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\appsettings.Development.json +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\appsettings.json +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Api.staticwebassets.runtime.json +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Api.exe +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Api.deps.json +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Api.runtimeconfig.json +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Api.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\ref\zzz.Api.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Api.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\cjyx.Api.xml +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Autofac.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Autofac.Extensions.DependencyInjection.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Autofac.Extras.DynamicProxy.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\AutoMapper.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\BouncyCastle.Crypto.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Castle.Core.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Google.Protobuf.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\K4os.Compression.LZ4.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\K4os.Compression.LZ4.Streams.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\K4os.Hash.xxHash.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\log4net.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\MicroKnights.Log4NetAdoNetAppender.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.AspNetCore.JsonPatch.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.Data.SqlClient.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.Data.Sqlite.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.Extensions.Configuration.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.Extensions.DependencyModel.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.Identity.Client.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.OpenApi.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\MiniProfiler.Shared.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\MySql.Data.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Ubiety.Dns.Core.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\ZstdNet.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Newtonsoft.Json.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Newtonsoft.Json.Bson.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Npgsql.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Oracle.ManagedDataAccess.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Quartz.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Scrutor.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Serilog.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Serilog.Sinks.File.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\SQLitePCLRaw.batteries_v2.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\SQLitePCLRaw.nativelibrary.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\SQLitePCLRaw.core.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\SQLitePCLRaw.provider.dynamic_cdecl.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\SqlSugar.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\DmProvider.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Kdbndp.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Filters.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Filters.Abstractions.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Newtonsoft.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.DirectoryServices.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.Drawing.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.Runtime.Caching.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.Security.Permissions.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\System.Windows.Extensions.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\WebApiClient.Extensions.DependencyInjection.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\WebApiClient.JIT.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\Yitter.IdGenerator.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\alpine-x64\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\linux-arm\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\linux-arm64\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\linux-armel\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\linux-mips64\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\linux-x64\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\linux-x86\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\osx-x64\native\libe_sqlite3.dylib +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-arm\native\e_sqlite3.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-arm64\native\e_sqlite3.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-x64\native\e_sqlite3.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win-x86\native\e_sqlite3.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Extensions.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Extensions.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\bin\Debug\net6.0\zzz.Tasks.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\zzz.Api.csproj.AssemblyReference.cache +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\zzz.Api.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\zzz.Api.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\zzz.Api.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\zzz.Api.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cache +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\staticwebassets.build.json +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\staticwebassets.development.json +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\scopedcss\bundle\zzz.Api.styles.css +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\zzz.Api.csproj.CopyComplete +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\zzz.Api.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\ref\zzz.Api.dll +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\zzz.Api.pdb +D:\work\长江云息\Src\cjyx\cjyx.Api\obj\Debug\net6.0\zzz.Api.genruntimeconfig.cache +D:\work\长江云息\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.csproj.AssemblyReference.cache +D:\work\长江云息\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cs +D:\work\长江云息\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cache +D:\work\长江云息\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.dll +D:\work\长江云息\Src\cjyx\zzz.Api\obj\Debug\net6.0\ref\zzz.Api.dll +D:\work\长江云息\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.pdb +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Log4net.config +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\appsettings.Development.json +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\appsettings.json +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Api.staticwebassets.runtime.json +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Api.exe +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Api.deps.json +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Api.runtimeconfig.json +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Api.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\ref\zzz.Api.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Api.pdb +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Autofac.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Autofac.Extensions.DependencyInjection.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Autofac.Extras.DynamicProxy.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\AutoMapper.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\BouncyCastle.Crypto.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Castle.Core.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Google.Protobuf.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\K4os.Compression.LZ4.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\K4os.Compression.LZ4.Streams.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\K4os.Hash.xxHash.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\log4net.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\MicroKnights.Log4NetAdoNetAppender.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.JsonPatch.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Data.SqlClient.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Data.Sqlite.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.Configuration.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.DependencyModel.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Identity.Client.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.OpenApi.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\MiniProfiler.Shared.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\MySql.Data.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Ubiety.Dns.Core.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\ZstdNet.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Newtonsoft.Json.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Newtonsoft.Json.Bson.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Npgsql.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Oracle.ManagedDataAccess.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Quartz.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Scrutor.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Serilog.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Serilog.Sinks.File.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.batteries_v2.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.nativelibrary.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.core.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.provider.dynamic_cdecl.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\SqlSugar.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\DmProvider.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Kdbndp.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Filters.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Filters.Abstractions.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Newtonsoft.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.DirectoryServices.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Drawing.Common.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Runtime.Caching.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Security.Permissions.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Windows.Extensions.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\WebApiClient.Extensions.DependencyInjection.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\WebApiClient.JIT.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Yitter.IdGenerator.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\alpine-x64\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\linux-arm\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\linux-arm64\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\linux-armel\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\linux-mips64\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\linux-x64\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\linux-x86\native\libe_sqlite3.so +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\osx-x64\native\libe_sqlite3.dylib +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-arm\native\e_sqlite3.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-arm64\native\e_sqlite3.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-x64\native\e_sqlite3.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-x86\native\e_sqlite3.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Extensions.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Extensions.pdb +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Services.xml +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Tasks.pdb +D:\work\长江云息\Src\cjyx\zzz.Api\obj\Debug\net6.0\staticwebassets.build.json +D:\work\长江云息\Src\cjyx\zzz.Api\obj\Debug\net6.0\staticwebassets.development.json +D:\work\长江云息\Src\cjyx\zzz.Api\obj\Debug\net6.0\scopedcss\bundle\zzz.Api.styles.css +D:\work\长江云息\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.csproj.CopyComplete +D:\work\长江云息\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.genruntimeconfig.cache +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Api.xml +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.SignalR.Common.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.Features.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.IO.Pipelines.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Net.WebSockets.WebSocketProtocol.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\MiniProfiler.AspNetCore.dll +D:\work\长江云息\Src\cjyx\zzz.Api\bin\Debug\net6.0\MiniProfiler.AspNetCore.Mvc.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Log4net.config +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\appsettings.Development.json +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\appsettings.json +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Api.staticwebassets.runtime.json +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Api.exe +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Api.deps.json +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Api.runtimeconfig.json +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Api.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\ref\zzz.Api.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Api.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Api.xml +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Autofac.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Autofac.Extensions.DependencyInjection.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Autofac.Extras.DynamicProxy.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\AutoMapper.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\BouncyCastle.Crypto.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Castle.Core.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Google.Protobuf.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\K4os.Compression.LZ4.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\K4os.Compression.LZ4.Streams.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\K4os.Hash.xxHash.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\log4net.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\MicroKnights.Log4NetAdoNetAppender.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.JsonPatch.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.SignalR.Common.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Data.SqlClient.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Data.Sqlite.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.Configuration.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.DependencyModel.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.Features.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Identity.Client.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.OpenApi.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\MiniProfiler.AspNetCore.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\MiniProfiler.AspNetCore.Mvc.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\MiniProfiler.Shared.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\MySql.Data.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Ubiety.Dns.Core.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\ZstdNet.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Newtonsoft.Json.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Newtonsoft.Json.Bson.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Npgsql.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Oracle.ManagedDataAccess.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Quartz.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Scrutor.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Serilog.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Serilog.Sinks.File.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.batteries_v2.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.nativelibrary.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.core.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.provider.dynamic_cdecl.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\SqlSugar.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\DmProvider.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Kdbndp.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Filters.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Filters.Abstractions.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Newtonsoft.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.DirectoryServices.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Drawing.Common.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.IO.Pipelines.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Net.WebSockets.WebSocketProtocol.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Runtime.Caching.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Security.Permissions.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\System.Windows.Extensions.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\WebApiClient.Extensions.DependencyInjection.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\WebApiClient.JIT.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\Yitter.IdGenerator.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\alpine-x64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\linux-arm\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\linux-arm64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\linux-armel\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\linux-mips64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\linux-x64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\linux-x86\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\osx-x64\native\libe_sqlite3.dylib +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-arm\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-arm64\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-x64\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win-x86\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Extensions.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Services.xml +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\zzz.Tasks.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\obj\Debug\net6.0\staticwebassets.build.json +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\obj\Debug\net6.0\staticwebassets.development.json +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\obj\Debug\net6.0\scopedcss\bundle\zzz.Api.styles.css +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\obj\Debug\net6.0\ref\zzz.Api.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\obj\Debug\net6.0\zzz.Api.genruntimeconfig.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Api\bin\Debug\net6.0\HslCommunication.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Log4net.config +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\appsettings.Development.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\appsettings.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Api.staticwebassets.runtime.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Api.exe +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Api.deps.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Api.runtimeconfig.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Api.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\ref\zzz.Api.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Api.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Api.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Autofac.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Autofac.Extensions.DependencyInjection.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Autofac.Extras.DynamicProxy.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\AutoMapper.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\BouncyCastle.Crypto.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Castle.Core.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Google.Protobuf.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\HslCommunication.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\K4os.Compression.LZ4.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\K4os.Compression.LZ4.Streams.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\K4os.Hash.xxHash.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\log4net.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\MicroKnights.Log4NetAdoNetAppender.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.JsonPatch.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.SignalR.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Data.SqlClient.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Data.Sqlite.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.Configuration.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.DependencyModel.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.Features.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Identity.Client.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.OpenApi.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\MiniProfiler.AspNetCore.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\MiniProfiler.AspNetCore.Mvc.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\MiniProfiler.Shared.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\MySql.Data.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Ubiety.Dns.Core.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\ZstdNet.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Newtonsoft.Json.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Newtonsoft.Json.Bson.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Npgsql.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Oracle.ManagedDataAccess.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Quartz.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Scrutor.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Serilog.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Serilog.Sinks.File.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.batteries_v2.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.nativelibrary.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.core.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.provider.dynamic_cdecl.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\SqlSugar.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\DmProvider.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Kdbndp.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Filters.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Filters.Abstractions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Newtonsoft.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.DirectoryServices.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Drawing.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.IO.Pipelines.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Net.WebSockets.WebSocketProtocol.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Runtime.Caching.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Security.Permissions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Windows.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\WebApiClient.Extensions.DependencyInjection.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\WebApiClient.JIT.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Yitter.IdGenerator.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\alpine-x64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\linux-arm\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\linux-arm64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\linux-armel\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\linux-mips64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\linux-x64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\linux-x86\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\osx-x64\native\libe_sqlite3.dylib +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-arm\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-arm64\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-x64\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-x86\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Extensions.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Services.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Tasks.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\staticwebassets.build.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\staticwebassets.development.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\scopedcss\bundle\zzz.Api.styles.css +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\ref\zzz.Api.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.genruntimeconfig.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Log4net.config +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\appsettings.Development.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\appsettings.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Api.staticwebassets.runtime.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Api.exe +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Api.deps.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Api.runtimeconfig.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Api.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Api.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Api.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Autofac.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Autofac.Extensions.DependencyInjection.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Autofac.Extras.DynamicProxy.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\AutoMapper.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\BouncyCastle.Crypto.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Castle.Core.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Google.Protobuf.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\HslCommunication.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\K4os.Compression.LZ4.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\K4os.Compression.LZ4.Streams.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\K4os.Hash.xxHash.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\log4net.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\MicroKnights.Log4NetAdoNetAppender.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.JsonPatch.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.SignalR.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Data.SqlClient.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Data.Sqlite.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.Configuration.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.DependencyModel.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.Features.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Identity.Client.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.OpenApi.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\MiniProfiler.AspNetCore.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\MiniProfiler.AspNetCore.Mvc.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\MiniProfiler.Shared.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\MySql.Data.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Ubiety.Dns.Core.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\ZstdNet.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Newtonsoft.Json.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Newtonsoft.Json.Bson.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Npgsql.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Oracle.ManagedDataAccess.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Quartz.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Scrutor.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Serilog.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Serilog.Sinks.File.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.batteries_v2.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.nativelibrary.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.core.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.provider.dynamic_cdecl.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\SqlSugar.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\DmProvider.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Kdbndp.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Filters.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Filters.Abstractions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Newtonsoft.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.DirectoryServices.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Drawing.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.IO.Pipelines.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Net.WebSockets.WebSocketProtocol.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Runtime.Caching.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Security.Permissions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\System.Windows.Extensions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\WebApiClient.Extensions.DependencyInjection.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\WebApiClient.JIT.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\Yitter.IdGenerator.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\alpine-x64\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\linux-arm\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\linux-arm64\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\linux-armel\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\linux-mips64\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\linux-x64\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\linux-x86\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\osx-x64\native\libe_sqlite3.dylib +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-arm\native\e_sqlite3.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-arm64\native\e_sqlite3.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-x64\native\e_sqlite3.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win-x86\native\e_sqlite3.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Extensions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Repository.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Services.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Tasks.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Extensions.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Model.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Repository.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Services.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Services.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Debug\net6.0\zzz.Tasks.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.GeneratedMSBuildEditorConfig.editorconfig +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.AssemblyInfoInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.AssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.csproj.CoreCompileInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\staticwebassets.build.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\staticwebassets.development.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\scopedcss\bundle\zzz.Api.styles.css +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.csproj.CopyComplete +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\refint\zzz.Api.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\zzz.Api.genruntimeconfig.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Debug\net6.0\ref\zzz.Api.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Log4net.config +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\appsettings.Development.json +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\appsettings.json +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Api.staticwebassets.runtime.json +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Api.exe +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Api.deps.json +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Api.runtimeconfig.json +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Api.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Api.pdb +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Api.xml +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Autofac.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Autofac.Extensions.DependencyInjection.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Autofac.Extras.DynamicProxy.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\AutoMapper.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\BouncyCastle.Crypto.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Castle.Core.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Google.Protobuf.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\HslCommunication.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\K4os.Compression.LZ4.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\K4os.Compression.LZ4.Streams.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\K4os.Hash.xxHash.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\log4net.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\MicroKnights.Log4NetAdoNetAppender.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.Connections.Abstractions.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.JsonPatch.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.SignalR.Common.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.Data.SqlClient.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.Data.Sqlite.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.Configuration.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.DependencyModel.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.Features.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.Identity.Client.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.OpenApi.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\MiniProfiler.AspNetCore.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\MiniProfiler.AspNetCore.Mvc.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\MiniProfiler.Shared.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\MySql.Data.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Ubiety.Dns.Core.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\ZstdNet.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Newtonsoft.Json.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Newtonsoft.Json.Bson.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Npgsql.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Oracle.ManagedDataAccess.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Quartz.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Scrutor.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Serilog.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Serilog.Sinks.File.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.batteries_v2.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.nativelibrary.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.core.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\SQLitePCLRaw.provider.dynamic_cdecl.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\SqlSugar.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\DmProvider.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Kdbndp.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Filters.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Filters.Abstractions.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Newtonsoft.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\System.DirectoryServices.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\System.Drawing.Common.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\System.IO.Pipelines.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\System.Net.WebSockets.WebSocketProtocol.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\System.Runtime.Caching.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\System.Security.Permissions.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\System.Windows.Extensions.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\WebApiClient.Extensions.DependencyInjection.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\WebApiClient.JIT.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\Yitter.IdGenerator.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\alpine-x64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\linux-arm\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\linux-arm64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\linux-armel\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\linux-mips64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\linux-x64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\linux-x86\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\osx-x64\native\libe_sqlite3.dylib +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win-arm\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win-arm64\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win-x64\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win-x86\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Common.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Extensions.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Model.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Repository.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Services.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Tasks.dll +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Extensions.pdb +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Common.pdb +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Model.pdb +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Model.xml +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Repository.pdb +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Services.pdb +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Services.xml +F:\yuhong_plc\zzz.Api\bin\Debug\net6.0\zzz.Tasks.pdb +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\zzz.Api.csproj.AssemblyReference.cache +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\zzz.Api.GeneratedMSBuildEditorConfig.editorconfig +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\zzz.Api.AssemblyInfoInputs.cache +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\zzz.Api.AssemblyInfo.cs +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\zzz.Api.csproj.CoreCompileInputs.cache +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cs +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cache +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\staticwebassets.build.json +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\staticwebassets.development.json +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\scopedcss\bundle\zzz.Api.styles.css +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\zzz.Api.csproj.CopyComplete +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\zzz.Api.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\refint\zzz.Api.dll +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\zzz.Api.pdb +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\zzz.Api.genruntimeconfig.cache +F:\yuhong_plc\zzz.Api\obj\Debug\net6.0\ref\zzz.Api.dll diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.dll b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.dll new file mode 100644 index 0000000..66b0b26 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.genruntimeconfig.cache b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.genruntimeconfig.cache new file mode 100644 index 0000000..b31347d --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.genruntimeconfig.cache @@ -0,0 +1 @@ +6404141602f34d27dab82718757abe168e8c9f73 diff --git a/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.pdb b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.pdb new file mode 100644 index 0000000..4383d8e Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Debug/net6.0/zzz.Api.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/yuhong_plc/zzz.Api/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll new file mode 100644 index 0000000..d8c1c58 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/AutoMapper.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/AutoMapper.dll new file mode 100644 index 0000000..7699210 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/AutoMapper.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Autofac.Extensions.DependencyInjection.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Autofac.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..ecbb4c9 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Autofac.Extensions.DependencyInjection.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Autofac.Extras.DynamicProxy.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Autofac.Extras.DynamicProxy.dll new file mode 100644 index 0000000..30922cf Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Autofac.Extras.DynamicProxy.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Autofac.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Autofac.dll new file mode 100644 index 0000000..fa2fdf5 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Autofac.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/BouncyCastle.Crypto.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/BouncyCastle.Crypto.dll new file mode 100644 index 0000000..395228b Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/BouncyCastle.Crypto.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Castle.Core.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Castle.Core.dll new file mode 100644 index 0000000..527172e Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Castle.Core.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/DmProvider.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/DmProvider.dll new file mode 100644 index 0000000..7f92f58 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/DmProvider.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Google.Protobuf.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Google.Protobuf.dll new file mode 100644 index 0000000..cf2e030 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Google.Protobuf.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/HslCommunication.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/HslCommunication.dll new file mode 100644 index 0000000..649961a Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/HslCommunication.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/K4os.Compression.LZ4.Streams.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/K4os.Compression.LZ4.Streams.dll new file mode 100644 index 0000000..42f55d6 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/K4os.Compression.LZ4.Streams.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/K4os.Compression.LZ4.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/K4os.Compression.LZ4.dll new file mode 100644 index 0000000..718ebb3 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/K4os.Compression.LZ4.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/K4os.Hash.xxHash.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/K4os.Hash.xxHash.dll new file mode 100644 index 0000000..4179a29 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/K4os.Hash.xxHash.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Kdbndp.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Kdbndp.dll new file mode 100644 index 0000000..af774bb Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Kdbndp.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Log4net.config b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Log4net.config new file mode 100644 index 0000000..ab6106d --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Log4net.config @@ -0,0 +1,511 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/MicroKnights.Log4NetAdoNetAppender.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/MicroKnights.Log4NetAdoNetAppender.dll new file mode 100644 index 0000000..4fd54e0 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/MicroKnights.Log4NetAdoNetAppender.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.AspNetCore.Connections.Abstractions.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 0000000..85586ae Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.AspNetCore.JsonPatch.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.AspNetCore.JsonPatch.dll new file mode 100644 index 0000000..cab786e Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.AspNetCore.JsonPatch.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll new file mode 100644 index 0000000..3393ce2 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.AspNetCore.SignalR.Common.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100644 index 0000000..cc430da Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll new file mode 100644 index 0000000..b7f8005 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Data.SqlClient.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..7131196 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Data.Sqlite.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..5929124 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Data.Sqlite.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Extensions.Configuration.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..b84fb11 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Extensions.Configuration.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Extensions.DependencyModel.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..02b9f97 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Extensions.DependencyModel.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Extensions.Features.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Extensions.Features.dll new file mode 100644 index 0000000..71bca4a Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Extensions.Features.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll new file mode 100644 index 0000000..66eb022 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Identity.Client.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Identity.Client.dll new file mode 100644 index 0000000..c01fcbf Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Identity.Client.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..70b84f2 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.IdentityModel.Logging.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..7ecc3be Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.IdentityModel.Logging.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..d925b5b Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..17423cc Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..dd66624 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.OpenApi.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.OpenApi.dll new file mode 100644 index 0000000..14f3ded Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.OpenApi.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Win32.SystemEvents.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..e27fe8d Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Microsoft.Win32.SystemEvents.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/MiniProfiler.AspNetCore.Mvc.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/MiniProfiler.AspNetCore.Mvc.dll new file mode 100644 index 0000000..61610c8 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/MiniProfiler.AspNetCore.Mvc.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/MiniProfiler.AspNetCore.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/MiniProfiler.AspNetCore.dll new file mode 100644 index 0000000..bd60830 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/MiniProfiler.AspNetCore.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/MiniProfiler.Shared.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/MiniProfiler.Shared.dll new file mode 100644 index 0000000..5f3f7e0 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/MiniProfiler.Shared.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/MySql.Data.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/MySql.Data.dll new file mode 100644 index 0000000..c4eb61b Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/MySql.Data.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Newtonsoft.Json.Bson.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Newtonsoft.Json.Bson.dll new file mode 100644 index 0000000..e9b1dd2 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Newtonsoft.Json.Bson.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Newtonsoft.Json.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Newtonsoft.Json.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Npgsql.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Npgsql.dll new file mode 100644 index 0000000..7b2d4a0 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Npgsql.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Oracle.ManagedDataAccess.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Oracle.ManagedDataAccess.dll new file mode 100644 index 0000000..50822b9 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Oracle.ManagedDataAccess.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Quartz.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Quartz.dll new file mode 100644 index 0000000..9b4b363 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Quartz.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/SQLitePCLRaw.batteries_v2.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..c51a77d Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/SQLitePCLRaw.batteries_v2.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/SQLitePCLRaw.core.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..d995f27 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/SQLitePCLRaw.core.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/SQLitePCLRaw.nativelibrary.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/SQLitePCLRaw.nativelibrary.dll new file mode 100644 index 0000000..7bb1b03 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/SQLitePCLRaw.nativelibrary.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/SQLitePCLRaw.provider.dynamic_cdecl.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/SQLitePCLRaw.provider.dynamic_cdecl.dll new file mode 100644 index 0000000..2be5647 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/SQLitePCLRaw.provider.dynamic_cdecl.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Scrutor.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Scrutor.dll new file mode 100644 index 0000000..06eb31e Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Scrutor.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Serilog.Sinks.File.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Serilog.Sinks.File.dll new file mode 100644 index 0000000..29dc2fd Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Serilog.Sinks.File.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Serilog.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Serilog.dll new file mode 100644 index 0000000..e040a8a Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Serilog.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/SqlSugar.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/SqlSugar.dll new file mode 100644 index 0000000..2313b7b Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/SqlSugar.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Filters.Abstractions.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Filters.Abstractions.dll new file mode 100644 index 0000000..2c44bb5 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Filters.Abstractions.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Filters.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Filters.dll new file mode 100644 index 0000000..7be1d8a Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Filters.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Newtonsoft.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Newtonsoft.dll new file mode 100644 index 0000000..61534e9 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Newtonsoft.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..88995c9 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..6afe2f0 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..a26f458 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Configuration.ConfigurationManager.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..6f34b8d Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Configuration.ConfigurationManager.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Diagnostics.PerformanceCounter.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..3300cff Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Diagnostics.PerformanceCounter.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.DirectoryServices.Protocols.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..ffc64e4 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.DirectoryServices.Protocols.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.DirectoryServices.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.DirectoryServices.dll new file mode 100644 index 0000000..b361d18 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.DirectoryServices.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Drawing.Common.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Drawing.Common.dll new file mode 100644 index 0000000..69e5f5c Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Drawing.Common.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.IO.Pipelines.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.IO.Pipelines.dll new file mode 100644 index 0000000..8ee4dfd Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.IO.Pipelines.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..efd3c61 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Net.WebSockets.WebSocketProtocol.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Net.WebSockets.WebSocketProtocol.dll new file mode 100644 index 0000000..b6a723a Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Net.WebSockets.WebSocketProtocol.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Runtime.Caching.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Runtime.Caching.dll new file mode 100644 index 0000000..6fedfab Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Runtime.Caching.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..a60b95b Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Security.Permissions.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Security.Permissions.dll new file mode 100644 index 0000000..76faf41 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Security.Permissions.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Windows.Extensions.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Windows.Extensions.dll new file mode 100644 index 0000000..7f075b2 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/System.Windows.Extensions.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Ubiety.Dns.Core.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Ubiety.Dns.Core.dll new file mode 100644 index 0000000..b10ecf2 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Ubiety.Dns.Core.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/WebApiClient.Extensions.DependencyInjection.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/WebApiClient.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..f6580f4 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/WebApiClient.Extensions.DependencyInjection.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/WebApiClient.JIT.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/WebApiClient.JIT.dll new file mode 100644 index 0000000..c68d9b5 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/WebApiClient.JIT.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Yitter.IdGenerator.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Yitter.IdGenerator.dll new file mode 100644 index 0000000..7eb8700 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/Yitter.IdGenerator.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/ZstdNet.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/ZstdNet.dll new file mode 100644 index 0000000..bc60788 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/ZstdNet.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/appsettings.Development.json b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/appsettings.json b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/appsettings.json new file mode 100644 index 0000000..5e7f1c5 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/appsettings.json @@ -0,0 +1,70 @@ +{ + //���ݿ����� /* MySql=0;SqlServer=1;Sqlite=2;Oracle=3;PostgreSQL=4;Dm=5;;;;;;;;*/ + "DBType": 0, + //���ݿ������ַ��� + "ConnectionStrings": { + "Sqlite": "Data Source=./Magic.db", + "SqlServer": "Server=BLACK; Database=zzzTest01; User=sa; Password=123456zls!;MultipleActiveResultSets=True;", + //"MySql": "Data Source=150.158.169.212;Database=cjyx;User ID=base;Password=123456;pooling=true;port=3306;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;", + "MySql": "Data Source=222.71.165.187;Database=cjyx;User ID=root;Password=qawsed,.123;pooling=true;port=3309;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;" + //"MySql": "Data Source=101.34.35.69;Database=cjyx_wm;User ID=base;Password=123456;pooling=true;port=3306;sslmode=none;CharSet=utf8;Convert Zero Datetime=True;Allow Zero Datetime=True;" + }, + //�Զ��������ݿ� + "SeedDBEnabled": false, + //�Զ���ʼ������ + "SeedDBDataEnabled": false, + //Logд��DB + "LogToDb": false, + + //Logging���� + "Logging": { + "LogLevel": { + "Default": "Information", //����Default����log4net����д�벻����־ + "zzz.AuthHelper.ApiResponseHandler": "Error" + }, + "Debug": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning" + } + }, + "Console": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning", + "Microsoft.Hosting.Lifetime": "Debug" + } + }, + "Log4Net": { + "Name": "zzz" + } + }, + "AllowedHosts": "*", + //�м������ + "Middleware": { + //��ʱ���� + "QuartzNetJob": false, + //����д��Log + "RequestResponseLog": true, + //���ܷ��� + "MiniProfiler": true, + "SignalR": true + }, + //Aop���� + "Aop": { + "LogAOP": true, + "TranAOP": true, + "SqlAOP": { + "OutToLogFile": true, + "OutToConsole": true + } + }, + //�ܼ���Api���� + "Gjp": { + "BasicUrl": "http://api.cmgrasp.com/CMGraspApi/GateWay", + "AppKey": "80DDA4A9D5804DA4B0887104529523C2", + "SercretKey": "EE379CED41C748B49024FC8CD81B5909", + "userid": "10488149", + "dbname": "M7215API����" + } +} diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/log4net.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/log4net.dll new file mode 100644 index 0000000..3d6a0a6 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/log4net.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/alpine-x64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/alpine-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/alpine-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-arm/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..6b0158a Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-arm64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..7c590b7 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-armel/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..bc22810 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-mips64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..c82d186 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-musl-x64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..9c98d9f Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-x64/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..484bfc2 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-x86/native/libe_sqlite3.so b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..d4c96f7 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/osx-x64/native/libe_sqlite3.dylib b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3b9e7a4 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..3a19d3d Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..3fc08e4 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..3068646 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-arm/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..d019891 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..965f535 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-arm64/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..d8b3149 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..227b87b Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-x64/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..8d3ca0c Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..0add8c2 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-x86/native/e_sqlite3.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..3ad1bc9 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..9d5fe02 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..c9f3075 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll new file mode 100644 index 0000000..04879ec Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..c49c358 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..9a04b68 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..3fb4939 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..c4b9b5d Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..175d085 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..d8f2f45 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/web.config b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/web.config new file mode 100644 index 0000000..f9ad3ee --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/web.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/wwwroot/index.html b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/wwwroot/index.html new file mode 100644 index 0000000..73e74b5 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/wwwroot/index.html @@ -0,0 +1,10 @@ + + + + + Swagger入坑 + + + + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.deps.json b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.deps.json new file mode 100644 index 0000000..ebdd1fd --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.deps.json @@ -0,0 +1,3725 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Api/1.0.0": { + "dependencies": { + "Autofac.Extensions.DependencyInjection": "7.2.0", + "MicroKnights.Log4NetAdoNetAppender": "2.2.0", + "zzz.Extensions": "1.0.0" + }, + "runtime": { + "zzz.Api.dll": {} + } + }, + "Autofac/6.3.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net5.0/Autofac.dll": { + "assemblyVersion": "6.3.0.0", + "fileVersion": "6.3.0.0" + } + } + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "dependencies": { + "Autofac": "6.3.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + }, + "runtime": { + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.2.0.0" + } + } + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "dependencies": { + "Autofac": "6.3.0", + "Castle.Core": "4.4.0" + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.1.0" + } + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Castle.Core/4.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.4.0.0" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "HslCommunication/7.0.1": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": { + "assemblyVersion": "7.0.1.0", + "fileVersion": "7.0.1.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "MicroKnights.Log4NetAdoNetAppender/2.2.0": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "lib/netstandard2.1/MicroKnights.Log4NetAdoNetAppender.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "dependencies": { + "Microsoft.Extensions.Features": "6.0.5", + "System.IO.Pipelines": "6.0.3" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0" + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.0", + "Newtonsoft.Json": "13.0.1", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Newtonsoft.Json": "13.0.1", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "6.0.0-rc.1.21452.15", + "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + } + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections": "1.1.0", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0" + } + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.5.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Net.WebSockets.WebSocketProtocol": "4.5.1" + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.Extensions.Features/6.0.5": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Features.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {}, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll": { + "assemblyVersion": "6.1.0.0", + "fileVersion": "6.1.0.0" + } + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": {}, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MiniProfiler.AspNetCore/4.2.22": { + "dependencies": { + "MiniProfiler.Shared": "4.2.22", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "dependencies": { + "MiniProfiler.AspNetCore": "4.2.22" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.Shared/4.2.22": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.ComponentModel.Primitives": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Quartz/3.4.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.0.0" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "Scrutor/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "13.0.1", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + } + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.OpenApi": "1.2.3", + "Scrutor": "3.3.0", + "Swashbuckle.AspNetCore.Filters.Abstractions": "7.0.2", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.0-rc.1.21452.15", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/1.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Pipelines/6.0.3": { + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21309" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "runtime": { + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26606.5" + } + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.4.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "dependencies": { + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "zzz.Extensions/1.0.0": { + "dependencies": { + "Autofac": "6.3.0", + "Autofac.Extras.DynamicProxy": "6.0.1", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.SignalR": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson": "6.0.5", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.Log4Net.AspNetCore": "6.1.0", + "MiniProfiler.AspNetCore.Mvc": "4.2.22", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Filters": "7.0.2", + "Swashbuckle.AspNetCore.Newtonsoft": "6.3.1", + "log4net": "2.0.14", + "zzz.Services": "1.0.0", + "zzz.Tasks": "1.0.0" + }, + "runtime": { + "zzz.Extensions.dll": {} + } + }, + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "runtime": { + "zzz.Repository.dll": {} + } + }, + "zzz.Services/1.0.0": { + "dependencies": { + "HslCommunication": "7.0.1", + "zzz.Repository": "1.0.0" + }, + "runtime": { + "zzz.Services.dll": {} + } + }, + "zzz.Tasks/1.0.0": { + "dependencies": { + "Quartz": "3.4.0", + "zzz.Services": "1.0.0" + }, + "runtime": { + "zzz.Tasks.dll": {} + } + } + } + }, + "libraries": { + "zzz.Api/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Autofac/6.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gO4bli0N8tDnBHzbYktcnbXlmN6T+IT5W+FUGgCUaM6pwwHXIxOPoUGvfGum7sZpJJgfQNgjFFv80ZPuARgRdA==", + "path": "autofac/6.3.0", + "hashPath": "autofac.6.3.0.nupkg.sha512" + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S2Jor8pTV+8QSs96ENq/FhGdnrWsntGs93z0OXYlIivUWGPNXQHNCjFPfSBeBlHClvJFEXMvlkY32bAKy2YkPg==", + "path": "autofac.extensions.dependencyinjection/7.2.0", + "hashPath": "autofac.extensions.dependencyinjection.7.2.0.nupkg.sha512" + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ulCOXUjbJ5dljBPZf3gRxQNPRGqg/h1cNTZ4SpXK3qiamTfRsW3gXs2w/IJ+CIDmHrFGYXLqzNd5etvzwB8kA==", + "path": "autofac.extras.dynamicproxy/6.0.1", + "hashPath": "autofac.extras.dynamicproxy.6.0.1.nupkg.sha512" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Castle.Core/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "path": "castle.core/4.4.0", + "hashPath": "castle.core.4.4.0.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "HslCommunication/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "path": "hslcommunication/7.0.1", + "hashPath": "hslcommunication.7.0.1.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "MicroKnights.Log4NetAdoNetAppender/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FryL/5pLWynP8znM5LTXd4M+DmD+Ftls5D8IlyMwCbH7MFWviLyNvGneJZFjmdXschal5lTUOB3Cs1FkEPs7tQ==", + "path": "microknights.log4netadonetappender/2.2.0", + "hashPath": "microknights.log4netadonetappender.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OBbGvih5/CLHTbJVDiJ203TmKXCx8z539O2YGnfHmExbNtMwyQ9rgpqoxyYEVvQrVsqxRhXfh57DOCQYhxcOBQ==", + "path": "microsoft.aspnetcore.connections.abstractions/6.0.5", + "hashPath": "microsoft.aspnetcore.connections.abstractions.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BAibpoItxI5puk7YJbIGj95arZueM8B8M5xT1fXBn3hb3L2G3ucrZcYXv1gXdaroLbntUs8qeV8iuBrpjQsrKw==", + "path": "microsoft.aspnetcore.http/2.2.2", + "hashPath": "microsoft.aspnetcore.http.2.2.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==", + "path": "microsoft.aspnetcore.http.connections/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mYk5QUUjyXQmlyDHWDjkLYDArt97plwe6KsDsNVhDEQ+HgZMKGjISyM6YSA7BERQNR25kXBTbIYfSy1vePGQgg==", + "path": "microsoft.aspnetcore.http.connections.common/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+27ce/d0w7jyEmCCMrzwFRg6PHZxQ37Fmnf+es1qQudbip2rryxPdM8TRoXT6wNtdlzqHnIyXTtLjSs0uIDhxA==", + "path": "microsoft.aspnetcore.jsonpatch/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.jsonpatch.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/dspuIknGgOdBygH3bmjsIH5neuuJ7DHILXrKVPAoCykPARAIUBckZlIW6RrYqmbGTZYT/YFCzr/xDR5f0YiAA==", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "path": "microsoft.aspnetcore.routing/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==", + "path": "microsoft.aspnetcore.signalr/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N+MF6rs64kDDJ4zroD/NqRgXVSEkj/ppTX36AB2S43qm1y64YqWMCFCzLshkmi7SwWwQQPIByTNZDJfz4x7GjQ==", + "path": "microsoft.aspnetcore.signalr.common/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.common.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/7VUbkomGE7ph6R1JTtMji5QPGqesyCSeELFmfylaqFM+SdWf9EmbU3SCQPcIWhfv+RgbUWmTNfWWPzmVDTggw==", + "path": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==", + "path": "microsoft.aspnetcore.websockets/2.2.0", + "hashPath": "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" + }, + "Microsoft.Extensions.Features/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7KLF1jRFQjSttfoilwHU86cU9ZgxN4ABfQR8tQ9qEC5AzTGYIX+K5RDwGFVK320eTiBwWuutV24ecmxBxo7Eg==", + "path": "microsoft.extensions.features/6.0.5", + "hashPath": "microsoft.extensions.features.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qHb3GudscgrgEVByh86kAq3FMmjOdPIVoqvff3eokEP+QkZHzr42l4PlgxBsqhhlIX02SazC7ZdbfiFGDPRv9A==", + "path": "microsoft.extensions.logging.log4net.aspnetcore/6.1.0", + "hashPath": "microsoft.extensions.logging.log4net.aspnetcore.6.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "path": "microsoft.extensions.objectpool/2.2.0", + "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "path": "microsoft.net.http.headers/2.2.0", + "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2FpFllO0wFJmfIXY9NXr33jWgr88b7E4gAuPHSNYzNr5o2XIouynxAoLA+SShuDI2ySSsvnBHURiXRX7tz59YA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MiniProfiler.AspNetCore/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bBirB5d4Q0Bgx05Zg4yzXSmOHZQV4ZJhmxU3DGya4FZxNBwjaVHchqEKY0MJW5XLZo8axMAQm4yywgCvUlTymA==", + "path": "miniprofiler.aspnetcore/4.2.22", + "hashPath": "miniprofiler.aspnetcore.4.2.22.nupkg.sha512" + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nzCEaZnh77U9jw+c/qu4CtwYUpHEf+FH1ZMbYKMzIXr8CNNPlypSR6AJEAwjo3bq9TIJIpBMZIaK3inRLUCg4g==", + "path": "miniprofiler.aspnetcore.mvc/4.2.22", + "hashPath": "miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512" + }, + "MiniProfiler.Shared/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==", + "path": "miniprofiler.shared/4.2.22", + "hashPath": "miniprofiler.shared.4.2.22.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/6XtTu0ZHzge7tzZZN8UXpwG1K0Vgxi7C7R0QiTgxMtN4gkzNl4xNVUI4X3tymMwKWUdwqXvzkrJqt3MdMFXig==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Quartz/3.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N8350OAlQhd8zKg0ARFikGjh3bfAW/CF/KVxu2fTIlAALB/oC1eg54n/QAPYR5ryHuYyDr5G8/Qa4k+D/7OFRQ==", + "path": "quartz/3.4.0", + "hashPath": "quartz.3.4.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kuvqViO3OnqjWcNSQfanREtHgqJx6UK5UHPeIl7M666izpBErP4TDZctWnYvuz7l/hpWPkS3DsUAUPAyVS/zBA==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QnpBRH8jHD/TtGA5fjrdK/BRf+Oslt/M/X+r487ByPS2q+EZUNwEiaoPUuZcqFcLwqAY2Fw7SciCHTPiK2GTqg==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i/u0Svwgj6JM9SpaoJAqTiMU3B0UZEUC35JadEBgkihBi+RzyRe2VlGwhZ6B63r78CmzZ/VAYNXvLAnoIaRG/A==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOKLiiK96F+8pPB+ALL20VFsTDBolLfysxlBZDGlFXDEBEZfdfm4OYuInLtxYHCUSxpJpPivIYm9jasMzfgzEQ==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSKGjRiQWUHf2zpiRD3+q8lzjL89HhiR74cevVqShwVHtDEHjAhDU75w6mPdeFg9QSyqI32Ud3Qskr5WHNCw+g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "Scrutor/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "path": "scrutor/3.3.0", + "hashPath": "scrutor.3.3.0.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "path": "swashbuckle.aspnetcore/6.2.3", + "hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pjj/BdKFcXX1tdUrVjfW6SiRSiHC4dOnqszhU2PuS0RBXZUnGM18tXUrNU2pgPkSjWUnCiyvbjd3GBkEuNTBYA==", + "path": "swashbuckle.aspnetcore.filters/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RqZ+P+m2cw1TVsU9LUHNdLf4Ww7YSqDRt7UHRzauZJnRztDlNR4doOGzXLmWZzq+3CfZyS7NEsQyJmf4Y+7GMQ==", + "path": "swashbuckle.aspnetcore.filters.abstractions/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oy6BwAX+tcKO13n9bw3nPtITBvD03bAHDN2+lTaOY/cUNcQE/liu3xWjbkdhLeNTUiC+7h+lJvR7KUdI7CXz0w==", + "path": "swashbuckle.aspnetcore.newtonsoft/6.3.1", + "hashPath": "swashbuckle.aspnetcore.newtonsoft.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-idAFh4xhyJHYHfdLVOOn+BmscBul1OQbWsnL6YPJE8tO/0y6S79hDCvs6OY5VI093/9+1pYY3j31Zet9yaDZjA==", + "path": "swashbuckle.aspnetcore.swagger/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+uoBV4h/6NhCPLoTofSmuOnZ+usu4PW1jP6l4OHwPyu2frbYXGNpJsHs5uUXXn929OiVQkT8wo3Lj/o+P99Ejg==", + "path": "swashbuckle.aspnetcore.swaggergen/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wvyiJIm0HlaoN+AlJXhTpDrhYkN28OC/nEun5QpbPkZvbpgWSYvZ8Hr9/G4Bd1I0WSmFW18KQuE5DOA05Uubrw==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wAdmaCgCSe298gCNvAf6vlVPfQUR7h43Qr2tTtJFYeto/OvttRLyG4ch6/R2FpuWRMfxHBsAeHYrzjvEk1UM+Q==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Un05L1TLTGqBBRKAFngtzovaNeFL1EGzuUwW0AiTotM/GUWVE0c0xH4owZgdJ6nf6DuK866gbLqD3c/Ms7KSOg==", + "path": "system.collections.immutable/1.3.0", + "hashPath": "system.collections.immutable.1.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sRo7MpbD5VnFdLZA/uVuR5YJdDV4i+DyJTpQ1rk92wCzLE4cXJ+q7tzGr2HwkL/ujeFNcPo/fOs7LKdDyeyupA==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wJLrK/MQdlF3TmfNouxSsgtCRhsgx4tz2KdY/mpvirOcgMc2W4DDK7vR6RcSc6XRV4P6rzrLFXd9wUzp/iWp0g==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aX7O7aytoclkwEvOv4vCDBP2hDVsrAbQVAOJXUka7qCXbbZcqtv8CKrX646dSERl9aO/tY0/g2ezsa4jBAMQOg==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6jD8gKBZvTfp1PEuqAkpMZvG9hF+gzGIvhvRh0K2qDApsiEpRZ9ZUlWE2nACpPdWP8w3DaL0TQAHuA7gXDSupA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "path": "system.diagnostics.tracesource/4.3.0", + "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ChcZW/eQtXpPDW7qMqlqK7xGW4A8hhz7/iY4J5hsvhzPsza7Cml+hdBhm5vAh6KhHcXzMvjfLcbChmZsYPlJsA==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zf/fX6NjK+eL01E0a5+pZb2NaitHwaVPlh7Wc62+wpnAtn1hA0ye8WAMV4r8DJv+AghKZYBwQwGqZJ9ikWLLkw==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ttt2PGgBfejL4xBEdMMd2E+Mqn/wC47jhMBtqRNJeH6uYa2j3fTDi1Jj1hAY5sfgbJcrvfSO46G1pufONMmfmA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kzMaA/htO8n7p5FQvyVXA9Q66+LntW+m0vp+Vnl5gSWsc6btlIYIC3aXs3DvtvdV0ue1tX/Mslkiei1vLgh3WA==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yn4CfuDOHBxI0b6JNSQJGqCIsuEqcjxQIAxktq316Jhz9Q0aRKqqGN7QNwd5fyNqz7mNMXfKDt1bJrtggkt8/g==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kRj3owqKUOxPcvQpK0VItuLGg/aXPjUxzT5ujrfMW0RrAQ7FJYB+mFiCawtGQVQatVCKr78TX39cJueK9ic8wA==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1d5+nGi+bWLgg0/wPO1IKJGSIe8Gy+WsMoT11T472mWHryC/qCISRl/v9w4rmk+72uX/1DFgBjBljUXyAK4jNg==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BnZgb92GKxi/DjV7WbZo2Sm7G8pImuLocQAHIkuFrRExeBMyjX0sIRY039HbnBObE7t5ihxRP3wYPSJ0Zt/apQ==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "path": "system.io.pipelines/6.0.3", + "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dGfhVR2KQhRwrl0D8yb8gJLpr2iX4Hnud1oNRwUbafrqskstG2kC3NMNp/t7QRzdb1mlNqc99F2OjXYKyHzdnA==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MHtkLrHBt/UkTMLaBYgCgrm2WBogOkEjDRlNJSxy18uQWEMN4ymSywGNwNHS8ATNyaGJzddvmdWI/UjLaLyskg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6sVcH1+qeVKf7xD/7k0ouAA7830LIw7Ltwo4bEl9ExyRVN/YNUhka9CBcd2Pp4Ugn14/cIY/i39bSTMUOmftFw==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S70uFEyXRAuRBxWsQWyVciioHMGOYxpob7a/TNchHKF9ceQPktdtcdl3/vktvUJU8B5ES7lG1wkglSWXYKHjcA==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==", + "path": "system.net.websockets.websocketprotocol/4.5.1", + "hashPath": "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TqRGJ6R6S9VpsXm2GpRy87TFXMxVqtYMrZtQFZHNJadQ1njAlpp0F5PfsWH04UNZWeY9X1jK+Kr8faJREA1kfg==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-13ihEbKKWpJYwZpo1kcDv2kW8eCK9twslQXpuqW/ulpHFhB2vuxbCuQgllNLjiSuL3uEKSPz34wC0xRb5hY9OA==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cYyPyIPBNlROATH5CjGQpvFhPdCrkDyVpChahZmpZlpXE4wQS+f6fUl+A/16U8/IShAiS3ofjX6bHuwRyHHWbQ==", + "path": "system.reflection.metadata/1.4.1", + "hashPath": "system.reflection.metadata.1.4.1.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJGsxoZ+9PXn+Qdjc5Nk6yJVqLk8lRR3k3uEGja59sC1EbkzMbVMqPFNOQmYxaO5Fbid8Bm29o+rB/PdDCDXNw==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yhyMfLA28dYAFahmTy+lM6rDrrca84R76fk8J0GH9gdtcZe6NuA7bWhLOCcWOEi74jZOIjtjtRPzkdSv6KlATQ==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-djZnX43T2YuLt526S/mq2pBiHQS8WfAUAg/nOt+oz6MkTo6HKAANCytQEFXmv6jyrumb8ohYe3ht2sEUMi9LMQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jw3ielASDELVDT+VPsL6PGRHp50mytxUnVp7UlKZWS3l5cxWAhZIWfTiunuqyy90WKcEIehjHkfpRqyzO5eFmw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPdBt8ZxEzxDYhPnWz+eegZMhyYBzea/Oi7AuuqwtyCATswlsMdA3tiw/U/rMP+MvDa4DIhI1inEwEDYArfuJg==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DG7gpkRnHPaofkkKx5jWKqI9gjcHhDOt3BeCMKRTImnngZvP1jlgYMXYXxY+S8XWyOoyU8KF5Tv0ZrG9FYREvQ==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xFN3KCCvtAdfdy+AngirK0Tku73Ne9i5NmV995PGnHOn6OvNx5j/f2Aa6FuEoZT1YshMjOlWfEKI8WAjnaxtRg==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iwhUBeB6oQ10iH2CRQeLNTHyQX9lxiMNZuC9nMY0IhiQlRaDtcwTVaGWSTShduj0V8o07kOgI53QayLnHt6i0A==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6hQ2W40ImHD8OSBL8zWYSwdae6iryMpeEThocf8u1m/0LFZUmnRtKyXZtXNNqwkbha/mDcjS+GbbCk+whXz0sA==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aUDiT8Qv4rbc1YwvWhBM76PzeoHLQLook/5PiXhFsBur7cniIsd2K0MhGDZ1M1IN9j7y6HdC7lnk+TS37lJEZA==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3h7hlVK5u8nzCUQFFYj6yw6NKYgnrUySo0oaXN21LyrOQpr052u5rvnSxUGuIKO7M9jRv1FaLZOGVI/+7olf9A==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IKcG64NTLVkZVHawu61/TldF/J/Vb7phwiECTLwB30N7NoUkXs1BquSuCJHyHCLUC0vEmEU0vqnQZY7T21Gc1Q==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EyRjbRA4pD4dG4O4XEzITKvzLRpauU4LhvS1UhiWUlvk5bUcfhFDMw1obsrvfpfD3zvqJ6PXm6Y4r2tUFf1yCQ==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MOrSyJ8eyHXyB4xMFN7AIZ5/B9ODYQxmspxxD2r5Zd8Os6hUAmVRUgl6s6Qml/j4nJGcsOHgonpDYmEAeuADMw==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Extensions/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Tasks/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.dll new file mode 100644 index 0000000..58eed86 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.exe b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.exe new file mode 100644 index 0000000..0e2703c Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.exe differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.pdb b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.pdb new file mode 100644 index 0000000..3beb9a9 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.runtimeconfig.json b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.runtimeconfig.json new file mode 100644 index 0000000..80d0347 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "6.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.xml b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.xml new file mode 100644 index 0000000..bc4f63c --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Api.xml @@ -0,0 +1,388 @@ + + + + zzz.Api + + + + + 持续运行 + + + + + 持续运行 + + + + + + + + 激活 + + + + + 立即执行任务 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 余宏大屏数据 + + + + + 余宏大屏数据 + + + + + + + + 工单列表数据 + + + + + + 工单详情 + + + + + + 动态月订单信息数据 + + + + + + 设备信息 + + + + + + 构造 + + + + + + + + 分页获取 + + + + + + + + 添加计划任务 + + + + + + + 修改计划任务 + + + + + + + 删除一个任务 + + + + + + + 启动计划任务 + + + + + + + 停止一个计划任务 + + + + + + + 暂停一个计划任务 + + + + + + + 恢复一个计划任务 + + + + + + + 重启一个计划任务 + + + + + + + 获取任务命名空间 + + + + + + 立即执行任务 + + + + + + + + + + + + + + + + + + + + + 测试 增加数据 BaseService + + + + + + 测试 增加数据 接口 + + + + + + 测试 修改数据 BaseService + + + + + + 测试 修改部分数据 BaseService + + + + + + 测试 修改数据 接口 + + + + + + 测试 修改部分数据 接口 + + + + + + 测试 软删除数据 BaseService + + + + + + 测试 软删除数据 接口 + + + + + + 测试取单条数据 BaseService + + + + + + + 测试取单条数据 IF + + + + + + + 测试分页数据 Baseservice + + + + + + + 测试分页数据 IF + + + + + + + + + + + + + 读取13线数据 + + + + + + 读取15线数据 + + + + + 构造 + + + + + + 同步表结果 Entity-->数据库 + + + + + + + 全局异常错误日志 + + + + + 异常拦截构造函数 + + + + + + + + 异常发生 + + + + + + 自定义返回格式 + + + + + + + + + + + + + + + + + + + 返回错误信息 + + + + + 生产环境的消息 + + + + + 开发环境的消息 + + + + diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Common.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Common.dll new file mode 100644 index 0000000..64d9d86 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Common.pdb b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Common.pdb new file mode 100644 index 0000000..72c1cc3 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Extensions.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Extensions.dll new file mode 100644 index 0000000..4d7f3ee Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Extensions.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Extensions.pdb b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Extensions.pdb new file mode 100644 index 0000000..079adfa Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Extensions.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Model.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Model.dll new file mode 100644 index 0000000..cbb2fa7 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Model.pdb b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Model.pdb new file mode 100644 index 0000000..c4d1ece Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Model.xml b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Model.xml new file mode 100644 index 0000000..79752c0 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Model.xml @@ -0,0 +1,1453 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Repository.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Repository.dll new file mode 100644 index 0000000..f29b898 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Repository.pdb b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Repository.pdb new file mode 100644 index 0000000..5a946d9 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Repository.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Services.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Services.dll new file mode 100644 index 0000000..ca0cddd Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Services.pdb b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Services.pdb new file mode 100644 index 0000000..08a7b6a Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Services.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Services.xml b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Services.xml new file mode 100644 index 0000000..9e14059 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Services.xml @@ -0,0 +1,899 @@ + + + + zzz.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 种子数据 服务 + + + + + 构造 + + + + + + 异步添加种子数据 + + + + + + + + 同步表结构 + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 种子数据 接口 + + + + + 同步表结构 + + + + + + + 设备名称 + + + + + 设备利用率DTO + + + + + x轴 + + + + + series + + + + + 动态月订单信息数据 + + + + + 生产计划达成率 + + + + + 订单交付率 + + + + + 生产数量 + + + + + 设备利用率 + + + + + 产品合格率 + + + + + 大屏生产工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 完成进度 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 各产品生产数量 + + + + + x轴 + + + + + series + + + + + PLC硬件信息 + + + + + eqmt_id + + + + + ip + + + + + 端口 + + + + + 读取PLC数据接口 + + + + + 读取13线数据 + + + + + 读取16线数据 + + + + + 读取17线数据 + + + + + 读取18线数据 + + + + + 读取19线数据 + + + + + 读取15线数据 + + + + + 读取PLC数据服务 + + + + + 构造 + + + + + 打开连接 + + + + + + + + 关闭连接 + + + + + 读取13线数据 + + + + + 读取16线数据 + 一个端口 + + + + + 读取19线数据 + 一个端口 + + + + + 读取17线数据 + 两个端口 + + + + + 读取18线数据 + 两个端口 + + + + + 创建间隔采集数据 + + + + + + 班次产量数据 + + + + + + 计算OEE + + + + + + + + + 读取15线数据 + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Tasks.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Tasks.dll new file mode 100644 index 0000000..058404e Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Tasks.pdb b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Tasks.pdb new file mode 100644 index 0000000..018fbc8 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/PubTmp/Out/zzz.Tasks.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PublishOutputs.3e695caa2a.txt b/yuhong_plc/zzz.Api/obj/Release/net6.0/PublishOutputs.3e695caa2a.txt new file mode 100644 index 0000000..0dd63cd --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/PublishOutputs.3e695caa2a.txt @@ -0,0 +1,126 @@ +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.exe +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Log4net.config +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\appsettings.Development.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\appsettings.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.deps.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.runtimeconfig.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Autofac.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Autofac.Extensions.DependencyInjection.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Autofac.Extras.DynamicProxy.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\AutoMapper.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\AutoMapper.Extensions.Microsoft.DependencyInjection.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\BouncyCastle.Crypto.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Castle.Core.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Google.Protobuf.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\HslCommunication.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\K4os.Compression.LZ4.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\K4os.Compression.LZ4.Streams.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\K4os.Hash.xxHash.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\log4net.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\MicroKnights.Log4NetAdoNetAppender.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.AspNetCore.JsonPatch.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.AspNetCore.SignalR.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Data.SqlClient.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Data.Sqlite.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Extensions.Configuration.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Extensions.DependencyModel.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Extensions.Features.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Identity.Client.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.IdentityModel.JsonWebTokens.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.IdentityModel.Logging.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.IdentityModel.Protocols.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.IdentityModel.Tokens.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.OpenApi.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Win32.SystemEvents.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\MiniProfiler.AspNetCore.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\MiniProfiler.AspNetCore.Mvc.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\MiniProfiler.Shared.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\MySql.Data.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Ubiety.Dns.Core.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\ZstdNet.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Newtonsoft.Json.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Newtonsoft.Json.Bson.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Npgsql.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Oracle.ManagedDataAccess.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Quartz.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Scrutor.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Serilog.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Serilog.Sinks.File.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\SQLitePCLRaw.batteries_v2.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\SQLitePCLRaw.nativelibrary.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\SQLitePCLRaw.core.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\SQLitePCLRaw.provider.dynamic_cdecl.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\SqlSugar.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\DmProvider.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Kdbndp.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Filters.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Filters.Abstractions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Newtonsoft.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Swagger.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Configuration.ConfigurationManager.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Diagnostics.PerformanceCounter.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.DirectoryServices.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.DirectoryServices.Protocols.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Drawing.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.IdentityModel.Tokens.Jwt.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.IO.Pipelines.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Net.WebSockets.WebSocketProtocol.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Runtime.Caching.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Security.Cryptography.ProtectedData.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Security.Permissions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Windows.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\WebApiClient.Extensions.DependencyInjection.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\WebApiClient.JIT.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Yitter.IdGenerator.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\alpine-x64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-arm\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-arm64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-armel\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-mips64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-musl-x64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-x64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-x86\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\osx-x64\native\libe_sqlite3.dylib +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-arm\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-arm64\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-x64\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-x86\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Extensions.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Services.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Services.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Tasks.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.xml diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PublishOutputs.8948c14719.txt b/yuhong_plc/zzz.Api/obj/Release/net6.0/PublishOutputs.8948c14719.txt new file mode 100644 index 0000000..ba685fb --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/PublishOutputs.8948c14719.txt @@ -0,0 +1,126 @@ +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.exe +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Log4net.config +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\appsettings.Development.json +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\appsettings.json +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.deps.json +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.runtimeconfig.json +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.pdb +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Autofac.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Autofac.Extensions.DependencyInjection.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Autofac.Extras.DynamicProxy.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\AutoMapper.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\AutoMapper.Extensions.Microsoft.DependencyInjection.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\BouncyCastle.Crypto.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Castle.Core.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Google.Protobuf.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\HslCommunication.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\K4os.Compression.LZ4.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\K4os.Compression.LZ4.Streams.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\K4os.Hash.xxHash.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\log4net.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\MicroKnights.Log4NetAdoNetAppender.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.AspNetCore.Connections.Abstractions.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.AspNetCore.JsonPatch.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.AspNetCore.SignalR.Common.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Data.SqlClient.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Data.Sqlite.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Extensions.Configuration.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Extensions.DependencyModel.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Extensions.Features.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Identity.Client.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.IdentityModel.JsonWebTokens.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.IdentityModel.Logging.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.IdentityModel.Protocols.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.IdentityModel.Tokens.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.OpenApi.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Win32.SystemEvents.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\MiniProfiler.AspNetCore.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\MiniProfiler.AspNetCore.Mvc.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\MiniProfiler.Shared.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\MySql.Data.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Ubiety.Dns.Core.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\ZstdNet.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Newtonsoft.Json.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Newtonsoft.Json.Bson.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Npgsql.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Oracle.ManagedDataAccess.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Quartz.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Scrutor.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Serilog.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Serilog.Sinks.File.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\SQLitePCLRaw.batteries_v2.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\SQLitePCLRaw.nativelibrary.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\SQLitePCLRaw.core.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\SQLitePCLRaw.provider.dynamic_cdecl.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\SqlSugar.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\DmProvider.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Kdbndp.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Filters.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Filters.Abstractions.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Newtonsoft.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Swagger.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerGen.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerUI.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Configuration.ConfigurationManager.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Diagnostics.PerformanceCounter.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.DirectoryServices.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.DirectoryServices.Protocols.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Drawing.Common.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.IdentityModel.Tokens.Jwt.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.IO.Pipelines.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Net.WebSockets.WebSocketProtocol.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Runtime.Caching.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Security.Cryptography.ProtectedData.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Security.Permissions.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Windows.Extensions.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\WebApiClient.Extensions.DependencyInjection.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\WebApiClient.JIT.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\Yitter.IdGenerator.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\alpine-x64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-arm\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-arm64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-armel\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-mips64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-musl-x64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-x64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-x86\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\osx-x64\native\libe_sqlite3.dylib +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-arm\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-arm64\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-x64\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-x86\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Common.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Extensions.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Model.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Repository.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Services.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Tasks.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Extensions.pdb +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Common.pdb +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Model.pdb +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Model.xml +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Repository.pdb +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Services.pdb +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Services.xml +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Tasks.pdb +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.xml diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/PublishOutputs.cf735ae3ab.txt b/yuhong_plc/zzz.Api/obj/Release/net6.0/PublishOutputs.cf735ae3ab.txt new file mode 100644 index 0000000..0933cb5 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/PublishOutputs.cf735ae3ab.txt @@ -0,0 +1,126 @@ +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.exe +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Log4net.config +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\appsettings.Development.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\appsettings.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.deps.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.runtimeconfig.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Autofac.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Autofac.Extensions.DependencyInjection.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Autofac.Extras.DynamicProxy.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\AutoMapper.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\AutoMapper.Extensions.Microsoft.DependencyInjection.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\BouncyCastle.Crypto.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Castle.Core.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Google.Protobuf.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\HslCommunication.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\K4os.Compression.LZ4.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\K4os.Compression.LZ4.Streams.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\K4os.Hash.xxHash.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\log4net.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\MicroKnights.Log4NetAdoNetAppender.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.AspNetCore.JsonPatch.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.AspNetCore.SignalR.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Data.SqlClient.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Data.Sqlite.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Extensions.Configuration.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Extensions.DependencyModel.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Extensions.Features.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Identity.Client.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.IdentityModel.JsonWebTokens.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.IdentityModel.Logging.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.IdentityModel.Protocols.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.IdentityModel.Tokens.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.OpenApi.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Microsoft.Win32.SystemEvents.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\MiniProfiler.AspNetCore.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\MiniProfiler.AspNetCore.Mvc.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\MiniProfiler.Shared.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\MySql.Data.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Ubiety.Dns.Core.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\ZstdNet.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Newtonsoft.Json.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Newtonsoft.Json.Bson.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Npgsql.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Oracle.ManagedDataAccess.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Quartz.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Scrutor.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Serilog.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Serilog.Sinks.File.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\SQLitePCLRaw.batteries_v2.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\SQLitePCLRaw.nativelibrary.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\SQLitePCLRaw.core.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\SQLitePCLRaw.provider.dynamic_cdecl.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\SqlSugar.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\DmProvider.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Kdbndp.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Filters.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Filters.Abstractions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Newtonsoft.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.Swagger.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Configuration.ConfigurationManager.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Diagnostics.PerformanceCounter.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.DirectoryServices.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.DirectoryServices.Protocols.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Drawing.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.IdentityModel.Tokens.Jwt.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.IO.Pipelines.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Net.WebSockets.WebSocketProtocol.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Runtime.Caching.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Security.Cryptography.ProtectedData.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Security.Permissions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\System.Windows.Extensions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\WebApiClient.Extensions.DependencyInjection.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\WebApiClient.JIT.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\Yitter.IdGenerator.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\alpine-x64\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-arm\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-arm64\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-armel\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-mips64\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-musl-x64\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-x64\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\linux-x86\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\osx-x64\native\libe_sqlite3.dylib +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-arm\native\e_sqlite3.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-arm64\native\e_sqlite3.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-x64\native\e_sqlite3.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win-x86\native\e_sqlite3.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Extensions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Repository.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Services.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Tasks.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Extensions.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Model.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Repository.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Services.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Services.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Tasks.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\PubTmp\Out\zzz.Api.xml diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/apphost.exe b/yuhong_plc/zzz.Api/obj/Release/net6.0/apphost.exe new file mode 100644 index 0000000..0e2703c Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/apphost.exe differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/ref/zzz.Api.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/ref/zzz.Api.dll new file mode 100644 index 0000000..88cabb0 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/ref/zzz.Api.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/refint/zzz.Api.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/refint/zzz.Api.dll new file mode 100644 index 0000000..88cabb0 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/refint/zzz.Api.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/staticwebassets.build.json b/yuhong_plc/zzz.Api/obj/Release/net6.0/staticwebassets.build.json new file mode 100644 index 0000000..4f29f52 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/staticwebassets.build.json @@ -0,0 +1,37 @@ +{ + "Version": 1, + "Hash": "JRRw62GIcFSeqj/dPtpFzjHTIIbufDwojy458QXr2rY=", + "Source": "zzz.Api", + "BasePath": "_content/zzz.Api", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [ + { + "Name": "zzz.Api\\wwwroot", + "Source": "zzz.Api", + "ContentRoot": "F:\\yuhong_plc\\zzz.Api\\wwwroot\\", + "BasePath": "_content/zzz.Api", + "Pattern": "**" + } + ], + "Assets": [ + { + "Identity": "F:\\yuhong_plc\\zzz.Api\\wwwroot\\index.html", + "SourceId": "zzz.Api", + "SourceType": "Discovered", + "ContentRoot": "F:\\yuhong_plc\\zzz.Api\\wwwroot\\", + "BasePath": "_content/zzz.Api", + "RelativePath": "index.html", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\index.html" + } + ] +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/staticwebassets.development.json b/yuhong_plc/zzz.Api/obj/Release/net6.0/staticwebassets.development.json new file mode 100644 index 0000000..a0a3e71 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["F:\\yuhong_plc\\zzz.Api\\wwwroot\\"],"Root":{"Children":{"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/staticwebassets.publish.json b/yuhong_plc/zzz.Api/obj/Release/net6.0/staticwebassets.publish.json new file mode 100644 index 0000000..01fae4e --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/staticwebassets.publish.json @@ -0,0 +1,37 @@ +{ + "Version": 1, + "Hash": "K5RCb0wcqpjcJk0qzoc50HlLt2hur1+OyPvWApFv8pY=", + "Source": "zzz.Api", + "BasePath": "_content/zzz.Api", + "Mode": "Default", + "ManifestType": "Publish", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [ + { + "Name": "zzz.Api\\wwwroot", + "Source": "zzz.Api", + "ContentRoot": "F:\\yuhong_plc\\zzz.Api\\wwwroot\\", + "BasePath": "_content/zzz.Api", + "Pattern": "**" + } + ], + "Assets": [ + { + "Identity": "F:\\yuhong_plc\\zzz.Api\\wwwroot\\index.html", + "SourceId": "zzz.Api", + "SourceType": "Discovered", + "ContentRoot": "F:\\yuhong_plc\\zzz.Api\\wwwroot\\", + "BasePath": "_content/zzz.Api", + "RelativePath": "index.html", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\index.html" + } + ] +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.AssemblyInfo.cs b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.AssemblyInfo.cs new file mode 100644 index 0000000..74c9201 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("zzz.Api")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("zzz.Api")] +[assembly: System.Reflection.AssemblyTitleAttribute("zzz.Api")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.AssemblyInfoInputs.cache new file mode 100644 index 0000000..9bca317 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +c1671e8da8af66da4901ed585e28ea2142fcdf85 diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..799f466 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = zzz.Api +build_property.RootNamespace = zzz.Api +build_property.ProjectDir = F:\yuhong_plc\zzz.Api\ +build_property.RazorLangVersion = 6.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = F:\yuhong_plc\zzz.Api +build_property._RazorSourceGeneratorDebug = diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.GlobalUsings.g.cs b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.MvcApplicationPartsAssemblyInfo.cache b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.MvcApplicationPartsAssemblyInfo.cs b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..156abdc --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,21 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("MiniProfiler.AspNetCore.Mvc")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.Filters")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.Newtonsoft")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("zzz.Extensions")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.assets.cache b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.assets.cache new file mode 100644 index 0000000..a16ecbe Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.assets.cache differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.csproj.AssemblyReference.cache new file mode 100644 index 0000000..14115f5 Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.csproj.BuildWithSkipAnalyzers b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.csproj.CopyComplete b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..667853d --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +0833d7ecd378e25fac07484fe1f2999737b960d6 diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..241121b --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.csproj.FileListAbsolute.txt @@ -0,0 +1,429 @@ +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Log4net.config +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\appsettings.Development.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\appsettings.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Api.staticwebassets.runtime.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Api.exe +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Api.deps.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Api.runtimeconfig.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Api.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\ref\zzz.Api.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Api.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Api.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Autofac.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Autofac.Extensions.DependencyInjection.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Autofac.Extras.DynamicProxy.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\AutoMapper.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\BouncyCastle.Crypto.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Castle.Core.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Google.Protobuf.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\HslCommunication.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\K4os.Compression.LZ4.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\K4os.Compression.LZ4.Streams.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\K4os.Hash.xxHash.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\log4net.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\MicroKnights.Log4NetAdoNetAppender.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.AspNetCore.JsonPatch.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.AspNetCore.SignalR.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Data.SqlClient.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Data.Sqlite.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Extensions.Configuration.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Extensions.DependencyModel.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Extensions.Features.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Identity.Client.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.IdentityModel.Logging.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.IdentityModel.Protocols.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.IdentityModel.Tokens.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.OpenApi.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Win32.SystemEvents.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\MiniProfiler.AspNetCore.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\MiniProfiler.AspNetCore.Mvc.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\MiniProfiler.Shared.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\MySql.Data.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Ubiety.Dns.Core.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\ZstdNet.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Newtonsoft.Json.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Newtonsoft.Json.Bson.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Npgsql.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Oracle.ManagedDataAccess.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Quartz.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Scrutor.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Serilog.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Serilog.Sinks.File.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\SQLitePCLRaw.batteries_v2.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\SQLitePCLRaw.nativelibrary.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\SQLitePCLRaw.core.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\SQLitePCLRaw.provider.dynamic_cdecl.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\SqlSugar.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\DmProvider.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Kdbndp.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.Filters.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.Filters.Abstractions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.Newtonsoft.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.Swagger.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Configuration.ConfigurationManager.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Diagnostics.PerformanceCounter.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.DirectoryServices.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.DirectoryServices.Protocols.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Drawing.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.IdentityModel.Tokens.Jwt.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.IO.Pipelines.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Net.WebSockets.WebSocketProtocol.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Runtime.Caching.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Security.Cryptography.ProtectedData.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Security.Permissions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Windows.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\WebApiClient.Extensions.DependencyInjection.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\WebApiClient.JIT.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Yitter.IdGenerator.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\alpine-x64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\linux-arm\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\linux-arm64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\linux-armel\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\linux-mips64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\linux-x64\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\linux-x86\native\libe_sqlite3.so +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\osx-x64\native\libe_sqlite3.dylib +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-arm\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-arm64\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-x64\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-x86\native\e_sqlite3.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Extensions.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Services.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Services.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Tasks.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\staticwebassets.build.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\staticwebassets.development.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\scopedcss\bundle\zzz.Api.styles.css +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\ref\zzz.Api.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.genruntimeconfig.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Log4net.config +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\appsettings.Development.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\appsettings.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Api.staticwebassets.runtime.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Api.exe +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Api.deps.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Api.runtimeconfig.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Api.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Api.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Api.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Autofac.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Autofac.Extensions.DependencyInjection.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Autofac.Extras.DynamicProxy.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\AutoMapper.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\BouncyCastle.Crypto.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Castle.Core.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Google.Protobuf.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\HslCommunication.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\K4os.Compression.LZ4.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\K4os.Compression.LZ4.Streams.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\K4os.Hash.xxHash.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\log4net.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\MicroKnights.Log4NetAdoNetAppender.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.AspNetCore.JsonPatch.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.AspNetCore.SignalR.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Data.SqlClient.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Data.Sqlite.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Extensions.Configuration.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Extensions.DependencyModel.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Extensions.Features.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Identity.Client.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.IdentityModel.Logging.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.IdentityModel.Protocols.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.IdentityModel.Tokens.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.OpenApi.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Microsoft.Win32.SystemEvents.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\MiniProfiler.AspNetCore.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\MiniProfiler.AspNetCore.Mvc.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\MiniProfiler.Shared.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\MySql.Data.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Ubiety.Dns.Core.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\ZstdNet.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Newtonsoft.Json.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Newtonsoft.Json.Bson.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Npgsql.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Oracle.ManagedDataAccess.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Quartz.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Scrutor.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Serilog.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Serilog.Sinks.File.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\SQLitePCLRaw.batteries_v2.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\SQLitePCLRaw.nativelibrary.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\SQLitePCLRaw.core.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\SQLitePCLRaw.provider.dynamic_cdecl.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\SqlSugar.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\DmProvider.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Kdbndp.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.Filters.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.Filters.Abstractions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.Newtonsoft.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.Swagger.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Configuration.ConfigurationManager.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Diagnostics.PerformanceCounter.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.DirectoryServices.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.DirectoryServices.Protocols.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Drawing.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.IdentityModel.Tokens.Jwt.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.IO.Pipelines.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Net.WebSockets.WebSocketProtocol.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Runtime.Caching.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Security.Cryptography.ProtectedData.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Security.Permissions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\System.Windows.Extensions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\WebApiClient.Extensions.DependencyInjection.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\WebApiClient.JIT.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\Yitter.IdGenerator.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\alpine-x64\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\linux-arm\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\linux-arm64\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\linux-armel\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\linux-mips64\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\linux-x64\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\linux-x86\native\libe_sqlite3.so +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\osx-x64\native\libe_sqlite3.dylib +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-arm\native\e_sqlite3.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-arm64\native\e_sqlite3.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-x64\native\e_sqlite3.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win-x86\native\e_sqlite3.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Extensions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Repository.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Services.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Tasks.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Extensions.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Model.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Repository.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Services.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Services.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\bin\Release\net6.0\zzz.Tasks.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.GeneratedMSBuildEditorConfig.editorconfig +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.AssemblyInfoInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.AssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.csproj.CoreCompileInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\staticwebassets.build.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\staticwebassets.development.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\scopedcss\bundle\zzz.Api.styles.css +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.csproj.CopyComplete +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\refint\zzz.Api.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\zzz.Api.genruntimeconfig.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Api\obj\Release\net6.0\ref\zzz.Api.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Log4net.config +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\appsettings.Development.json +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\appsettings.json +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Api.staticwebassets.runtime.json +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Api.exe +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Api.deps.json +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Api.runtimeconfig.json +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Api.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Api.pdb +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Api.xml +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Autofac.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Autofac.Extensions.DependencyInjection.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Autofac.Extras.DynamicProxy.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\AutoMapper.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\BouncyCastle.Crypto.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Castle.Core.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Google.Protobuf.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\HslCommunication.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\K4os.Compression.LZ4.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\K4os.Compression.LZ4.Streams.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\K4os.Hash.xxHash.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\log4net.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\MicroKnights.Log4NetAdoNetAppender.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.AspNetCore.Connections.Abstractions.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.AspNetCore.JsonPatch.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.AspNetCore.SignalR.Common.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.Data.SqlClient.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.Data.Sqlite.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.Extensions.Configuration.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.Extensions.DependencyModel.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.Extensions.Features.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.Identity.Client.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.IdentityModel.Logging.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.IdentityModel.Protocols.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.IdentityModel.Tokens.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.OpenApi.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Microsoft.Win32.SystemEvents.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\MiniProfiler.AspNetCore.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\MiniProfiler.AspNetCore.Mvc.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\MiniProfiler.Shared.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\MySql.Data.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Ubiety.Dns.Core.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\ZstdNet.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Newtonsoft.Json.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Newtonsoft.Json.Bson.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Npgsql.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Oracle.ManagedDataAccess.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Quartz.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Scrutor.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Serilog.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Serilog.Sinks.File.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\SQLitePCLRaw.batteries_v2.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\SQLitePCLRaw.nativelibrary.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\SQLitePCLRaw.core.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\SQLitePCLRaw.provider.dynamic_cdecl.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\SqlSugar.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\DmProvider.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Kdbndp.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.Filters.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.Filters.Abstractions.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.Newtonsoft.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.Swagger.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\System.Configuration.ConfigurationManager.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\System.Diagnostics.PerformanceCounter.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\System.DirectoryServices.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\System.DirectoryServices.Protocols.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\System.Drawing.Common.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\System.IdentityModel.Tokens.Jwt.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\System.IO.Pipelines.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\System.Net.WebSockets.WebSocketProtocol.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\System.Runtime.Caching.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\System.Security.Cryptography.ProtectedData.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\System.Security.Permissions.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\System.Windows.Extensions.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\WebApiClient.Extensions.DependencyInjection.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\WebApiClient.JIT.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\Yitter.IdGenerator.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\alpine-x64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\linux-arm\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\linux-arm64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\linux-armel\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\linux-mips64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\linux-x64\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\linux-x86\native\libe_sqlite3.so +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\osx-x64\native\libe_sqlite3.dylib +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win-arm\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win-arm64\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win-x64\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win-x86\native\e_sqlite3.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Common.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Extensions.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Model.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Repository.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Services.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Tasks.dll +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Extensions.pdb +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Common.pdb +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Model.pdb +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Model.xml +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Repository.pdb +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Services.pdb +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Services.xml +F:\yuhong_plc\zzz.Api\bin\Release\net6.0\zzz.Tasks.pdb +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\zzz.Api.csproj.AssemblyReference.cache +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\zzz.Api.GeneratedMSBuildEditorConfig.editorconfig +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\zzz.Api.AssemblyInfoInputs.cache +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\zzz.Api.AssemblyInfo.cs +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\zzz.Api.csproj.CoreCompileInputs.cache +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cs +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\zzz.Api.MvcApplicationPartsAssemblyInfo.cache +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\staticwebassets.build.json +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\staticwebassets.development.json +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\scopedcss\bundle\zzz.Api.styles.css +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\zzz.Api.csproj.CopyComplete +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\zzz.Api.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\refint\zzz.Api.dll +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\zzz.Api.pdb +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\zzz.Api.genruntimeconfig.cache +F:\yuhong_plc\zzz.Api\obj\Release\net6.0\ref\zzz.Api.dll diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.dll b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.dll new file mode 100644 index 0000000..6f0509f Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.dll differ diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.genruntimeconfig.cache b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.genruntimeconfig.cache new file mode 100644 index 0000000..7cb5b22 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.genruntimeconfig.cache @@ -0,0 +1 @@ +7ac3da599560514d29ebc2afac0ec5d80f22ee85 diff --git a/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.pdb b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.pdb new file mode 100644 index 0000000..0b19c3b Binary files /dev/null and b/yuhong_plc/zzz.Api/obj/Release/net6.0/zzz.Api.pdb differ diff --git a/yuhong_plc/zzz.Api/obj/cjyx.Api.csproj.nuget.dgspec.json b/yuhong_plc/zzz.Api/obj/cjyx.Api.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e279110 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/cjyx.Api.csproj.nuget.dgspec.json @@ -0,0 +1,573 @@ +{ + "format": 1, + "restore": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Api\\cjyx.Api.csproj": {} + }, + "projects": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Api\\cjyx.Api.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Api\\cjyx.Api.csproj", + "projectName": "cjyx.Api", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Api\\cjyx.Api.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Api\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Extensions\\cjyx.Extensions.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Extensions\\cjyx.Extensions.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[7.2.0, )" + }, + "MicroKnights.Log4NetAdoNetAppender": { + "target": "Package", + "version": "[2.2.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\cjyx.Common.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\cjyx.Common.csproj", + "projectName": "cjyx.Common", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\cjyx.Common.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "Microsoft.AspNetCore.SignalR.Core": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.Extensions.Configuration": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.Extensions.Configuration.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Binder": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Json": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Hosting.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.11.0, )" + }, + "Serilog.Sinks.File": { + "target": "Package", + "version": "[5.0.0, )" + }, + "WebApiClient.Extensions.DependencyInjection": { + "target": "Package", + "version": "[2.0.3, )" + }, + "Yitter.IdGenerator": { + "target": "Package", + "version": "[1.0.12, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Extensions\\cjyx.Extensions.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Extensions\\cjyx.Extensions.csproj", + "projectName": "cjyx.Extensions", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Extensions\\cjyx.Extensions.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Extensions\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj" + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\cjyx.Tasks.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\cjyx.Tasks.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[6.3.0, )" + }, + "Autofac.Extras.DynamicProxy": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.AspNetCore.Http": { + "target": "Package", + "version": "[2.2.2, )" + }, + "Microsoft.AspNetCore.Http.Abstractions": { + "target": "Package", + "version": "[2.2.0, )" + }, + "Microsoft.Extensions.Logging": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Logging.EventLog": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore": { + "target": "Package", + "version": "[6.1.0, )" + }, + "MiniProfiler.Shared": { + "target": "Package", + "version": "[4.2.22, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.2.3, )" + }, + "Swashbuckle.AspNetCore.Filters": { + "target": "Package", + "version": "[7.0.2, )" + }, + "Swashbuckle.AspNetCore.Newtonsoft": { + "target": "Package", + "version": "[6.3.1, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj", + "projectName": "cjyx.Model", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.0.0, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.0.8, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj", + "projectName": "cjyx.Repository", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\cjyx.Common.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\cjyx.Common.csproj" + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj", + "projectName": "cjyx.Services", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\cjyx.Tasks.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\cjyx.Tasks.csproj", + "projectName": "cjyx.Tasks", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\cjyx.Tasks.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Quartz": { + "target": "Package", + "version": "[3.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/cjyx.Api.csproj.nuget.g.props b/yuhong_plc/zzz.Api/obj/cjyx.Api.csproj.nuget.g.props new file mode 100644 index 0000000..56ca235 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/cjyx.Api.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\BLACK\.nuget\packages\;D:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.0.0 + + + + + + + C:\Users\BLACK\.nuget\packages\webapiclient.jit\1.0.3 + C:\Users\BLACK\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/cjyx.Api.csproj.nuget.g.targets b/yuhong_plc/zzz.Api/obj/cjyx.Api.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/cjyx.Api.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/project.assets.json b/yuhong_plc/zzz.Api/obj/project.assets.json new file mode 100644 index 0000000..4ba47d1 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/project.assets.json @@ -0,0 +1,10134 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "Autofac/6.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "compile": { + "lib/net5.0/Autofac.dll": {} + }, + "runtime": { + "lib/net5.0/Autofac.dll": {} + } + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "type": "package", + "dependencies": { + "Autofac": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" + }, + "compile": { + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {} + } + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "type": "package", + "dependencies": { + "Autofac": "6.2.0", + "Castle.Core": "4.4.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + } + }, + "AutoMapper/11.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "compile": { + "lib/netstandard2.1/AutoMapper.dll": {} + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": {} + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "dependencies": { + "AutoMapper": "11.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} + } + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + } + }, + "Castle.Core/4.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Castle.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": {} + } + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "compile": { + "lib/net5.0/Google.Protobuf.dll": {} + }, + "runtime": { + "lib/net5.0/Google.Protobuf.dll": {} + } + }, + "HslCommunication/7.0.1": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.2" + }, + "compile": { + "lib/netstandard2.0/HslCommunication.dll": {} + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": {} + } + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": {} + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": {} + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "compile": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {} + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {} + } + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": {} + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": {} + } + }, + "log4net/2.0.14": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/log4net.dll": {} + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": {} + } + }, + "MicroKnights.Log4NetAdoNetAppender/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient": "1.1.3", + "Microsoft.Extensions.Configuration.Json": "3.1.6", + "log4net": "2.0.8" + }, + "compile": { + "lib/netstandard2.1/MicroKnights.Log4NetAdoNetAppender.dll": {} + }, + "runtime": { + "lib/netstandard2.1/MicroKnights.Log4NetAdoNetAppender.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Features": "6.0.5", + "System.IO.Pipelines": "6.0.3" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "6.0.0-rc.1.21452.15", + "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Connections": "1.1.0", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll": {} + } + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "System.Net.WebSockets.WebSocketProtocol": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {} + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "build": { + "build/_._": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/_._": {} + } + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "dependencies": { + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.Features/6.0.5": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Features.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Features.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {} + } + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "log4net": "2.0.13" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MiniProfiler.AspNetCore/4.2.22": { + "type": "package", + "dependencies": { + "MiniProfiler.Shared": "4.2.22", + "System.Text.Json": "4.6.0" + }, + "compile": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "type": "package", + "dependencies": { + "MiniProfiler.AspNetCore": "4.2.22" + }, + "compile": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "MiniProfiler.Shared/4.2.22": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0", + "Newtonsoft.Json": "10.0.3", + "System.ComponentModel.Primitives": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.4.1", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": {} + }, + "runtime": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": {} + } + }, + "MySql.Data/8.0.29": { + "type": "package", + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.4.1", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.4.0" + }, + "compile": { + "lib/net6.0/MySql.Data.dll": {}, + "lib/net6.0/Ubiety.Dns.Core.dll": {}, + "lib/net6.0/ZstdNet.dll": {} + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": {}, + "lib/net6.0/Ubiety.Dns.Core.dll": {}, + "lib/net6.0/ZstdNet.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.1" + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {} + } + }, + "Npgsql/5.0.7": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "4.6.0" + }, + "compile": { + "lib/net5.0/Npgsql.dll": {} + }, + "runtime": { + "lib/net5.0/Npgsql.dll": {} + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "4.7.1" + }, + "compile": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + } + }, + "Quartz/3.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.1.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "compile": { + "lib/netstandard2.0/Quartz.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "Scrutor/3.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "compile": { + "lib/netcoreapp3.1/Scrutor.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": {} + } + }, + "Serilog/2.11.0": { + "type": "package", + "compile": { + "lib/net5.0/Serilog.dll": {} + }, + "runtime": { + "lib/net5.0/Serilog.dll": {} + } + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.File.dll": {} + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "compile": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} + } + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "alpine-x64" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + } + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "10.0.3", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/SqlSugar.dll": {} + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": {} + } + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/DmProvider.dll": {} + }, + "runtime": { + "lib/netstandard2.0/DmProvider.dll": {} + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Kdbndp.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": {} + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + }, + "build": { + "build/_._": {} + } + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.1.0", + "Microsoft.OpenApi": "1.2.3", + "Scrutor": "3.3.0", + "Swashbuckle.AspNetCore.Filters.Abstractions": "7.0.2", + "Swashbuckle.AspNetCore.SwaggerGen": "5.0.0" + }, + "compile": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": {} + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": {} + } + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "type": "package", + "compile": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {} + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {} + } + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.0-rc.1.21452.15", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll": {} + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll": {} + } + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {} + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.3.1" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Data.Common/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.DirectoryServices.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Pipelines.dll": {} + }, + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.4.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/System.Threading.Channels.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Threading.Channels.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "compile": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": {} + } + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "System.Runtime.Caching": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": {} + } + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "compile": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": {} + } + }, + "zzz.Common/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "compile": { + "bin/placeholder/zzz.Common.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Common.dll": {} + } + }, + "zzz.Extensions/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "Autofac": "6.3.0", + "Autofac.Extras.DynamicProxy": "6.0.1", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.SignalR": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson": "6.0.5", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.Log4Net.AspNetCore": "6.1.0", + "MiniProfiler.AspNetCore.Mvc": "4.2.22", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Filters": "7.0.2", + "Swashbuckle.AspNetCore.Newtonsoft": "6.3.1", + "log4net": "2.0.14", + "zzz.Services": "1.0.0", + "zzz.Tasks": "1.0.0" + }, + "compile": { + "bin/placeholder/zzz.Extensions.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Extensions.dll": {} + } + }, + "zzz.Model/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "compile": { + "bin/placeholder/zzz.Model.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "compile": { + "bin/placeholder/zzz.Repository.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Repository.dll": {} + } + }, + "zzz.Services/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "HslCommunication": "7.0.1", + "zzz.Repository": "1.0.0" + }, + "compile": { + "bin/placeholder/zzz.Services.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Services.dll": {} + } + }, + "zzz.Tasks/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "Quartz": "3.4.0", + "zzz.Services": "1.0.0" + }, + "compile": { + "bin/placeholder/zzz.Tasks.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Autofac/6.3.0": { + "sha512": "gO4bli0N8tDnBHzbYktcnbXlmN6T+IT5W+FUGgCUaM6pwwHXIxOPoUGvfGum7sZpJJgfQNgjFFv80ZPuARgRdA==", + "type": "package", + "path": "autofac/6.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.6.3.0.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net5.0/Autofac.dll", + "lib/net5.0/Autofac.pdb", + "lib/net5.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.pdb", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.pdb", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/7.2.0": { + "sha512": "S2Jor8pTV+8QSs96ENq/FhGdnrWsntGs93z0OXYlIivUWGPNXQHNCjFPfSBeBlHClvJFEXMvlkY32bAKy2YkPg==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/7.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.extensions.dependencyinjection.7.2.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/net5.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net5.0/Autofac.Extensions.DependencyInjection.pdb", + "lib/net5.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net6.0/Autofac.Extensions.DependencyInjection.pdb", + "lib/net6.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "sha512": "+ulCOXUjbJ5dljBPZf3gRxQNPRGqg/h1cNTZ4SpXK3qiamTfRsW3gXs2w/IJ+CIDmHrFGYXLqzNd5etvzwB8kA==", + "type": "package", + "path": "autofac.extras.dynamicproxy/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.extras.dynamicproxy.6.0.1.nupkg.sha512", + "autofac.extras.dynamicproxy.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml" + ] + }, + "AutoMapper/11.0.1": { + "sha512": "WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "type": "package", + "path": "automapper/11.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.11.0.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/netstandard2.1/AutoMapper.dll", + "lib/netstandard2.1/AutoMapper.xml" + ] + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "sha512": "0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "type": "package", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", + "automapper.extensions.microsoft.dependencyinjection.nuspec", + "icon.png", + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll" + ] + }, + "BouncyCastle.NetCore/1.8.5": { + "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "type": "package", + "path": "bouncycastle.netcore/1.8.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bouncycastle.netcore.1.8.5.nupkg.sha512", + "bouncycastle.netcore.nuspec", + "lib/Mono/BouncyCastle.Crypto.dll", + "lib/Mono/BouncyCastle.Crypto.xml", + "lib/MonoAndroid/BouncyCastle.Crypto.dll", + "lib/MonoAndroid/BouncyCastle.Crypto.xml", + "lib/MonoMac/BouncyCastle.Crypto.dll", + "lib/MonoMac/BouncyCastle.Crypto.xml", + "lib/MonoTouch/BouncyCastle.Crypto.dll", + "lib/MonoTouch/BouncyCastle.Crypto.xml", + "lib/net20/BouncyCastle.Crypto.dll", + "lib/net20/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "lib/xamarinios/BouncyCastle.Crypto.dll", + "lib/xamarinios/BouncyCastle.Crypto.xml" + ] + }, + "Castle.Core/4.4.0": { + "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "type": "package", + "path": "castle.core/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ASL - Apache Software Foundation License.txt", + "CHANGELOG.md", + "LICENSE", + "castle.core.4.4.0.nupkg.sha512", + "castle.core.nuspec", + "lib/net35/Castle.Core.dll", + "lib/net35/Castle.Core.xml", + "lib/net40/Castle.Core.dll", + "lib/net40/Castle.Core.xml", + "lib/net45/Castle.Core.dll", + "lib/net45/Castle.Core.xml", + "lib/netstandard1.3/Castle.Core.dll", + "lib/netstandard1.3/Castle.Core.xml", + "lib/netstandard1.5/Castle.Core.dll", + "lib/netstandard1.5/Castle.Core.xml", + "readme.txt" + ] + }, + "Google.Protobuf/3.19.4": { + "sha512": "fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "type": "package", + "path": "google.protobuf/3.19.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "google.protobuf.3.19.4.nupkg.sha512", + "google.protobuf.nuspec", + "lib/net45/Google.Protobuf.dll", + "lib/net45/Google.Protobuf.pdb", + "lib/net45/Google.Protobuf.xml", + "lib/net5.0/Google.Protobuf.dll", + "lib/net5.0/Google.Protobuf.pdb", + "lib/net5.0/Google.Protobuf.xml", + "lib/netstandard1.1/Google.Protobuf.dll", + "lib/netstandard1.1/Google.Protobuf.pdb", + "lib/netstandard1.1/Google.Protobuf.xml", + "lib/netstandard2.0/Google.Protobuf.dll", + "lib/netstandard2.0/Google.Protobuf.pdb", + "lib/netstandard2.0/Google.Protobuf.xml" + ] + }, + "HslCommunication/7.0.1": { + "sha512": "0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "type": "package", + "path": "hslcommunication/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "hslcommunication.7.0.1.nupkg.sha512", + "hslcommunication.nuspec", + "lib/net35/HslCommunication.dll", + "lib/net35/HslCommunication.xml", + "lib/net451/HslCommunication.dll", + "lib/net451/HslCommunication.xml", + "lib/netstandard2.0/HslCommunication.dll", + "lib/netstandard2.0/HslCommunication.xml" + ] + }, + "K4os.Compression.LZ4/1.2.6": { + "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "type": "package", + "path": "k4os.compression.lz4/1.2.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.1.2.6.nupkg.sha512", + "k4os.compression.lz4.nuspec", + "lib/net45/K4os.Compression.LZ4.dll", + "lib/net45/K4os.Compression.LZ4.xml", + "lib/net46/K4os.Compression.LZ4.dll", + "lib/net46/K4os.Compression.LZ4.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.xml" + ] + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "type": "package", + "path": "k4os.compression.lz4.streams/1.2.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.streams.1.2.6.nupkg.sha512", + "k4os.compression.lz4.streams.nuspec", + "lib/net45/K4os.Compression.LZ4.Streams.dll", + "lib/net45/K4os.Compression.LZ4.Streams.xml", + "lib/net46/K4os.Compression.LZ4.Streams.dll", + "lib/net46/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml" + ] + }, + "K4os.Hash.xxHash/1.0.6": { + "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "type": "package", + "path": "k4os.hash.xxhash/1.0.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.hash.xxhash.1.0.6.nupkg.sha512", + "k4os.hash.xxhash.nuspec", + "lib/net45/K4os.Hash.xxHash.dll", + "lib/net45/K4os.Hash.xxHash.xml", + "lib/net46/K4os.Hash.xxHash.dll", + "lib/net46/K4os.Hash.xxHash.xml", + "lib/netstandard1.6/K4os.Hash.xxHash.dll", + "lib/netstandard1.6/K4os.Hash.xxHash.xml", + "lib/netstandard2.0/K4os.Hash.xxHash.dll", + "lib/netstandard2.0/K4os.Hash.xxHash.xml" + ] + }, + "log4net/2.0.14": { + "sha512": "KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "type": "package", + "path": "log4net/2.0.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/log4net.dll", + "lib/net20/log4net.xml", + "lib/net35-client/log4net.dll", + "lib/net35-client/log4net.xml", + "lib/net35/log4net.dll", + "lib/net35/log4net.xml", + "lib/net40-client/log4net.dll", + "lib/net40-client/log4net.xml", + "lib/net40/log4net.dll", + "lib/net40/log4net.xml", + "lib/net45/log4net.dll", + "lib/net45/log4net.xml", + "lib/netstandard1.3/log4net.dll", + "lib/netstandard1.3/log4net.xml", + "lib/netstandard2.0/log4net.dll", + "lib/netstandard2.0/log4net.xml", + "log4net.2.0.14.nupkg.sha512", + "log4net.nuspec", + "package-icon.png" + ] + }, + "MicroKnights.Log4NetAdoNetAppender/2.2.0": { + "sha512": "FryL/5pLWynP8znM5LTXd4M+DmD+Ftls5D8IlyMwCbH7MFWviLyNvGneJZFjmdXschal5lTUOB3Cs1FkEPs7tQ==", + "type": "package", + "path": "microknights.log4netadonetappender/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.3/MicroKnights.Log4NetAdoNetAppender.dll", + "lib/netstandard2.0/MicroKnights.Log4NetAdoNetAppender.dll", + "lib/netstandard2.1/MicroKnights.Log4NetAdoNetAppender.dll", + "microknights.log4netadonetappender.2.2.0.nupkg.sha512", + "microknights.log4netadonetappender.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml", + "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "type": "package", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml", + "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.policy.nuspec" + ] + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "sha512": "OBbGvih5/CLHTbJVDiJ203TmKXCx8z539O2YGnfHmExbNtMwyQ9rgpqoxyYEVvQrVsqxRhXfh57DOCQYhxcOBQ==", + "type": "package", + "path": "microsoft.aspnetcore.connections.abstractions/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/net461/Microsoft.AspNetCore.Connections.Abstractions.xml", + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml", + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.xml", + "microsoft.aspnetcore.connections.abstractions.6.0.5.nupkg.sha512", + "microsoft.aspnetcore.connections.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.server.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "sha512": "BAibpoItxI5puk7YJbIGj95arZueM8B8M5xT1fXBn3hb3L2G3ucrZcYXv1gXdaroLbntUs8qeV8iuBrpjQsrKw==", + "type": "package", + "path": "microsoft.aspnetcore.http/2.2.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml", + "microsoft.aspnetcore.http.2.2.2.nupkg.sha512", + "microsoft.aspnetcore.http.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "type": "package", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", + "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "sha512": "ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==", + "type": "package", + "path": "microsoft.aspnetcore.http.connections/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.xml", + "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.http.connections.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "sha512": "mYk5QUUjyXQmlyDHWDjkLYDArt97plwe6KsDsNVhDEQ+HgZMKGjISyM6YSA7BERQNR25kXBTbIYfSy1vePGQgg==", + "type": "package", + "path": "microsoft.aspnetcore.http.connections.common/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.xml", + "microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.http.connections.common.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "type": "package", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", + "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "sha512": "+27ce/d0w7jyEmCCMrzwFRg6PHZxQ37Fmnf+es1qQudbip2rryxPdM8TRoXT6wNtdlzqHnIyXTtLjSs0uIDhxA==", + "type": "package", + "path": "microsoft.aspnetcore.jsonpatch/6.0.0-rc.1.21452.15", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net461/Microsoft.AspNetCore.JsonPatch.xml", + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml", + "microsoft.aspnetcore.jsonpatch.6.0.0-rc.1.21452.15.nupkg.sha512", + "microsoft.aspnetcore.jsonpatch.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "sha512": "/dspuIknGgOdBygH3bmjsIH5neuuJ7DHILXrKVPAoCykPARAIUBckZlIW6RrYqmbGTZYT/YFCzr/xDR5f0YiAA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.0-rc.1.21452.15", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll", + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml", + "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.0-rc.1.21452.15.nupkg.sha512", + "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml", + "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml", + "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "sha512": "V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==", + "type": "package", + "path": "microsoft.aspnetcore.signalr/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.xml", + "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "sha512": "N+MF6rs64kDDJ4zroD/NqRgXVSEkj/ppTX36AB2S43qm1y64YqWMCFCzLshkmi7SwWwQQPIByTNZDJfz4x7GjQ==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.common/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/net461/Microsoft.AspNetCore.SignalR.Common.xml", + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.xml", + "microsoft.aspnetcore.signalr.common.6.0.5.nupkg.sha512", + "microsoft.aspnetcore.signalr.common.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "sha512": "mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.xml", + "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.core.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "sha512": "BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml", + "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.protocols.json.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "sha512": "/7VUbkomGE7ph6R1JTtMji5QPGqesyCSeELFmfylaqFM+SdWf9EmbU3SCQPcIWhfv+RgbUWmTNfWWPzmVDTggw==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll", + "lib/net461/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.xml", + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll", + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.xml", + "microsoft.aspnetcore.signalr.protocols.newtonsoftjson.6.0.5.nupkg.sha512", + "microsoft.aspnetcore.signalr.protocols.newtonsoftjson.nuspec" + ] + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "sha512": "ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==", + "type": "package", + "path": "microsoft.aspnetcore.websockets/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.xml", + "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.websockets.nuspec" + ] + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "type": "package", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml", + "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.webutilities.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/2.1.1": { + "sha512": "qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "type": "package", + "path": "microsoft.data.sqlclient/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.Data.SqlClient.dll", + "lib/net46/Microsoft.Data.SqlClient.pdb", + "lib/net46/Microsoft.Data.SqlClient.xml", + "lib/net46/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "microsoft.data.sqlclient.2.1.1.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net46/Microsoft.Data.SqlClient.dll", + "ref/net46/Microsoft.Data.SqlClient.pdb", + "ref/net46/Microsoft.Data.SqlClient.xml", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.Data.Sqlite/5.0.5": { + "sha512": "zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "type": "package", + "path": "microsoft.data.sqlite/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/_._", + "microsoft.data.sqlite.5.0.5.nupkg.sha512", + "microsoft.data.sqlite.nuspec" + ] + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "sha512": "tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "type": "package", + "path": "microsoft.data.sqlite.core/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.5.0.5.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Extensions.ApiDescription.Server.props", + "build/Microsoft.Extensions.ApiDescription.Server.targets", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", + "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "microsoft.extensions.apidescription.server.nuspec", + "tools/Newtonsoft.Json.dll", + "tools/dotnet-getdocument.deps.json", + "tools/dotnet-getdocument.dll", + "tools/dotnet-getdocument.runtimeconfig.json", + "tools/net461-x86/GetDocument.Insider.exe", + "tools/net461-x86/GetDocument.Insider.exe.config", + "tools/net461/GetDocument.Insider.exe", + "tools/net461/GetDocument.Insider.exe.config", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json" + ] + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "sha512": "BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "type": "package", + "path": "microsoft.extensions.configuration/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.dll", + "lib/net461/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.6.0.1.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net461/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "type": "package", + "path": "microsoft.extensions.configuration.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Json.dll", + "lib/net461/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec" + ] + }, + "Microsoft.Extensions.Features/6.0.5": { + "sha512": "y7KLF1jRFQjSttfoilwHU86cU9ZgxN4ABfQR8tQ9qEC5AzTGYIX+K5RDwGFVK320eTiBwWuutV24ecmxBxo7Eg==", + "type": "package", + "path": "microsoft.extensions.features/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Features.dll", + "lib/net461/Microsoft.Extensions.Features.xml", + "lib/net6.0/Microsoft.Extensions.Features.dll", + "lib/net6.0/Microsoft.Extensions.Features.xml", + "lib/netstandard2.0/Microsoft.Extensions.Features.dll", + "lib/netstandard2.0/Microsoft.Extensions.Features.xml", + "microsoft.extensions.features.6.0.5.nupkg.sha512", + "microsoft.extensions.features.nuspec" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "sha512": "GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/6.0.0": { + "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "type": "package", + "path": "microsoft.extensions.logging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "build/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "sha512": "rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "type": "package", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net461/Microsoft.Extensions.Logging.EventLog.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml", + "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "sha512": "qHb3GudscgrgEVByh86kAq3FMmjOdPIVoqvff3eokEP+QkZHzr42l4PlgxBsqhhlIX02SazC7ZdbfiFGDPRv9A==", + "type": "package", + "path": "microsoft.extensions.logging.log4net.aspnetcore/6.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "lib/net5.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll", + "microsoft.extensions.logging.log4net.aspnetcore.6.1.0.nupkg.sha512", + "microsoft.extensions.logging.log4net.aspnetcore.nuspec" + ] + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "type": "package", + "path": "microsoft.extensions.objectpool/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "type": "package", + "path": "microsoft.extensions.options/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.21.1": { + "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "type": "package", + "path": "microsoft.identity.client/4.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid10.0/Microsoft.Identity.Client.dll", + "lib/monoandroid10.0/Microsoft.Identity.Client.xml", + "lib/monoandroid90/Microsoft.Identity.Client.dll", + "lib/monoandroid90/Microsoft.Identity.Client.xml", + "lib/net45/Microsoft.Identity.Client.dll", + "lib/net45/Microsoft.Identity.Client.xml", + "lib/net461/Microsoft.Identity.Client.dll", + "lib/net461/Microsoft.Identity.Client.xml", + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll", + "lib/netcoreapp2.1/Microsoft.Identity.Client.xml", + "lib/netstandard1.3/Microsoft.Identity.Client.dll", + "lib/netstandard1.3/Microsoft.Identity.Client.xml", + "lib/uap10.0/Microsoft.Identity.Client.dll", + "lib/uap10.0/Microsoft.Identity.Client.pri", + "lib/uap10.0/Microsoft.Identity.Client.xml", + "lib/xamarinios10/Microsoft.Identity.Client.dll", + "lib/xamarinios10/Microsoft.Identity.Client.xml", + "lib/xamarinmac20/Microsoft.Identity.Client.dll", + "lib/xamarinmac20/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.21.1.nupkg.sha512", + "microsoft.identity.client.nuspec", + "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll", + "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml", + "ref/net45/Microsoft.Identity.Client.dll", + "ref/net45/Microsoft.Identity.Client.xml", + "ref/net461/Microsoft.Identity.Client.dll", + "ref/net461/Microsoft.Identity.Client.xml", + "ref/netcoreapp2.1/Microsoft.Identity.Client.dll", + "ref/netcoreapp2.1/Microsoft.Identity.Client.xml", + "ref/netstandard1.3/Microsoft.Identity.Client.dll", + "ref/netstandard1.3/Microsoft.Identity.Client.xml", + "ref/uap10.0/Microsoft.Identity.Client.dll", + "ref/uap10.0/Microsoft.Identity.Client.xml", + "ref/xamarinmac20/Microsoft.Identity.Client.dll", + "ref/xamarinmac20/Microsoft.Identity.Client.xml" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "sha512": "+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "sha512": "Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "sha512": "OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "sha512": "X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "sha512": "gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "type": "package", + "path": "microsoft.net.http.headers/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.2.0.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.OpenApi/1.2.3": { + "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "type": "package", + "path": "microsoft.openapi/1.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.OpenApi.dll", + "lib/net46/Microsoft.OpenApi.pdb", + "lib/net46/Microsoft.OpenApi.xml", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.2.3.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "2FpFllO0wFJmfIXY9NXr33jWgr88b7E4gAuPHSNYzNr5o2XIouynxAoLA+SShuDI2ySSsvnBHURiXRX7tz59YA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "type": "package", + "path": "microsoft.win32.systemevents/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/net472/Microsoft.Win32.SystemEvents.dll", + "ref/net472/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MiniProfiler.AspNetCore/4.2.22": { + "sha512": "bBirB5d4Q0Bgx05Zg4yzXSmOHZQV4ZJhmxU3DGya4FZxNBwjaVHchqEKY0MJW5XLZo8axMAQm4yywgCvUlTymA==", + "type": "package", + "path": "miniprofiler.aspnetcore/4.2.22", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/net461/MiniProfiler.AspNetCore.dll", + "lib/net461/MiniProfiler.AspNetCore.xml", + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll", + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.xml", + "lib/netstandard2.0/MiniProfiler.AspNetCore.dll", + "lib/netstandard2.0/MiniProfiler.AspNetCore.xml", + "miniprofiler.aspnetcore.4.2.22.nupkg.sha512", + "miniprofiler.aspnetcore.nuspec" + ] + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "sha512": "nzCEaZnh77U9jw+c/qu4CtwYUpHEf+FH1ZMbYKMzIXr8CNNPlypSR6AJEAwjo3bq9TIJIpBMZIaK3inRLUCg4g==", + "type": "package", + "path": "miniprofiler.aspnetcore.mvc/4.2.22", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/net461/MiniProfiler.AspNetCore.Mvc.dll", + "lib/net461/MiniProfiler.AspNetCore.Mvc.xml", + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll", + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.xml", + "lib/netstandard2.0/MiniProfiler.AspNetCore.Mvc.dll", + "lib/netstandard2.0/MiniProfiler.AspNetCore.Mvc.xml", + "miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512", + "miniprofiler.aspnetcore.mvc.nuspec" + ] + }, + "MiniProfiler.Shared/4.2.22": { + "sha512": "OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==", + "type": "package", + "path": "miniprofiler.shared/4.2.22", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/net461/MiniProfiler.Shared.dll", + "lib/net461/MiniProfiler.Shared.xml", + "lib/netstandard2.0/MiniProfiler.Shared.dll", + "lib/netstandard2.0/MiniProfiler.Shared.xml", + "miniprofiler.shared.4.2.22.nupkg.sha512", + "miniprofiler.shared.nuspec" + ] + }, + "MySql.Data/8.0.29": { + "sha512": "3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "type": "package", + "path": "mysql.data/8.0.29", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/MySql.Data.dll", + "lib/net452/MySql.Data.xml", + "lib/net452/Ubiety.Dns.Core.dll", + "lib/net452/ZstdNet.dll", + "lib/net48/MySql.Data.dll", + "lib/net48/MySql.Data.xml", + "lib/net48/Ubiety.Dns.Core.dll", + "lib/net48/ZstdNet.dll", + "lib/net5.0/MySql.Data.dll", + "lib/net5.0/MySql.Data.xml", + "lib/net5.0/Ubiety.Dns.Core.dll", + "lib/net5.0/ZstdNet.dll", + "lib/net6.0/MySql.Data.dll", + "lib/net6.0/MySql.Data.xml", + "lib/net6.0/Ubiety.Dns.Core.dll", + "lib/net6.0/ZstdNet.dll", + "lib/netstandard2.0/MySql.Data.dll", + "lib/netstandard2.0/MySql.Data.xml", + "lib/netstandard2.0/Ubiety.Dns.Core.dll", + "lib/netstandard2.0/ZstdNet.dll", + "lib/netstandard2.1/MySql.Data.dll", + "lib/netstandard2.1/MySql.Data.xml", + "lib/netstandard2.1/Ubiety.Dns.Core.dll", + "lib/netstandard2.1/ZstdNet.dll", + "mysql.data.8.0.29.nupkg.sha512", + "mysql.data.nuspec" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "/6XtTu0ZHzge7tzZZN8UXpwG1K0Vgxi7C7R0QiTgxMtN4gkzNl4xNVUI4X3tymMwKWUdwqXvzkrJqt3MdMFXig==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Newtonsoft.Json.Bson/1.0.2": { + "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "type": "package", + "path": "newtonsoft.json.bson/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net45/Newtonsoft.Json.Bson.dll", + "lib/net45/Newtonsoft.Json.Bson.pdb", + "lib/net45/Newtonsoft.Json.Bson.xml", + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", + "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb", + "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll", + "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb", + "lib/netstandard2.0/Newtonsoft.Json.Bson.xml", + "newtonsoft.json.bson.1.0.2.nupkg.sha512", + "newtonsoft.json.bson.nuspec" + ] + }, + "Npgsql/5.0.7": { + "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "type": "package", + "path": "npgsql/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Npgsql.dll", + "lib/net5.0/Npgsql.xml", + "lib/netcoreapp3.1/Npgsql.dll", + "lib/netcoreapp3.1/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.5.0.7.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "sha512": "SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "type": "package", + "path": "oracle.manageddataaccess.core/3.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PerfCounters/register_odpc_perfmon_counters.ps1", + "PerfCounters/unregister_odpc_perfmon_counters.ps1", + "info.txt", + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll", + "oracle.manageddataaccess.core.3.21.1.nupkg.sha512", + "oracle.manageddataaccess.core.nuspec", + "readme.txt" + ] + }, + "Quartz/3.4.0": { + "sha512": "N8350OAlQhd8zKg0ARFikGjh3bfAW/CF/KVxu2fTIlAALB/oC1eg54n/QAPYR5ryHuYyDr5G8/Qa4k+D/7OFRQ==", + "type": "package", + "path": "quartz/3.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Quartz.dll", + "lib/net462/Quartz.xml", + "lib/net472/Quartz.dll", + "lib/net472/Quartz.xml", + "lib/netstandard2.0/Quartz.dll", + "lib/netstandard2.0/Quartz.xml", + "quartz-logo-small.png", + "quartz.3.4.0.nupkg.sha512", + "quartz.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "kuvqViO3OnqjWcNSQfanREtHgqJx6UK5UHPeIl7M666izpBErP4TDZctWnYvuz7l/hpWPkS3DsUAUPAyVS/zBA==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "QnpBRH8jHD/TtGA5fjrdK/BRf+Oslt/M/X+r487ByPS2q+EZUNwEiaoPUuZcqFcLwqAY2Fw7SciCHTPiK2GTqg==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "i/u0Svwgj6JM9SpaoJAqTiMU3B0UZEUC35JadEBgkihBi+RzyRe2VlGwhZ6B63r78CmzZ/VAYNXvLAnoIaRG/A==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "qOKLiiK96F+8pPB+ALL20VFsTDBolLfysxlBZDGlFXDEBEZfdfm4OYuInLtxYHCUSxpJpPivIYm9jasMzfgzEQ==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "KSKGjRiQWUHf2zpiRD3+q8lzjL89HhiR74cevVqShwVHtDEHjAhDU75w6mPdeFg9QSyqI32Ud3Qskr5WHNCw+g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "Scrutor/3.3.0": { + "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "type": "package", + "path": "scrutor/3.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Scrutor.dll", + "lib/net461/Scrutor.pdb", + "lib/net461/Scrutor.xml", + "lib/netcoreapp3.1/Scrutor.dll", + "lib/netcoreapp3.1/Scrutor.pdb", + "lib/netcoreapp3.1/Scrutor.xml", + "lib/netstandard2.0/Scrutor.dll", + "lib/netstandard2.0/Scrutor.pdb", + "lib/netstandard2.0/Scrutor.xml", + "scrutor.3.3.0.nupkg.sha512", + "scrutor.nuspec" + ] + }, + "Serilog/2.11.0": { + "sha512": "ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "type": "package", + "path": "serilog/2.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.dll", + "lib/net45/Serilog.xml", + "lib/net46/Serilog.dll", + "lib/net46/Serilog.xml", + "lib/net5.0/Serilog.dll", + "lib/net5.0/Serilog.xml", + "lib/netstandard1.0/Serilog.dll", + "lib/netstandard1.0/Serilog.xml", + "lib/netstandard1.3/Serilog.dll", + "lib/netstandard1.3/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.2.11.0.nupkg.sha512", + "serilog.nuspec" + ] + }, + "Serilog.Sinks.File/5.0.0": { + "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "type": "package", + "path": "serilog.sinks.file/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "images/icon.png", + "lib/net45/Serilog.Sinks.File.dll", + "lib/net45/Serilog.Sinks.File.pdb", + "lib/net45/Serilog.Sinks.File.xml", + "lib/net5.0/Serilog.Sinks.File.dll", + "lib/net5.0/Serilog.Sinks.File.pdb", + "lib/net5.0/Serilog.Sinks.File.xml", + "lib/netstandard1.3/Serilog.Sinks.File.dll", + "lib/netstandard1.3/Serilog.Sinks.File.pdb", + "lib/netstandard1.3/Serilog.Sinks.File.xml", + "lib/netstandard2.0/Serilog.Sinks.File.dll", + "lib/netstandard2.0/Serilog.Sinks.File.pdb", + "lib/netstandard2.0/Serilog.Sinks.File.xml", + "lib/netstandard2.1/Serilog.Sinks.File.dll", + "lib/netstandard2.1/Serilog.Sinks.File.pdb", + "lib/netstandard2.1/Serilog.Sinks.File.xml", + "serilog.sinks.file.5.0.0.nupkg.sha512", + "serilog.sinks.file.nuspec" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "sha512": "f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.nativelibrary.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.0.4": { + "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "type": "package", + "path": "sqlitepclraw.core/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.0.4.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/alpine-x64/native/libe_sqlite3.so", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "type": "package", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll", + "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "sqlitepclraw.provider.dynamic_cdecl.nuspec" + ] + }, + "SqlSugarCore/5.0.8": { + "sha512": "20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "type": "package", + "path": "sqlsugarcore/5.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.1/SqlSugar.dll", + "sqlsugarcore.5.0.8.nupkg.sha512", + "sqlsugarcore.nuspec" + ] + }, + "SqlSugarCore.Dm/1.0.0": { + "sha512": "TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "type": "package", + "path": "sqlsugarcore.dm/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/DmProvider.dll", + "sqlsugarcore.dm.1.0.0.nupkg.sha512", + "sqlsugarcore.dm.nuspec" + ] + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "sha512": "xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "type": "package", + "path": "sqlsugarcore.kdbndp/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Kdbndp.dll", + "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512", + "sqlsugarcore.kdbndp.nuspec" + ] + }, + "Swashbuckle.AspNetCore/6.2.3": { + "sha512": "cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "type": "package", + "path": "swashbuckle.aspnetcore/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "sha512": "pjj/BdKFcXX1tdUrVjfW6SiRSiHC4dOnqszhU2PuS0RBXZUnGM18tXUrNU2pgPkSjWUnCiyvbjd3GBkEuNTBYA==", + "type": "package", + "path": "swashbuckle.aspnetcore.filters/7.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll", + "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.dll", + "swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512", + "swashbuckle.aspnetcore.filters.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "sha512": "RqZ+P+m2cw1TVsU9LUHNdLf4Ww7YSqDRt7UHRzauZJnRztDlNR4doOGzXLmWZzq+3CfZyS7NEsQyJmf4Y+7GMQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.filters.abstractions/7.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll", + "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll", + "swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512", + "swashbuckle.aspnetcore.filters.abstractions.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "sha512": "oy6BwAX+tcKO13n9bw3nPtITBvD03bAHDN2+lTaOY/cUNcQE/liu3xWjbkdhLeNTUiC+7h+lJvR7KUdI7CXz0w==", + "type": "package", + "path": "swashbuckle.aspnetcore.newtonsoft/6.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Newtonsoft.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Newtonsoft.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Newtonsoft.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Newtonsoft.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Newtonsoft.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Newtonsoft.pdb", + "swashbuckle.aspnetcore.newtonsoft.6.3.1.nupkg.sha512", + "swashbuckle.aspnetcore.newtonsoft.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "sha512": "idAFh4xhyJHYHfdLVOOn+BmscBul1OQbWsnL6YPJE8tO/0y6S79hDCvs6OY5VI093/9+1pYY3j31Zet9yaDZjA==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/6.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", + "swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "sha512": "+uoBV4h/6NhCPLoTofSmuOnZ+usu4PW1jP6l4OHwPyu2frbYXGNpJsHs5uUXXn929OiVQkT8wo3Lj/o+P99Ejg==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/6.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "sha512": "bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "wvyiJIm0HlaoN+AlJXhTpDrhYkN28OC/nEun5QpbPkZvbpgWSYvZ8Hr9/G4Bd1I0WSmFW18KQuE5DOA05Uubrw==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.5.1": { + "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "type": "package", + "path": "system.buffers/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Buffers.dll", + "lib/net461/System.Buffers.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.1.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "wAdmaCgCSe298gCNvAf6vlVPfQUR7h43Qr2tTtJFYeto/OvttRLyG4ch6/R2FpuWRMfxHBsAeHYrzjvEk1UM+Q==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.3.0": { + "sha512": "Un05L1TLTGqBBRKAFngtzovaNeFL1EGzuUwW0AiTotM/GUWVE0c0xH4owZgdJ6nf6DuK866gbLqD3c/Ms7KSOg==", + "type": "package", + "path": "system.collections.immutable/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.3.0.nupkg.sha512", + "system.collections.immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "sRo7MpbD5VnFdLZA/uVuR5YJdDV4i+DyJTpQ1rk92wCzLE4cXJ+q7tzGr2HwkL/ujeFNcPo/fOs7LKdDyeyupA==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "type": "package", + "path": "system.configuration.configurationmanager/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "wJLrK/MQdlF3TmfNouxSsgtCRhsgx4tz2KdY/mpvirOcgMc2W4DDK7vR6RcSc6XRV4P6rzrLFXd9wUzp/iWp0g==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Data.Common/4.3.0": { + "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "type": "package", + "path": "system.data.common/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.Common.dll", + "lib/netstandard1.2/System.Data.Common.dll", + "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.xml", + "ref/netstandard1.2/de/System.Data.Common.xml", + "ref/netstandard1.2/es/System.Data.Common.xml", + "ref/netstandard1.2/fr/System.Data.Common.xml", + "ref/netstandard1.2/it/System.Data.Common.xml", + "ref/netstandard1.2/ja/System.Data.Common.xml", + "ref/netstandard1.2/ko/System.Data.Common.xml", + "ref/netstandard1.2/ru/System.Data.Common.xml", + "ref/netstandard1.2/zh-hans/System.Data.Common.xml", + "ref/netstandard1.2/zh-hant/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.data.common.4.3.0.nupkg.sha512", + "system.data.common.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "aX7O7aytoclkwEvOv4vCDBP2hDVsrAbQVAOJXUka7qCXbbZcqtv8CKrX646dSERl9aO/tY0/g2ezsa4jBAMQOg==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.DiagnosticSource.dll", + "lib/net461/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/6.0.0": { + "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "type": "package", + "path": "system.diagnostics.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "sha512": "kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "type": "package", + "path": "system.diagnostics.performancecounter/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Diagnostics.PerformanceCounter.dll", + "ref/net461/System.Diagnostics.PerformanceCounter.xml", + "ref/net472/System.Diagnostics.PerformanceCounter.dll", + "ref/net472/System.Diagnostics.PerformanceCounter.xml", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.4.7.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.StackTrace/4.3.0": { + "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "type": "package", + "path": "system.diagnostics.stacktrace/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.StackTrace.dll", + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.StackTrace.dll", + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll", + "ref/netstandard1.3/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll", + "system.diagnostics.stacktrace.4.3.0.nupkg.sha512", + "system.diagnostics.stacktrace.nuspec" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "6jD8gKBZvTfp1PEuqAkpMZvG9hF+gzGIvhvRh0K2qDApsiEpRZ9ZUlWE2nACpPdWP8w3DaL0TQAHuA7gXDSupA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.3.0": { + "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "type": "package", + "path": "system.diagnostics.tracesource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "system.diagnostics.tracesource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "ChcZW/eQtXpPDW7qMqlqK7xGW4A8hhz7/iY4J5hsvhzPsza7Cml+hdBhm5vAh6KhHcXzMvjfLcbChmZsYPlJsA==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.DirectoryServices/4.7.0": { + "sha512": "NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "type": "package", + "path": "system.directoryservices/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.DirectoryServices.dll", + "ref/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml", + "system.directoryservices.4.7.0.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.DirectoryServices.Protocols/4.7.0": { + "sha512": "yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "type": "package", + "path": "system.directoryservices.protocols/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.DirectoryServices.Protocols.dll", + "ref/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.4.7.0.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/4.7.0": { + "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "type": "package", + "path": "system.drawing.common/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.4.7.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "Zf/fX6NjK+eL01E0a5+pZb2NaitHwaVPlh7Wc62+wpnAtn1hA0ye8WAMV4r8DJv+AghKZYBwQwGqZJ9ikWLLkw==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "ttt2PGgBfejL4xBEdMMd2E+Mqn/wC47jhMBtqRNJeH6uYa2j3fTDi1Jj1hAY5sfgbJcrvfSO46G1pufONMmfmA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "kzMaA/htO8n7p5FQvyVXA9Q66+LntW+m0vp+Vnl5gSWsc6btlIYIC3aXs3DvtvdV0ue1tX/Mslkiei1vLgh3WA==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "sha512": "5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "Yn4CfuDOHBxI0b6JNSQJGqCIsuEqcjxQIAxktq316Jhz9Q0aRKqqGN7QNwd5fyNqz7mNMXfKDt1bJrtggkt8/g==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "kRj3owqKUOxPcvQpK0VItuLGg/aXPjUxzT5ujrfMW0RrAQ7FJYB+mFiCawtGQVQatVCKr78TX39cJueK9ic8wA==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "1d5+nGi+bWLgg0/wPO1IKJGSIe8Gy+WsMoT11T472mWHryC/qCISRl/v9w4rmk+72uX/1DFgBjBljUXyAK4jNg==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "sha512": "vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "BnZgb92GKxi/DjV7WbZo2Sm7G8pImuLocQAHIkuFrRExeBMyjX0sIRY039HbnBObE7t5ihxRP3wYPSJ0Zt/apQ==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.Pipelines/6.0.3": { + "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "type": "package", + "path": "system.io.pipelines/6.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Pipelines.dll", + "lib/net461/System.IO.Pipelines.xml", + "lib/net6.0/System.IO.Pipelines.dll", + "lib/net6.0/System.IO.Pipelines.xml", + "lib/netcoreapp3.1/System.IO.Pipelines.dll", + "lib/netcoreapp3.1/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.6.0.3.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Linq/4.3.0": { + "sha512": "dGfhVR2KQhRwrl0D8yb8gJLpr2iX4Hnud1oNRwUbafrqskstG2kC3NMNp/t7QRzdb1mlNqc99F2OjXYKyHzdnA==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "MHtkLrHBt/UkTMLaBYgCgrm2WBogOkEjDRlNJSxy18uQWEMN4ymSywGNwNHS8ATNyaGJzddvmdWI/UjLaLyskg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "6sVcH1+qeVKf7xD/7k0ouAA7830LIw7Ltwo4bEl9ExyRVN/YNUhka9CBcd2Pp4Ugn14/cIY/i39bSTMUOmftFw==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "S70uFEyXRAuRBxWsQWyVciioHMGOYxpob7a/TNchHKF9ceQPktdtcdl3/vktvUJU8B5ES7lG1wkglSWXYKHjcA==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "sha512": "FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==", + "type": "package", + "path": "system.net.websockets.websocketprotocol/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll", + "lib/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll", + "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll", + "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512", + "system.net.websockets.websocketprotocol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "TqRGJ6R6S9VpsXm2GpRy87TFXMxVqtYMrZtQFZHNJadQ1njAlpp0F5PfsWH04UNZWeY9X1jK+Kr8faJREA1kfg==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "13ihEbKKWpJYwZpo1kcDv2kW8eCK9twslQXpuqW/ulpHFhB2vuxbCuQgllNLjiSuL3uEKSPz34wC0xRb5hY9OA==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.4.1": { + "sha512": "cYyPyIPBNlROATH5CjGQpvFhPdCrkDyVpChahZmpZlpXE4wQS+f6fUl+A/16U8/IShAiS3ofjX6bHuwRyHHWbQ==", + "type": "package", + "path": "system.reflection.metadata/1.4.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.4.1.nupkg.sha512", + "system.reflection.metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "lJGsxoZ+9PXn+Qdjc5Nk6yJVqLk8lRR3k3uEGja59sC1EbkzMbVMqPFNOQmYxaO5Fbid8Bm29o+rB/PdDCDXNw==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/4.7.0": { + "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "type": "package", + "path": "system.runtime.caching/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard2.0/System.Runtime.Caching.dll", + "ref/netstandard2.0/System.Runtime.Caching.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", + "system.runtime.caching.4.7.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "yhyMfLA28dYAFahmTy+lM6rDrrca84R76fk8J0GH9gdtcZe6NuA7bWhLOCcWOEi74jZOIjtjtRPzkdSv6KlATQ==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "djZnX43T2YuLt526S/mq2pBiHQS8WfAUAg/nOt+oz6MkTo6HKAANCytQEFXmv6jyrumb8ohYe3ht2sEUMi9LMQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "Jw3ielASDELVDT+VPsL6PGRHp50mytxUnVp7UlKZWS3l5cxWAhZIWfTiunuqyy90WKcEIehjHkfpRqyzO5eFmw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "sPdBt8ZxEzxDYhPnWz+eegZMhyYBzea/Oi7AuuqwtyCATswlsMdA3tiw/U/rMP+MvDa4DIhI1inEwEDYArfuJg==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.AccessControl/4.7.0": { + "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "type": "package", + "path": "system.security.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.7.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "DG7gpkRnHPaofkkKx5jWKqI9gjcHhDOt3BeCMKRTImnngZvP1jlgYMXYXxY+S8XWyOoyU8KF5Tv0ZrG9FYREvQ==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "xFN3KCCvtAdfdy+AngirK0Tku73Ne9i5NmV995PGnHOn6OvNx5j/f2Aa6FuEoZT1YshMjOlWfEKI8WAjnaxtRg==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Permissions/4.7.0": { + "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "type": "package", + "path": "system.security.permissions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.7.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.7.0": { + "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "type": "package", + "path": "system.text.encoding.codepages/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.4.7.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "iwhUBeB6oQ10iH2CRQeLNTHyQX9lxiMNZuC9nMY0IhiQlRaDtcwTVaGWSTShduj0V8o07kOgI53QayLnHt6i0A==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/6.0.0": { + "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "type": "package", + "path": "system.text.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "build/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/netcoreapp3.1/System.Text.Json.dll", + "lib/netcoreapp3.1/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.6.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "6hQ2W40ImHD8OSBL8zWYSwdae6iryMpeEThocf8u1m/0LFZUmnRtKyXZtXNNqwkbha/mDcjS+GbbCk+whXz0sA==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Channels/4.5.0": { + "sha512": "MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "type": "package", + "path": "system.threading.channels/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/System.Threading.Channels.dll", + "lib/netcoreapp2.1/System.Threading.Channels.xml", + "lib/netstandard1.3/System.Threading.Channels.dll", + "lib/netstandard1.3/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "system.threading.channels.4.5.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "sha512": "aUDiT8Qv4rbc1YwvWhBM76PzeoHLQLook/5PiXhFsBur7cniIsd2K0MhGDZ1M1IN9j7y6HdC7lnk+TS37lJEZA==", + "type": "package", + "path": "system.threading.tasks.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "sha512": "3h7hlVK5u8nzCUQFFYj6yw6NKYgnrUySo0oaXN21LyrOQpr052u5rvnSxUGuIKO7M9jRv1FaLZOGVI/+7olf9A==", + "type": "package", + "path": "system.threading.tasks.parallel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/netcore50/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.parallel.4.3.0.nupkg.sha512", + "system.threading.tasks.parallel.nuspec" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "IKcG64NTLVkZVHawu61/TldF/J/Vb7phwiECTLwB30N7NoUkXs1BquSuCJHyHCLUC0vEmEU0vqnQZY7T21Gc1Q==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Windows.Extensions/4.7.0": { + "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "type": "package", + "path": "system.windows.extensions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.4.7.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "EyRjbRA4pD4dG4O4XEzITKvzLRpauU4LhvS1UhiWUlvk5bUcfhFDMw1obsrvfpfD3zvqJ6PXm6Y4r2tUFf1yCQ==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "MOrSyJ8eyHXyB4xMFN7AIZ5/B9ODYQxmspxxD2r5Zd8Os6hUAmVRUgl6s6Qml/j4nJGcsOHgonpDYmEAeuADMw==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "sha512": "YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "type": "package", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.xml", + "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512", + "webapiclient.extensions.dependencyinjection.nuspec" + ] + }, + "WebApiClient.JIT/1.0.3": { + "sha512": "mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "type": "package", + "path": "webapiclient.jit/1.0.3", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/WebApiClient.Analyzers.deps.json", + "analyzers/dotnet/cs/WebApiClient.Analyzers.dll", + "lib/net45/WebApiClient.JIT.dll", + "lib/net45/WebApiClient.JIT.xml", + "lib/netcoreapp2.1/WebApiClient.JIT.dll", + "lib/netcoreapp2.1/WebApiClient.JIT.xml", + "lib/netstandard1.3/WebApiClient.JIT.dll", + "lib/netstandard1.3/WebApiClient.JIT.xml", + "lib/netstandard2.0/WebApiClient.JIT.dll", + "lib/netstandard2.0/WebApiClient.JIT.xml", + "tools/install.ps1", + "tools/uninstall.ps1", + "webapiclient.jit.1.0.3.nupkg.sha512", + "webapiclient.jit.nuspec" + ] + }, + "Yitter.IdGenerator/1.0.12": { + "sha512": "hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "type": "package", + "path": "yitter.idgenerator/1.0.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Yitter.IdGenerator.dll", + "yitter.idgenerator.1.0.12.nupkg.sha512", + "yitter.idgenerator.nuspec" + ] + }, + "zzz.Common/1.0.0": { + "type": "project", + "path": "../zzz.Common/zzz.Common.csproj", + "msbuildProject": "../zzz.Common/zzz.Common.csproj" + }, + "zzz.Extensions/1.0.0": { + "type": "project", + "path": "../zzz.Extensions/zzz.Extensions.csproj", + "msbuildProject": "../zzz.Extensions/zzz.Extensions.csproj" + }, + "zzz.Model/1.0.0": { + "type": "project", + "path": "../zzz.model/zzz.Model.csproj", + "msbuildProject": "../zzz.model/zzz.Model.csproj" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "path": "../zzz.Repository/zzz.Repository.csproj", + "msbuildProject": "../zzz.Repository/zzz.Repository.csproj" + }, + "zzz.Services/1.0.0": { + "type": "project", + "path": "../zzz.Services/zzz.Services.csproj", + "msbuildProject": "../zzz.Services/zzz.Services.csproj" + }, + "zzz.Tasks/1.0.0": { + "type": "project", + "path": "../zzz.Tasks/zzz.Tasks.csproj", + "msbuildProject": "../zzz.Tasks/zzz.Tasks.csproj" + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "Autofac.Extensions.DependencyInjection >= 7.2.0", + "MicroKnights.Log4NetAdoNetAppender >= 2.2.0", + "zzz.Extensions >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\Administrator\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Api\\zzz.Api.csproj", + "projectName": "zzz.Api", + "projectPath": "F:\\yuhong_plc\\zzz.Api\\zzz.Api.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Api\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Extensions\\zzz.Extensions.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Extensions\\zzz.Extensions.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[7.2.0, )" + }, + "MicroKnights.Log4NetAdoNetAppender": { + "target": "Package", + "version": "[2.2.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/project.nuget.cache b/yuhong_plc/zzz.Api/obj/project.nuget.cache new file mode 100644 index 0000000..2ad0ae5 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/project.nuget.cache @@ -0,0 +1,220 @@ +{ + "version": 2, + "dgSpecHash": "g5ADHs/ZUBXShDP/+E3dCSENvKnMlrWi9GuAJUJRVmfREPcZVAWwoQHhiwG1a3+Rg4XuDEysPY301ilm7y2BQw==", + "success": true, + "projectFilePath": "F:\\yuhong_plc\\zzz.Api\\zzz.Api.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Administrator\\.nuget\\packages\\autofac\\6.3.0\\autofac.6.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\autofac.extensions.dependencyinjection\\7.2.0\\autofac.extensions.dependencyinjection.7.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\autofac.extras.dynamicproxy\\6.0.1\\autofac.extras.dynamicproxy.6.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\automapper\\11.0.1\\automapper.11.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\11.0.0\\automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\bouncycastle.netcore\\1.8.5\\bouncycastle.netcore.1.8.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\castle.core\\4.4.0\\castle.core.4.4.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\google.protobuf\\3.19.4\\google.protobuf.3.19.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\hslcommunication\\7.0.1\\hslcommunication.7.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4\\1.2.6\\k4os.compression.lz4.1.2.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4.streams\\1.2.6\\k4os.compression.lz4.streams.1.2.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.hash.xxhash\\1.0.6\\k4os.hash.xxhash.1.0.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\log4net\\2.0.14\\log4net.2.0.14.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microknights.log4netadonetappender\\2.2.0\\microknights.log4netadonetappender.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.connections.abstractions\\6.0.5\\microsoft.aspnetcore.connections.abstractions.6.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.2\\microsoft.aspnetcore.http.2.2.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http.connections\\1.1.0\\microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http.connections.common\\1.1.0\\microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\6.0.0-rc.1.21452.15\\microsoft.aspnetcore.jsonpatch.6.0.0-rc.1.21452.15.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.mvc.newtonsoftjson\\6.0.0-rc.1.21452.15\\microsoft.aspnetcore.mvc.newtonsoftjson.6.0.0-rc.1.21452.15.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr\\1.1.0\\microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.common\\6.0.5\\microsoft.aspnetcore.signalr.common.6.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.core\\1.1.0\\microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.protocols.json\\1.1.0\\microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.protocols.newtonsoftjson\\6.0.5\\microsoft.aspnetcore.signalr.protocols.newtonsoftjson.6.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.websockets\\2.2.0\\microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlclient\\2.1.1\\microsoft.data.sqlclient.2.1.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.1.1\\microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlite\\5.0.5\\microsoft.data.sqlite.5.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlite.core\\5.0.5\\microsoft.data.sqlite.core.5.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration\\6.0.1\\microsoft.extensions.configuration.6.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0\\microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.binder\\6.0.0\\microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\6.0.0\\microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.json\\6.0.0\\microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencymodel\\3.1.6\\microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.features\\6.0.5\\microsoft.extensions.features.6.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\6.0.0\\microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\6.0.0\\microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\6.0.0\\microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\6.0.0\\microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.eventlog\\6.0.0\\microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.log4net.aspnetcore\\6.1.0\\microsoft.extensions.logging.log4net.aspnetcore.6.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identity.client\\4.21.1\\microsoft.identity.client.4.21.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.8.0\\microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.logging\\6.8.0\\microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.8.0\\microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.8.0\\microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.8.0\\microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\miniprofiler.aspnetcore\\4.2.22\\miniprofiler.aspnetcore.4.2.22.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\miniprofiler.aspnetcore.mvc\\4.2.22\\miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\miniprofiler.shared\\4.2.22\\miniprofiler.shared.4.2.22.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\mysql.data\\8.0.29\\mysql.data.8.0.29.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\npgsql\\5.0.7\\npgsql.5.0.7.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\oracle.manageddataaccess.core\\3.21.1\\oracle.manageddataaccess.core.3.21.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\quartz\\3.4.0\\quartz.3.4.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\scrutor\\3.3.0\\scrutor.3.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\serilog\\2.11.0\\serilog.2.11.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\serilog.sinks.file\\5.0.0\\serilog.sinks.file.5.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.0.4\\sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.core\\2.0.4\\sqlitepclraw.core.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.0.4\\sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.provider.dynamic_cdecl\\2.0.4\\sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore\\5.0.8\\sqlsugarcore.5.0.8.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore.dm\\1.0.0\\sqlsugarcore.dm.1.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore.kdbndp\\1.0.0\\sqlsugarcore.kdbndp.1.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore\\6.2.3\\swashbuckle.aspnetcore.6.2.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore.filters\\7.0.2\\swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore.filters.abstractions\\7.0.2\\swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore.newtonsoft\\6.3.1\\swashbuckle.aspnetcore.newtonsoft.6.3.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.3.1\\swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.3.1\\swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.2.3\\swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.collections.immutable\\1.3.0\\system.collections.immutable.1.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.performancecounter\\4.7.0\\system.diagnostics.performancecounter.4.7.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.stacktrace\\4.3.0\\system.diagnostics.stacktrace.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.directoryservices\\4.7.0\\system.directoryservices.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.directoryservices.protocols\\4.7.0\\system.directoryservices.protocols.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.8.0\\system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem.accesscontrol\\4.7.0\\system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.websockets.websocketprotocol\\4.5.1\\system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.metadata\\1.4.1\\system.reflection.metadata.1.4.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.json\\6.0.0\\system.text.json.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.channels\\4.5.0\\system.threading.channels.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks.parallel\\4.3.0\\system.threading.tasks.parallel.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\webapiclient.extensions.dependencyinjection\\2.0.3\\webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\webapiclient.jit\\1.0.3\\webapiclient.jit.1.0.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\yitter.idgenerator\\1.0.12\\yitter.idgenerator.1.0.12.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/staticwebassets.pack.sentinel b/yuhong_plc/zzz.Api/obj/staticwebassets.pack.sentinel new file mode 100644 index 0000000..2bdb5e1 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/staticwebassets.pack.sentinel @@ -0,0 +1,338 @@ +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 diff --git a/yuhong_plc/zzz.Api/obj/zzz.Api.csproj.EntityFrameworkCore.targets b/yuhong_plc/zzz.Api/obj/zzz.Api.csproj.EntityFrameworkCore.targets new file mode 100644 index 0000000..7d6485d --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/zzz.Api.csproj.EntityFrameworkCore.targets @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Api/obj/zzz.Api.csproj.nuget.dgspec.json b/yuhong_plc/zzz.Api/obj/zzz.Api.csproj.nuget.dgspec.json new file mode 100644 index 0000000..d359020 --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/zzz.Api.csproj.nuget.dgspec.json @@ -0,0 +1,580 @@ +{ + "format": 1, + "restore": { + "F:\\yuhong_plc\\zzz.Api\\zzz.Api.csproj": {} + }, + "projects": { + "F:\\yuhong_plc\\zzz.Api\\zzz.Api.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Api\\zzz.Api.csproj", + "projectName": "zzz.Api", + "projectPath": "F:\\yuhong_plc\\zzz.Api\\zzz.Api.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Api\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Extensions\\zzz.Extensions.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Extensions\\zzz.Extensions.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[7.2.0, )" + }, + "MicroKnights.Log4NetAdoNetAppender": { + "target": "Package", + "version": "[2.2.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj", + "projectName": "zzz.Common", + "projectPath": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Common\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "Microsoft.AspNetCore.SignalR.Core": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.Extensions.Configuration": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.Extensions.Configuration.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Binder": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Json": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Hosting.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.11.0, )" + }, + "Serilog.Sinks.File": { + "target": "Package", + "version": "[5.0.0, )" + }, + "WebApiClient.Extensions.DependencyInjection": { + "target": "Package", + "version": "[2.0.3, )" + }, + "Yitter.IdGenerator": { + "target": "Package", + "version": "[1.0.12, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.Extensions\\zzz.Extensions.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Extensions\\zzz.Extensions.csproj", + "projectName": "zzz.Extensions", + "projectPath": "F:\\yuhong_plc\\zzz.Extensions\\zzz.Extensions.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Extensions\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj" + }, + "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[6.3.0, )" + }, + "Autofac.Extras.DynamicProxy": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.AspNetCore.Http": { + "target": "Package", + "version": "[2.2.2, )" + }, + "Microsoft.AspNetCore.Http.Abstractions": { + "target": "Package", + "version": "[2.2.0, )" + }, + "Microsoft.AspNetCore.SignalR": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson": { + "target": "Package", + "version": "[6.0.5, )" + }, + "Microsoft.Extensions.Logging": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Logging.EventLog": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore": { + "target": "Package", + "version": "[6.1.0, )" + }, + "MiniProfiler.AspNetCore.Mvc": { + "target": "Package", + "version": "[4.2.22, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.2.3, )" + }, + "Swashbuckle.AspNetCore.Filters": { + "target": "Package", + "version": "[7.0.2, )" + }, + "Swashbuckle.AspNetCore.Newtonsoft": { + "target": "Package", + "version": "[6.3.1, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj", + "projectName": "zzz.Model", + "projectPath": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.model\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.0.0, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.0.8, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj", + "projectName": "zzz.Repository", + "projectPath": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Repository\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj" + }, + "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj", + "projectName": "zzz.Services", + "projectPath": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Services\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "HslCommunication": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj", + "projectName": "zzz.Tasks", + "projectPath": "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Tasks\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Quartz": { + "target": "Package", + "version": "[3.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/zzz.Api.csproj.nuget.g.props b/yuhong_plc/zzz.Api/obj/zzz.Api.csproj.nuget.g.props new file mode 100644 index 0000000..080a86b --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/zzz.Api.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Administrator\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.2.1 + + + + + + + C:\Users\Administrator\.nuget\packages\webapiclient.jit\1.0.3 + C:\Users\Administrator\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/obj/zzz.Api.csproj.nuget.g.targets b/yuhong_plc/zzz.Api/obj/zzz.Api.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/yuhong_plc/zzz.Api/obj/zzz.Api.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/wwwroot/index.html b/yuhong_plc/zzz.Api/wwwroot/index.html new file mode 100644 index 0000000..73e74b5 --- /dev/null +++ b/yuhong_plc/zzz.Api/wwwroot/index.html @@ -0,0 +1,10 @@ + + + + + Swagger入坑 + + + + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/zzz.Api.csproj b/yuhong_plc/zzz.Api/zzz.Api.csproj new file mode 100644 index 0000000..29ba080 --- /dev/null +++ b/yuhong_plc/zzz.Api/zzz.Api.csproj @@ -0,0 +1,34 @@ + + + + net6.0 + enable + True + ..\zzz.Api\zzz.Api.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Api/zzz.Api.csproj.user b/yuhong_plc/zzz.Api/zzz.Api.csproj.user new file mode 100644 index 0000000..ad6ecbf --- /dev/null +++ b/yuhong_plc/zzz.Api/zzz.Api.csproj.user @@ -0,0 +1,12 @@ + + + + MvcControllerEmptyScaffolder + root/Common/MVC/Controller + F:\yuhong_plc\zzz.Api\Properties\PublishProfiles\FolderProfile.pubxml + zzz.Api + + + ProjectDebugger + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Api/zzz.Api.xml b/yuhong_plc/zzz.Api/zzz.Api.xml new file mode 100644 index 0000000..69d94ab --- /dev/null +++ b/yuhong_plc/zzz.Api/zzz.Api.xml @@ -0,0 +1,410 @@ + + + + zzz.Api + + + + + 持续运行 + + + + + 持续运行 + + + + + + + + 激活 + + + + + 立即执行任务 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 余宏大屏数据 + + + + + 余宏大屏数据 + + + + + + + + 工单列表数据 + + + + + + 工单详情 + + + + + + 动态月订单信息数据 + + + + + + 设备信息 + + + + + + 定时任务 + + + + + 构造 + + + + + + + + 分页获取 + + + + + + + + 添加计划任务 + + + + + + + 修改计划任务 + + + + + + + 删除一个任务 + + + + + + + 启动计划任务 + + + + + + + 停止一个计划任务 + + + + + + + 暂停一个计划任务 + + + + + + + 恢复一个计划任务 + + + + + + + 重启一个计划任务 + + + + + + + 获取任务命名空间 + + + + + + 立即执行任务 + + + + + + + + + + + + + + + + + + + + + 测试 增加数据 BaseService + + + + + + 测试 增加数据 接口 + + + + + + 测试 修改数据 BaseService + + + + + + 测试 修改部分数据 BaseService + + + + + + 测试 修改数据 接口 + + + + + + 测试 修改部分数据 接口 + + + + + + 测试 软删除数据 BaseService + + + + + + 测试 软删除数据 接口 + + + + + + 测试取单条数据 BaseService + + + + + + + 测试取单条数据 IF + + + + + + + 测试分页数据 Baseservice + + + + + + + 测试分页数据 IF + + + + + + + + + + + + + 读取13线数据 + + + + + + 读取2线数据 + + + + + 读取15线数据 + + + + + + 读取7线数据 + + + + + + 数据库操作 + + + + + 构造 + + + + + + 同步表结果 Entity-->数据库 + + + + + + + 全局异常错误日志 + + + + + 异常拦截构造函数 + + + + + + + + 异常发生 + + + + + + 自定义返回格式 + + + + + + + + + + + + + + + + + + + 返回错误信息 + + + + + 生产环境的消息 + + + + + 开发环境的消息 + + + + diff --git a/yuhong_plc/zzz.Api/zzz.Model.xml b/yuhong_plc/zzz.Api/zzz.Model.xml new file mode 100644 index 0000000..90ea772 --- /dev/null +++ b/yuhong_plc/zzz.Api/zzz.Model.xml @@ -0,0 +1,1543 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 2线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Api/zzz.Services.xml b/yuhong_plc/zzz.Api/zzz.Services.xml new file mode 100644 index 0000000..623dba3 --- /dev/null +++ b/yuhong_plc/zzz.Api/zzz.Services.xml @@ -0,0 +1,941 @@ + + + + zzz.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 种子数据 服务 + + + + + 构造 + + + + + + 异步添加种子数据 + + + + + + + + 同步表结构 + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 种子数据 接口 + + + + + 同步表结构 + + + + + + + 设备名称 + + + + + 设备利用率DTO + + + + + x轴 + + + + + series + + + + + 动态月订单信息数据 + + + + + 生产计划达成率 + + + + + 订单交付率 + + + + + 生产数量 + + + + + 设备利用率 + + + + + 产品合格率 + + + + + 大屏生产工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 完成进度 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 各产品生产数量 + + + + + x轴 + + + + + series + + + + + PLC硬件信息 + + + + + eqmt_id + + + + + ip + + + + + 端口 + + + + + 读取PLC数据接口 + + + + + 读取13线数据 + + + + + 读取16线数据 + + + + + 读取17线数据 + + + + + 读取18线数据 + + + + + 读取19线数据 + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 读取PLC数据服务 + + + + + 构造 + + + + + 打开连接 + + + + + + + + 关闭连接 + + + + + 读取13线数据 + + + + + 读取16线数据 + 一个端口 + + + + + 读取19线数据 + 一个端口 + + + + + 读取17线数据 + 两个端口 + + + + + 读取18线数据 + 两个端口 + + + + + 创建间隔采集数据 + + + + + + 班次产量数据 + + + + + + 计算OEE + + + + + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Common/Attribute/UseTranAttribute.cs b/yuhong_plc/zzz.Common/Attribute/UseTranAttribute.cs new file mode 100644 index 0000000..271173e --- /dev/null +++ b/yuhong_plc/zzz.Common/Attribute/UseTranAttribute.cs @@ -0,0 +1,13 @@ +using System; + +namespace zzz.Common +{ + /// + /// 这个Attribute就是使用时候的验证,把它添加到需要执行事务的方法中,即可完成事务的操作。 + /// + [AttributeUsage(AttributeTargets.Method, Inherited = true)] + public class UseTranAttribute : Attribute + { + + } +} diff --git a/yuhong_plc/zzz.Common/Helper/Appsettings.cs b/yuhong_plc/zzz.Common/Helper/Appsettings.cs new file mode 100644 index 0000000..dfc13d0 --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/Appsettings.cs @@ -0,0 +1,87 @@ +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.Configuration.Json; +using System; +using System.Collections.Generic; +using System.Linq; + +namespace zzz.Common +{ + /// + /// appsettings.json操作类 + /// + public class Appsettings + { + public static IConfiguration Configuration { get; set; } + static string contentPath { get; set; } + + public Appsettings(string contentPath) + { + string Path = "appsettings.json"; + + //如果你把配置文件 是 根据环境变量来分开了,可以这样写 + //Path = $"appsettings.{Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT")}.json"; + + Configuration = new ConfigurationBuilder() + .SetBasePath(contentPath) + .Add(new JsonConfigurationSource { Path = Path, Optional = false, ReloadOnChange = true })//这样的话,可以直接读目录里的json文件,而不是 bin 文件夹下的,所以不用修改复制属性 + .Build(); + } + + public Appsettings(IConfiguration configuration) + { + Configuration = configuration; + } + + /// + /// 封装要操作的字符 + /// + /// 节点配置 + /// + public static string app(params string[] sections) + { + try + { + + if (sections.Any()) + { + return Configuration[string.Join(":", sections)]; + } + } + catch (Exception) { } + + return ""; + } + + /// + /// 递归获取配置信息数组 + /// + /// + /// + /// + public static List app(params string[] sections) + { + List list = new List(); + // 引用 Microsoft.Extensions.Configuration.Binder 包 + Configuration.Bind(string.Join(":", sections), list); + return list; + } + + + /// + /// 根据路径 configuration["App:Name"]; + /// + /// + /// + public static string GetValue(string sectionsPath) + { + try + { + return Configuration[sectionsPath]; + } + catch (Exception) { } + + return ""; + + } + } +} diff --git a/yuhong_plc/zzz.Common/Helper/AutoMapperHelper.cs b/yuhong_plc/zzz.Common/Helper/AutoMapperHelper.cs new file mode 100644 index 0000000..e65e114 --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/AutoMapperHelper.cs @@ -0,0 +1,93 @@ +using AutoMapper; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Common.Helper +{ + /// + /// AutoMapper扩展类 + /// + public static class AutoMapperExtension + { + + /// + /// 对象映射 + /// + public static TOut MapTo(this TIn source) + { + if (source == null) return default(TOut); + var config = new MapperConfiguration(cfg => cfg.CreateMap()); + var mapper = config.CreateMapper(); + return mapper.Map(source); + } + + /// + /// 对象映射(自定义) + /// + public static TOut MapTo(this TIn source, Profile profile) + { + if (source == null) return default(TOut); + var config = new MapperConfiguration(cfg => cfg.AddProfile(profile)); + var mapper = config.CreateMapper(); + return mapper.Map(source); + } + + /// + /// 对象映射到目标对象 + /// + public static TOut MapTo(this TIn source,TOut destination) + { + if (source == null) return default(TOut); + var config = new MapperConfiguration(cfg => cfg.CreateMap()); + var mapper = config.CreateMapper(); + return mapper.Map(source, destination); + } + + /// + /// 对象映射(自定义)到目标对象 + /// + public static TOut MapTo(this TIn source, TOut destination, Profile profile) + { + if (source == null) return default(TOut); + var config = new MapperConfiguration(cfg => cfg.AddProfile(profile)); + var mapper = config.CreateMapper(); + return mapper.Map(source, destination); + } + + + /// + /// 集合映射 + /// + /// + /// + /// + /// + public static IEnumerable MapToList(this IEnumerable source) + { + if (source == null) return new List(); + var config = new MapperConfiguration(cfg => cfg.CreateMap()); + var mapper = config.CreateMapper(); + return mapper.Map>(source); + } + + /// + /// 集合映射(自定义) + /// + /// + /// + /// + /// + /// + public static IEnumerable MapToList(this IEnumerable source, Profile profile) + { + if (source == null) return new List(); + + var config = new MapperConfiguration(cfg => cfg.AddProfile(profile)); + var mapper = config.CreateMapper(); + return mapper.Map>(source); + } + } +} diff --git a/yuhong_plc/zzz.Common/Helper/Console/ConsoleHelper.cs b/yuhong_plc/zzz.Common/Helper/Console/ConsoleHelper.cs new file mode 100644 index 0000000..6dcae41 --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/Console/ConsoleHelper.cs @@ -0,0 +1,53 @@ +using System; + +namespace zzz.Common +{ + public static class ConsoleHelper + { + private static readonly object _objLock = new(); + + /// + /// 在控制台输出 + /// + /// 文本 + /// 前颜色 + public static void WriteColorLine(string str, ConsoleColor color) + { + lock (_objLock) + { + ConsoleColor currentForeColor = Console.ForegroundColor; + Console.ForegroundColor = color; + Console.WriteLine(str); + Console.ForegroundColor = currentForeColor; + } + } + + /// + /// 打印错误信息 + /// + /// 待打印的字符串 + /// 想要打印的颜色 + public static void WriteErrorLine(this string str, ConsoleColor color = ConsoleColor.Red)=> WriteColorLine(str, color); + + /// + /// 打印警告信息 + /// + /// 待打印的字符串 + /// 想要打印的颜色 + public static void WriteWarningLine(this string str, ConsoleColor color = ConsoleColor.Yellow)=> WriteColorLine(str, color); + + /// + /// 打印正常信息 + /// + /// 待打印的字符串 + /// 想要打印的颜色 + public static void WriteInfoLine(this string str, ConsoleColor color = ConsoleColor.White)=> WriteColorLine(str, color); + + /// + /// 打印成功的信息 + /// + /// 待打印的字符串 + /// 想要打印的颜色 + public static void WriteSuccessLine(this string str, ConsoleColor color = ConsoleColor.Green)=> WriteColorLine(str, color); + } +} diff --git a/yuhong_plc/zzz.Common/Helper/Console/Table/ColumnShowFormat.cs b/yuhong_plc/zzz.Common/Helper/Console/Table/ColumnShowFormat.cs new file mode 100644 index 0000000..0407025 --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/Console/Table/ColumnShowFormat.cs @@ -0,0 +1,39 @@ +namespace System +{ + /// + /// 列显示格式信息 + /// + public class ColumnShowFormat + { + public ColumnShowFormat(int index, int strLength, Alignment alignment) + { + Index = index; + StrLength = strLength; + Alignment = alignment; + } + + /// + /// 索引,第几列数据 + /// + public int Index { get; set; } + + /// + /// 对其方式 + /// + public Alignment Alignment { get; set; } + + /// + /// 一列字符串长度 + /// + public int StrLength { get; set; } + } + + /// + /// 对其方式 + /// + public enum Alignment + { + Left, + Right + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/Helper/Console/Table/ConsoleTable.cs b/yuhong_plc/zzz.Common/Helper/Console/Table/ConsoleTable.cs new file mode 100644 index 0000000..d8e0d33 --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/Console/Table/ConsoleTable.cs @@ -0,0 +1,330 @@ +using zzz.Common; +using Newtonsoft.Json.Linq; +using Newtonsoft.Json; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace System +{ + public class ConsoleTable + { + #region 属性 + + /// + /// 表格头部字符串 + /// + public string TitleString { get; set; } + + /// + /// 表格的列 + /// + public IList Columns + { + get + { + if (_columns == null) _columns = new List(); + return _columns; + } + set + { + _columns = value; + _finalColumnWides = new List(); + } + } + + /// + /// 行 + /// + public List Rows { get; set; } = new List(); + + /// + /// 列宽 + /// + public List ColumnWides { get; set; } = new List(); + + /// + /// 空白字符数量 + /// + public int ColumnBlankNum { get; set; } = 4; + + /// + /// 对其方式 + /// + public Alignment Alignment { get; set; } = Alignment.Left; + + /// + /// 是否显示行数 + /// + public bool EnableCount { get; set; } = false; + + /// + /// 表格显示样式 + /// 每次设置样子后就会重置 StyleInfo + /// + public TableStyle TableStyle + { + get + { + return _tableStyle; + } + set + { + if (_tableStyle == value) return; + _tableStyle = value; + _formatInfo = null; + } + } + + #endregion 属性 + + #region 私有信息 + private IList _columns; + private TableStyle _tableStyle; + private StyleInfo _formatInfo; + private List _columnShowFormats = new List(); + private List _finalColumnWides = new List(); + + /// + /// 通过 Format 获得到表格显示样式 + /// + private StyleInfo FormatInfo + { + get + { + if (_formatInfo == null) + _formatInfo = _tableStyle.GetFormatInfo();//得到样式信息 + return _formatInfo; + } + set + { + _formatInfo = value; + } + } + + /// + /// 每一列的宽度 + /// + private List FinalColumnWides + { + get + { + if (_finalColumnWides is null || _finalColumnWides.Count < 1) + { + // 得到每一列最大的宽度 + List _columnWides = Columns.GetColumnWides(Rows); + // 替换用户输入长度 + ColumnWides ??= new List(); + for (int i = 0; i < ColumnWides.Count; i++) _columnWides[i] = ColumnWides[i]; + _finalColumnWides = _columnWides; + } + return _finalColumnWides; + } + } + + /// + /// 每一列显示的基本信息 + /// + private List ColumnShowFormats + { + get + { + if (_columnShowFormats.Count == 0) + { + for (int i = 0; i < Columns.Count; i++) _columnShowFormats.Add(new ColumnShowFormat(i, FinalColumnWides[i], Alignment)); + } + return _columnShowFormats; + } + } + + #endregion 私有信息 + + #region 配置数据 + + /// + /// 添加列 + /// + /// 列明 + /// 列的宽 + /// + public ConsoleTable AddColumn(string columnName, int columnWide = 0) + { + Columns.Add(columnName); + columnWide = columnWide == 0 ? columnName.Length : columnWide; + _finalColumnWides.Add(columnWide); + return this; + } + + /// + /// 添加行 + /// + /// 该行数据 + /// + public ConsoleTable AddRow(params string[] values) + { + _ = values ?? throw new ArgumentNullException(nameof(values)); + + Rows.Add(values); + return this; + } + + /// + /// 加载 List 对象的数据 + /// + /// + /// + /// + public static ConsoleTable From(IEnumerable values) + { + ConsoleTable table = new(); + + List columns = GetColumns().Where(c => !string.IsNullOrWhiteSpace(c)).ToList(); + columns.ForEach(c => + { + table.AddColumn(c); + }); + + values.ToList().ForEach(value => + { + table.AddRow(columns.Select(c => GetColumnValue(value, c)).ToArray()); + }); + + return table; + } + + #endregion 配置数据 + + /// + /// 获取表格字符串 + /// + /// + public override string ToString() + { + StringBuilder builder = new(); + + builder.AppendLine(GetHeader()); + builder.AppendLine(GetExistData()); + builder.AppendLine(GetEnd()); + + return builder.ToString(); + } + + /// + /// 绘制表格 + /// + /// 样式 + /// title颜色 + public void Writer(ConsoleColor color = ConsoleColor.White) + { + ConsoleHelper.WriteColorLine(GetHeader(), color); + ConsoleHelper.WriteInfoLine(GetExistData()); + ConsoleHelper.WriteColorLine(GetEnd(), color); + } + + #region 帮助方法 + + /// + /// 获取完成头 + /// + /// + public string GetHeader() + { + // 创建顶部和底部分隔线 + string top_DownDividerdivider = FinalColumnWides.GetTopAndDwon(FormatInfo.AngleStr, ColumnBlankNum); + // 创建分隔线 + string divider = FinalColumnWides.GetDivider(FormatInfo.AngleStr, ColumnBlankNum); + // 获取标题字符串 + string tilte = FinalColumnWides.GetTitleStr(TitleString, ColumnBlankNum, FormatInfo.DelimiterStr); + // 得到头部字符串 + string headers = ColumnShowFormats.FillFormatTostring(Columns.ToArray(), FormatInfo.DelimiterStr, ColumnBlankNum); + + //绘制表格头 + StringBuilder top = new(); + if (FormatInfo.IsShowTop_Down_DataBorder) top.AppendLine(top_DownDividerdivider); + if (!string.IsNullOrWhiteSpace(tilte)) + { + top.AppendLine(tilte); + top.AppendLine(divider); + } + top.AppendLine(headers); + top.AppendLine(divider); + return top.ToString().Trim(); + } + + /// + /// 获取现有数据 + /// + /// + public string GetExistData() + { + // 创建分隔线 + string divider = FinalColumnWides.GetDivider(FormatInfo.AngleStr, ColumnBlankNum); + // 得到每行数据的字符串 + List rowStrs = Rows.Select(row => ColumnShowFormats.FillFormatTostring(row, FormatInfo.DelimiterStr, ColumnBlankNum)).ToList(); + StringBuilder data = new(); + for (int i = 0; i < rowStrs.Count; i++) + { + if (FormatInfo.IsShowTop_Down_DataBorder && i != 0) data.AppendLine(divider); + data.AppendLine(rowStrs[i]); + } + return data.ToString().Trim(); + } + + /// + /// 获取新行数据 + /// + /// + /// + public string GetNewRow(string[] row) + { + if (row is null) return ""; + + Rows.Add(row); + //内容 + StringBuilder data = new(); + if (Rows.Count > 1) data.AppendLine(FinalColumnWides.GetDivider(FormatInfo.AngleStr, ColumnBlankNum)); + data.AppendLine(ColumnShowFormats.FillFormatTostring(row, FormatInfo.DelimiterStr, ColumnBlankNum)); + return data.ToString().Trim(); + } + + /// + /// 获取底 + /// + /// + public string GetEnd() + { + StringBuilder down = new(); + if (FormatInfo.IsShowTop_Down_DataBorder) down.AppendLine(FinalColumnWides.GetTopAndDwon(FormatInfo.AngleStr, ColumnBlankNum)); + if (EnableCount) down.AppendLine($" Count: {Rows.Count}"); + return down.ToString().Trim(); + } + + /// + /// 获取列名 + /// + /// + /// + private static IEnumerable GetColumns() + { + return typeof(T).GetProperties().Select(x => x.Name).ToArray(); + } + + /// + /// 获取列值 + /// + /// 类型 + /// 数据 + /// 列名 + /// + private static string GetColumnValue(T obj, string column) + { + if (obj == null) return null; + + JObject o = obj as JObject ?? (JObject)JsonConvert.DeserializeObject(JsonConvert.SerializeObject(obj)); + + return o.GetValue(column).ToString(); + } + + #endregion 帮助方法 + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/Helper/Console/Table/DrawTableInfo.cs b/yuhong_plc/zzz.Common/Helper/Console/Table/DrawTableInfo.cs new file mode 100644 index 0000000..850f4ea --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/Console/Table/DrawTableInfo.cs @@ -0,0 +1,35 @@ +using System.Collections.Generic; + +namespace System +{ + /// + /// 绘制表格需要的信息 + /// + public class DrawTableInfo + { + /// + /// 顶部和底部字符串分隔线 + /// + public string Top_DownDivider { get; set; } + + /// + /// 分隔线 + /// + public string Divider { get; set; } + + /// + /// 标题 + /// + public string Title { get; set; } + + /// + /// 头部 + /// + public string Header { get; set; } + + /// + /// 数据 + /// + public List Data { get; set; } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/Helper/Console/Table/TableExtension.cs b/yuhong_plc/zzz.Common/Helper/Console/Table/TableExtension.cs new file mode 100644 index 0000000..63963e6 --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/Console/Table/TableExtension.cs @@ -0,0 +1,151 @@ +using zzz; +using System.Collections.Generic; +using System.Linq; +using System.Text.RegularExpressions; + +namespace System +{ + public static class TableExtension + { + /// + /// 按照现有数据计算每列最大宽度 + /// + /// 列信息 + /// 现有行数据 + /// 每一列显示宽度 + public static List GetColumnWides(this IList columns, IList rows) + { + List columnLengths = columns.Select((t, i) => + rows.Select(x => x[i])//得到所有行当前列的数据 + .Union(new[] { columns[i] })//连接当前列标题 + .Where(x => x != null) + .Select(x => x.ObjToString().FullHalfLength())//得到该列每一行的字符串长度(计算中文占用两格) + .Max())//到该列中长度最大的以列 + .ToList(); + return columnLengths; + } + + /// + /// 将填充格式转成字符串 + /// 表头和数据行会用到 + /// + /// 一行的显示格式信息 + /// 一行要显示的数据 + /// 间隔符 + /// 每列留白数 + /// + public static string FillFormatTostring(this List format, string[] objs, string delimiterStr, int columnBlankNum) + { + string formatStr = string.Empty; + format.ForEach(f => + { + string ali = f.Alignment == Alignment.Right ? "" : "-"; + string val = objs[f.Index].ObjToString(); + if (val.Length > f.StrLength) + { + //val = val[0..f.StrLength]; + //val = val[0..(val.Length - val.GetChineseText().Length)]; + objs[f.Index] = "...";//标记超出长度 + } + + if (!string.IsNullOrWhiteSpace(formatStr)) formatStr += $"{"".PadLeft(columnBlankNum, ' ')}"; + int alignmentStrLength = Math.Max(f.StrLength - objs[f.Index].ObjToString().GetChineseText().Length, 0);//对其填充空格数量 + formatStr += $"{delimiterStr}{"".PadLeft(columnBlankNum, ' ')}{{{f.Index},{ali}{alignmentStrLength}}}"; + }); + formatStr += $"{"".PadLeft(columnBlankNum, ' ')}{delimiterStr}"; + return string.Format(formatStr, objs); + } + + /// + /// 获取title 字符串 + /// + /// > + /// 标题字符串信息 + /// 列两端留白数 + /// 每列之间分割字符串 + /// + public static string GetTitleStr(this List columnWides, string titleStr, int columnBlankNum, string delimiterStr) + { + if (string.IsNullOrWhiteSpace(titleStr)) return ""; + //一行的宽度 + int rowWide = columnWides.Sum() + columnWides.Count * 2 * columnBlankNum + columnWides.Count + 1; + int blankNum = (rowWide - titleStr.FullHalfLength()) / 2 - 1; + string tilte = $"{delimiterStr}{"".PadLeft(blankNum, ' ')}{titleStr}{"".PadLeft(blankNum, ' ')}{delimiterStr}"; + if (tilte.FullHalfLength() != rowWide) tilte = tilte.Replace($" {delimiterStr}", $" {delimiterStr}"); + return tilte; + } + + /// + /// 获取每行之间的分割行字符串 + /// + /// 列宽信息 + /// 每列之间分割字符串 + /// 列两端留白数 + /// + public static string GetDivider(this List columnWides, string angleStr, int columnBlankNum) + { + string divider = ""; + columnWides.ForEach(i => + { + divider += $"{angleStr}{"".PadRight(i + columnBlankNum * 2, '-')}"; + }); + divider += angleStr; + return divider; + } + + /// + /// 获取头部和底部字符串 + /// + /// 列宽信息 + /// 每列之间分割字符串 + /// 列两端留白数 + /// + public static string GetTopAndDwon(this List columnWides, string angleStr, int columnBlankNum) + { + string top_DownDividerdivider = ""; + columnWides.ForEach(i => + { + if (string.IsNullOrWhiteSpace(top_DownDividerdivider)) top_DownDividerdivider += $"{angleStr}{"".PadRight(i + columnBlankNum * 2, '-')}"; + else top_DownDividerdivider += $"{"".PadRight(i + columnBlankNum * 2 + 1, '-')}"; + }); + top_DownDividerdivider += angleStr; + return top_DownDividerdivider; + } + + /// + /// 获取表格显示样式 + /// + /// + /// + public static StyleInfo GetFormatInfo(this TableStyle format) + { + return format switch + { + TableStyle.Default => new StyleInfo("|", true, "-"), + TableStyle.MarkDown => new StyleInfo("|", false, "|"), + TableStyle.Alternative => new StyleInfo("|", true, "+"), + TableStyle.Minimal => new StyleInfo("", false, "-"), + _ => new StyleInfo(), + }; + } + + /// + /// 获取文本长度,区分全角半角 + /// 全角算两个字符 + /// + /// + public static int FullHalfLength(this string text) + { + return Regex.Replace(text, "[^\x00-\xff]", "**").Length; + //可使用以下方法,不过要看在不同编码中字节数 + //return Encoding.Default.GetByteCount(text); + } + + /// + /// 获取中文文本 + /// + /// + /// + public static string GetChineseText(this string text) => Regex.Replace(text, "[\x00-\xff]", ""); + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/Helper/Console/Table/TableStyle.cs b/yuhong_plc/zzz.Common/Helper/Console/Table/TableStyle.cs new file mode 100644 index 0000000..20a662d --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/Console/Table/TableStyle.cs @@ -0,0 +1,57 @@ +namespace System +{ + /// + /// 表格显示样式 + /// + public enum TableStyle + { + /// + /// 默认格式的表格 + /// + Default = 0, + + /// + /// Markdwon格式的表格 + /// + MarkDown = 1, + + /// + /// 交替格式的表格 + /// + Alternative = 2, + + /// + /// 最简格式的表格 + /// + Minimal = 3 + } + + /// + /// 表格显示样式信息 + /// 通过 Format 获取到的 + /// + public class StyleInfo + { + public StyleInfo(string delimiterStr = "|", bool isShowTop_Down_DataBorder = true, string angleStr = "-") + { + DelimiterStr = delimiterStr; + IsShowTop_Down_DataBorder = isShowTop_Down_DataBorder; + AngleStr = angleStr; + } + + /// + /// 每一列数据之间的间隔字符串 + /// + public string DelimiterStr { get; set; } + + /// + /// 是否显示顶部,底部,和每一行数据之间的横向边框 + /// + public bool IsShowTop_Down_DataBorder { get; set; } + + /// + /// 边角字符串 + /// + public string AngleStr { get; set; } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/Helper/ConvertUtil2.cs b/yuhong_plc/zzz.Common/Helper/ConvertUtil2.cs new file mode 100644 index 0000000..6b61fd8 --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/ConvertUtil2.cs @@ -0,0 +1,155 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Common.Helper +{ + /// + /// 泛型转化帮助类 + /// + public static class ConvertUtil2 + { + + /// + /// 泛型数据类型转换 + /// + /// 自定义数据类型 + /// 传入需要转换的值 + /// 默认值 + /// + public static T ConvertType(object value) + { + try + { + return (T)ConvertToT(value); + } + catch + { + return default(T); + } + } + /// + /// 转换数据类型 + /// + /// 自定义数据类型 + /// 传入需要转换的值 + /// 默认值 + /// + private static object ConvertToT(object myvalue) + { + TypeCode typeCode = System.Type.GetTypeCode(typeof(T)); + if (myvalue != null) + { + string value = Convert.ToString(myvalue); + switch (typeCode) + { + case TypeCode.Boolean: + bool flag = false; + if (bool.TryParse(value, out flag)) + { + return flag; + } + break; + case TypeCode.Char: + char c; + if (Char.TryParse(value, out c)) + { + return c; + } + break; + case TypeCode.SByte: + sbyte s = 0; + if (SByte.TryParse(value, out s)) + { + return s; + } + break; + case TypeCode.Byte: + byte b = 0; + if (Byte.TryParse(value, out b)) + { + return b; + } + break; + case TypeCode.Int16: + Int16 i16 = 0; + if (Int16.TryParse(value, out i16)) + { + return i16; + } + break; + case TypeCode.UInt16: + UInt16 ui16 = 0; + if (UInt16.TryParse(value, out ui16)) + return ui16; + break; + case TypeCode.Int32: + int i = 0; + if (Int32.TryParse(value, out i)) + { + return i; + } + break; + case TypeCode.UInt32: + UInt32 ui32 = 0; + if (UInt32.TryParse(value, out ui32)) + { + return ui32; + } + break; + case TypeCode.Int64: + Int64 i64 = 0; + if (Int64.TryParse(value, out i64)) + { + return i64; + } + break; + case TypeCode.UInt64: + UInt64 ui64 = 0; + if (UInt64.TryParse(value, out ui64)) + return ui64; + break; + case TypeCode.Single: + Single single = 0; + if (Single.TryParse(value, out single)) + { + return single; + } + break; + case TypeCode.Double: + double d = 0; + if (Double.TryParse(value, out d)) + { + return d; + } + break; + case TypeCode.Decimal: + decimal de = 0; + if (Decimal.TryParse(value, out de)) + { + return de; + } + break; + case TypeCode.DateTime: + DateTime dt; + if (DateTime.TryParse(value, out dt)) + { + return dt; + } + break; + case TypeCode.String: + if (!string.IsNullOrEmpty(value)) + { + return value.ToString(); + } + break; + } + } + return null; + } + + + } +} diff --git a/yuhong_plc/zzz.Common/Helper/FileHelper.cs b/yuhong_plc/zzz.Common/Helper/FileHelper.cs new file mode 100644 index 0000000..ab9276e --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/FileHelper.cs @@ -0,0 +1,395 @@ +using System; +using System.IO; +using System.Linq; +using System.Text; + +namespace zzz.Common.Helper +{ + public class FileHelper : IDisposable + { + + private bool _alreadyDispose = false; + + #region 构造函数 + public FileHelper() + { + // + // TODO: 在此处添加构造函数逻辑 + // + } + ~FileHelper() + { + Dispose(); ; + } + + protected virtual void Dispose(bool isDisposing) + { + if (_alreadyDispose) return; + _alreadyDispose = true; + } + #endregion + + #region IDisposable 成员 + + public void Dispose() + { + Dispose(true); + GC.SuppressFinalize(this); + } + + #endregion + + #region 取得文件后缀名 + /**************************************** + * 函数名称:GetPostfixStr + * 功能说明:取得文件后缀名 + * 参 数:filename:文件名称 + * 调用示列: + * string filename = "aaa.aspx"; + * string s = EC.FileObj.GetPostfixStr(filename); + *****************************************/ + /// + /// 取后缀名 + /// + /// 文件名 + /// .gif|.html格式 + public static string GetPostfixStr(string filename) + { + int start = filename.LastIndexOf("."); + int length = filename.Length; + string postfix = filename.Substring(start, length - start); + return postfix; + } + #endregion + + #region 根据文件大小获取指定前缀的可用文件名 + /// + /// 根据文件大小获取指定前缀的可用文件名 + /// + /// 文件夹 + /// 文件前缀 + /// 文件大小(1m) + /// 文件后缀(.log) + /// 可用文件名 + public static string GetAvailableFileWithPrefixOrderSize(string folderPath, string prefix, int size = 1 * 1024 * 1024, string ext = ".log") + { + var allFiles = new DirectoryInfo(folderPath); + var selectFiles = allFiles.GetFiles().Where(fi => fi.Name.ToLower().Contains(prefix.ToLower()) && fi.Extension.ToLower() == ext.ToLower() && fi.Length < size).OrderByDescending(d=>d.Name).ToList(); + + if (selectFiles.Count > 0) + { + return selectFiles.FirstOrDefault().FullName; + } + + return Path.Combine(folderPath, $@"{prefix}_{DateTime.Now.DateToTimeStamp()}.log"); + } + public static string GetAvailableFileNameWithPrefixOrderSize(string _contentRoot, string prefix, int size = 1 * 1024 * 1024, string ext = ".log") + { + var folderPath = Path.Combine(_contentRoot, "Log"); + if (!Directory.Exists(folderPath)) + { + Directory.CreateDirectory(folderPath); + } + + var allFiles = new DirectoryInfo(folderPath); + var selectFiles = allFiles.GetFiles().Where(fi => fi.Name.ToLower().Contains(prefix.ToLower()) && fi.Extension.ToLower() == ext.ToLower() && fi.Length < size).OrderByDescending(d => d.Name).ToList(); + + if (selectFiles.Count > 0) + { + return selectFiles.FirstOrDefault().Name.Replace(".log",""); + } + + return $@"{prefix}_{DateTime.Now.DateToTimeStamp()}"; + } + #endregion + + #region 写文件 + /**************************************** + * 函数名称:WriteFile + * 功能说明:写文件,会覆盖掉以前的内容 + * 参 数:Path:文件路径,Strings:文本内容 + * 调用示列: + * string Path = Server.MapPath("Default2.aspx"); + * string Strings = "这是我写的内容啊"; + * EC.FileObj.WriteFile(Path,Strings); + *****************************************/ + /// + /// 写文件 + /// + /// 文件路径 + /// 文件内容 + public static void WriteFile(string Path, string Strings) + { + if (!File.Exists(Path)) + { + FileStream f = File.Create(Path); + f.Close(); + } + StreamWriter f2 = new StreamWriter(Path, false, System.Text.Encoding.GetEncoding("gb2312")); + f2.Write(Strings); + f2.Close(); + f2.Dispose(); + } + + /// + /// 写文件 + /// + /// 文件路径 + /// 文件内容 + /// 编码格式 + public static void WriteFile(string Path, string Strings, Encoding encode) + { + if (!File.Exists(Path)) + { + FileStream f = File.Create(Path); + f.Close(); + } + StreamWriter f2 = new StreamWriter(Path, false, encode); + f2.Write(Strings); + f2.Close(); + f2.Dispose(); + } + #endregion + + #region 读文件 + /**************************************** + * 函数名称:ReadFile + * 功能说明:读取文本内容 + * 参 数:Path:文件路径 + * 调用示列: + * string Path = Server.MapPath("Default2.aspx"); + * string s = EC.FileObj.ReadFile(Path); + *****************************************/ + /// + /// 读文件 + /// + /// 文件路径 + /// + public static string ReadFile(string Path) + { + string s = ""; + if (!File.Exists(Path)) + s = "不存在相应的目录"; + else + { + StreamReader f2 = new StreamReader(Path, System.Text.Encoding.GetEncoding("gb2312")); + s = f2.ReadToEnd(); + f2.Close(); + f2.Dispose(); + } + + return s; + } + + /// + /// 读文件 + /// + /// 文件路径 + /// 编码格式 + /// + public static string ReadFile(string Path, Encoding encode) + { + string s = ""; + if (!File.Exists(Path)) + s = "不存在相应的目录"; + else + { + StreamReader f2 = new StreamReader(Path, encode); + s = f2.ReadToEnd(); + f2.Close(); + f2.Dispose(); + } + + return s; + } + #endregion + + #region 追加文件 + /**************************************** + * 函数名称:FileAdd + * 功能说明:追加文件内容 + * 参 数:Path:文件路径,strings:内容 + * 调用示列: + * string Path = Server.MapPath("Default2.aspx"); + * string Strings = "新追加内容"; + * EC.FileObj.FileAdd(Path, Strings); + *****************************************/ + /// + /// 追加文件 + /// + /// 文件路径 + /// 内容 + public static void FileAdd(string Path, string strings) + { + StreamWriter sw = File.AppendText(Path); + sw.Write(strings); + sw.Flush(); + sw.Close(); + } + #endregion + + #region 拷贝文件 + /**************************************** + * 函数名称:FileCoppy + * 功能说明:拷贝文件 + * 参 数:OrignFile:原始文件,NewFile:新文件路径 + * 调用示列: + * string orignFile = Server.MapPath("Default2.aspx"); + * string NewFile = Server.MapPath("Default3.aspx"); + * EC.FileObj.FileCoppy(OrignFile, NewFile); + *****************************************/ + /// + /// 拷贝文件 + /// + /// 原始文件 + /// 新文件路径 + public static void FileCoppy(string orignFile, string NewFile) + { + File.Copy(orignFile, NewFile, true); + } + + #endregion + + #region 删除文件 + /**************************************** + * 函数名称:FileDel + * 功能说明:删除文件 + * 参 数:Path:文件路径 + * 调用示列: + * string Path = Server.MapPath("Default3.aspx"); + * EC.FileObj.FileDel(Path); + *****************************************/ + /// + /// 删除文件 + /// + /// 路径 + public static void FileDel(string Path) + { + File.Delete(Path); + } + #endregion + + #region 移动文件 + /**************************************** + * 函数名称:FileMove + * 功能说明:移动文件 + * 参 数:OrignFile:原始路径,NewFile:新文件路径 + * 调用示列: + * string orignFile = Server.MapPath("../说明.txt"); + * string NewFile = Server.MapPath("http://www.cnblogs.com/说明.txt"); + * EC.FileObj.FileMove(OrignFile, NewFile); + *****************************************/ + /// + /// 移动文件 + /// + /// 原始路径 + /// 新路径 + public static void FileMove(string orignFile, string NewFile) + { + File.Move(orignFile, NewFile); + } + #endregion + + #region 在当前目录下创建目录 + /**************************************** + * 函数名称:FolderCreate + * 功能说明:在当前目录下创建目录 + * 参 数:OrignFolder:当前目录,NewFloder:新目录 + * 调用示列: + * string orignFolder = Server.MapPath("test/"); + * string NewFloder = "new"; + * EC.FileObj.FolderCreate(OrignFolder, NewFloder); + *****************************************/ + /// + /// 在当前目录下创建目录 + /// + /// 当前目录 + /// 新目录 + public static void FolderCreate(string orignFolder, string NewFloder) + { + Directory.SetCurrentDirectory(orignFolder); + Directory.CreateDirectory(NewFloder); + } + #endregion + + #region 递归删除文件夹目录及文件 + /**************************************** + * 函数名称:DeleteFolder + * 功能说明:递归删除文件夹目录及文件 + * 参 数:dir:文件夹路径 + * 调用示列: + * string dir = Server.MapPath("test/"); + * EC.FileObj.DeleteFolder(dir); + *****************************************/ + /// + /// 递归删除文件夹目录及文件 + /// + /// + /// + public static void DeleteFolder(string dir) + { + if (Directory.Exists(dir)) //如果存在这个文件夹删除之 + { + foreach (string d in Directory.GetFileSystemEntries(dir)) + { + if (File.Exists(d)) + File.Delete(d); //直接删除其中的文件 + else + DeleteFolder(d); //递归删除子文件夹 + } + Directory.Delete(dir); //删除已空文件夹 + } + + } + #endregion + + #region 将指定文件夹下面的所有内容copy到目标文件夹下面 果目标文件夹为只读属性就会报错。 + /**************************************** + * 函数名称:CopyDir + * 功能说明:将指定文件夹下面的所有内容copy到目标文件夹下面 果目标文件夹为只读属性就会报错。 + * 参 数:srcPath:原始路径,aimPath:目标文件夹 + * 调用示列: + * string srcPath = Server.MapPath("test/"); + * string aimPath = Server.MapPath("test1/"); + * EC.FileObj.CopyDir(srcPath,aimPath); + *****************************************/ + /// + /// 指定文件夹下面的所有内容copy到目标文件夹下面 + /// + /// 原始路径 + /// 目标文件夹 + public static void CopyDir(string srcPath, string aimPath) + { + try + { + // 检查目标目录是否以目录分割字符结束如果不是则添加之 + if (aimPath[aimPath.Length - 1] != Path.DirectorySeparatorChar) + aimPath += Path.DirectorySeparatorChar; + // 判断目标目录是否存在如果不存在则新建之 + if (!Directory.Exists(aimPath)) + Directory.CreateDirectory(aimPath); + // 得到源目录的文件列表,该里面是包含文件以及目录路径的一个数组 + //如果你指向copy目标文件下面的文件而不包含目录请使用下面的方法 + //string[] fileList = Directory.GetFiles(srcPath); + string[] fileList = Directory.GetFileSystemEntries(srcPath); + //遍历所有的文件和目录 + foreach (string file in fileList) + { + //先当作目录处理如果存在这个目录就递归Copy该目录下面的文件 + + if (Directory.Exists(file)) + CopyDir(file, aimPath + Path.GetFileName(file)); + //否则直接Copy文件 + else + File.Copy(file, aimPath + Path.GetFileName(file), true); + } + + } + catch (Exception ee) + { + throw new Exception(ee.ToString()); + } + } + #endregion + } +} diff --git a/yuhong_plc/zzz.Common/Helper/JsonHelper.cs b/yuhong_plc/zzz.Common/Helper/JsonHelper.cs new file mode 100644 index 0000000..f862c53 --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/JsonHelper.cs @@ -0,0 +1,532 @@ +using System; +using System.Collections.Generic; + + +namespace zzz.Common.Helper +{ + public class JsonHelper + { + /// + /// 对象序列化 + /// + /// 对象 + /// 是否使用textjson + /// 返回json字符串 + public static string ObjToJson(object obj, bool isUseTextJson = false) + { + if (isUseTextJson) + { + return System.Text.Json.JsonSerializer.Serialize(obj); + } + else + { + return Newtonsoft.Json.JsonConvert.SerializeObject(obj); + } + } + /// + /// json反序列化obj + /// + /// 反序列类型 + /// json + /// 是否使用textjson + /// 返回对象 + public static T JsonToObj(string strJson, bool isUseTextJson = false) + { + if (isUseTextJson) + { + return System.Text.Json.JsonSerializer.Deserialize(strJson); + } + else + { + return Newtonsoft.Json.JsonConvert.DeserializeObject(strJson); + } + } + /// + /// 转换对象为JSON格式数据 + /// + /// + /// 对象 + /// 字符格式的JSON数据 + public static string GetJSON(object obj) + { + string result = String.Empty; + try + { + System.Runtime.Serialization.Json.DataContractJsonSerializer serializer = + new System.Runtime.Serialization.Json.DataContractJsonSerializer(typeof(T)); + using (System.IO.MemoryStream ms = new System.IO.MemoryStream()) + { + serializer.WriteObject(ms, obj); + result = System.Text.Encoding.UTF8.GetString(ms.ToArray()); + } + } + catch (Exception) + { + throw; + } + return result; + } + /// + /// 转换List的数据为JSON格式 + /// + /// + /// 列表值 + /// JSON格式数据 + public string JSON(List vals) + { + System.Text.StringBuilder st = new System.Text.StringBuilder(); + try + { + System.Runtime.Serialization.Json.DataContractJsonSerializer s = new System.Runtime.Serialization.Json.DataContractJsonSerializer(typeof(T)); + + foreach (T city in vals) + { + using (System.IO.MemoryStream ms = new System.IO.MemoryStream()) + { + s.WriteObject(ms, city); + st.Append(System.Text.Encoding.UTF8.GetString(ms.ToArray())); + } + } + } + catch (Exception) + { + } + + return st.ToString(); + } + /// + /// JSON格式字符转换为T类型的对象 + /// + /// + /// + /// + public static T ParseFormByJson(string jsonStr) + { + T obj = Activator.CreateInstance(); + using (System.IO.MemoryStream ms = + new System.IO.MemoryStream(System.Text.Encoding.UTF8.GetBytes(jsonStr))) + { + System.Runtime.Serialization.Json.DataContractJsonSerializer serializer = + new System.Runtime.Serialization.Json.DataContractJsonSerializer(typeof(T)); + return (T)serializer.ReadObject(ms); + } + } + + public string JSON1(List vals) + { + System.Text.StringBuilder st = new System.Text.StringBuilder(); + try + { + System.Runtime.Serialization.Json.DataContractJsonSerializer s = new System.Runtime.Serialization.Json.DataContractJsonSerializer(typeof(SendData)); + + foreach (SendData city in vals) + { + using (System.IO.MemoryStream ms = new System.IO.MemoryStream()) + { + s.WriteObject(ms, city); + st.Append(System.Text.Encoding.UTF8.GetString(ms.ToArray())); + } + } + } + catch (Exception) + { + } + + return st.ToString(); + } + + private static bool IsJsonStart(ref string json) + { + if (!string.IsNullOrEmpty(json)) + { + json = json.Trim('\r', '\n', ' '); + if (json.Length > 1) + { + char s = json[0]; + char e = json[json.Length - 1]; + return (s == '{' && e == '}') || (s == '[' && e == ']'); + } + } + return false; + } + public static bool IsJson(string json) + { + int errIndex; + return IsJson(json, out errIndex); + } + public static bool IsJson(string json, out int errIndex) + { + errIndex = 0; + if (IsJsonStart(ref json)) + { + CharState cs = new CharState(); + char c; + for (int i = 0; i < json.Length; i++) + { + c = json[i]; + if (SetCharState(c, ref cs) && cs.childrenStart)//设置关键符号状态。 + { + string item = json.Substring(i); + int err; + int length = GetValueLength(item, true, out err); + cs.childrenStart = false; + if (err > 0) + { + errIndex = i + err; + return false; + } + i = i + length - 1; + } + if (cs.isError) + { + errIndex = i; + return false; + } + } + + return !cs.arrayStart && !cs.jsonStart; + } + return false; + } + + /// + /// 获取值的长度(当Json值嵌套以"{"或"["开头时) + /// + private static int GetValueLength(string json, bool breakOnErr, out int errIndex) + { + errIndex = 0; + int len = 0; + if (!string.IsNullOrEmpty(json)) + { + CharState cs = new CharState(); + char c; + for (int i = 0; i < json.Length; i++) + { + c = json[i]; + if (!SetCharState(c, ref cs))//设置关键符号状态。 + { + if (!cs.jsonStart && !cs.arrayStart)//json结束,又不是数组,则退出。 + { + break; + } + } + else if (cs.childrenStart)//正常字符,值状态下。 + { + int length = GetValueLength(json.Substring(i), breakOnErr, out errIndex);//递归子值,返回一个长度。。。 + cs.childrenStart = false; + cs.valueStart = 0; + //cs.state = 0; + i = i + length - 1; + } + if (breakOnErr && cs.isError) + { + errIndex = i; + return i; + } + if (!cs.jsonStart && !cs.arrayStart)//记录当前结束位置。 + { + len = i + 1;//长度比索引+1 + break; + } + } + } + return len; + } + + /// + /// 设置字符状态(返回true则为关键词,返回false则当为普通字符处理) + /// + private static bool SetCharState(char c, ref CharState cs) + { + cs.CheckIsError(c); + switch (c) + { + case '{'://[{ "[{A}]":[{"[{B}]":3,"m":"C"}]}] + #region 大括号 + if (cs.keyStart <= 0 && cs.valueStart <= 0) + { + cs.keyStart = 0; + cs.valueStart = 0; + if (cs.jsonStart && cs.state == 1) + { + cs.childrenStart = true; + } + else + { + cs.state = 0; + } + cs.jsonStart = true;//开始。 + return true; + } + #endregion + break; + case '}': + #region 大括号结束 + if (cs.keyStart <= 0 && cs.valueStart < 2 && cs.jsonStart) + { + cs.jsonStart = false;//正常结束。 + cs.state = 0; + cs.keyStart = 0; + cs.valueStart = 0; + cs.setDicValue = true; + return true; + } + // cs.isError = !cs.jsonStart && cs.state == 0; + #endregion + break; + case '[': + #region 中括号开始 + if (!cs.jsonStart) + { + cs.arrayStart = true; + return true; + } + else if (cs.jsonStart && cs.state == 1) + { + cs.childrenStart = true; + return true; + } + #endregion + break; + case ']': + #region 中括号结束 + if (cs.arrayStart && !cs.jsonStart && cs.keyStart <= 2 && cs.valueStart <= 0)//[{},333]//这样结束。 + { + cs.keyStart = 0; + cs.valueStart = 0; + cs.arrayStart = false; + return true; + } + #endregion + break; + case '"': + case '\'': + #region 引号 + if (cs.jsonStart || cs.arrayStart) + { + if (cs.state == 0)//key阶段,有可能是数组["aa",{}] + { + if (cs.keyStart <= 0) + { + cs.keyStart = (c == '"' ? 3 : 2); + return true; + } + else if ((cs.keyStart == 2 && c == '\'') || (cs.keyStart == 3 && c == '"')) + { + if (!cs.escapeChar) + { + cs.keyStart = -1; + return true; + } + else + { + cs.escapeChar = false; + } + } + } + else if (cs.state == 1 && cs.jsonStart)//值阶段必须是Json开始了。 + { + if (cs.valueStart <= 0) + { + cs.valueStart = (c == '"' ? 3 : 2); + return true; + } + else if ((cs.valueStart == 2 && c == '\'') || (cs.valueStart == 3 && c == '"')) + { + if (!cs.escapeChar) + { + cs.valueStart = -1; + return true; + } + else + { + cs.escapeChar = false; + } + } + + } + } + #endregion + break; + case ':': + #region 冒号 + if (cs.jsonStart && cs.keyStart < 2 && cs.valueStart < 2 && cs.state == 0) + { + if (cs.keyStart == 1) + { + cs.keyStart = -1; + } + cs.state = 1; + return true; + } + // cs.isError = !cs.jsonStart || (cs.keyStart < 2 && cs.valueStart < 2 && cs.state == 1); + #endregion + break; + case ',': + #region 逗号 //["aa",{aa:12,}] + + if (cs.jsonStart) + { + if (cs.keyStart < 2 && cs.valueStart < 2 && cs.state == 1) + { + cs.state = 0; + cs.keyStart = 0; + cs.valueStart = 0; + //if (cs.valueStart == 1) + //{ + // cs.valueStart = 0; + //} + cs.setDicValue = true; + return true; + } + } + else if (cs.arrayStart && cs.keyStart <= 2) + { + cs.keyStart = 0; + //if (cs.keyStart == 1) + //{ + // cs.keyStart = -1; + //} + return true; + } + #endregion + break; + case ' ': + case '\r': + case '\n'://[ "a",\r\n{} ] + case '\0': + case '\t': + if (cs.keyStart <= 0 && cs.valueStart <= 0) //cs.jsonStart && + { + return true;//跳过空格。 + } + break; + default: //值开头。。 + if (c == '\\') //转义符号 + { + if (cs.escapeChar) + { + cs.escapeChar = false; + } + else + { + cs.escapeChar = true; + return true; + } + } + else + { + cs.escapeChar = false; + } + if (cs.jsonStart || cs.arrayStart) // Json 或数组开始了。 + { + if (cs.keyStart <= 0 && cs.state == 0) + { + cs.keyStart = 1;//无引号的 + } + else if (cs.valueStart <= 0 && cs.state == 1 && cs.jsonStart)//只有Json开始才有值。 + { + cs.valueStart = 1;//无引号的 + } + } + break; + } + return false; + } + } + /// + /// 字符状态 + /// + public class CharState + { + internal bool jsonStart = false;//以 "{"开始了... + internal bool setDicValue = false;// 可以设置字典值了。 + internal bool escapeChar = false;//以"\"转义符号开始了 + /// + /// 数组开始【仅第一开头才算】,值嵌套的以【childrenStart】来标识。 + /// + internal bool arrayStart = false;//以"[" 符号开始了 + internal bool childrenStart = false;//子级嵌套开始了。 + /// + /// 【0 初始状态,或 遇到“,”逗号】;【1 遇到“:”冒号】 + /// + internal int state = 0; + + /// + /// 【-1 取值结束】【0 未开始】【1 无引号开始】【2 单引号开始】【3 双引号开始】 + /// + internal int keyStart = 0; + /// + /// 【-1 取值结束】【0 未开始】【1 无引号开始】【2 单引号开始】【3 双引号开始】 + /// + internal int valueStart = 0; + internal bool isError = false;//是否语法错误。 + + internal void CheckIsError(char c)//只当成一级处理(因为GetLength会递归到每一个子项处理) + { + if (keyStart > 1 || valueStart > 1) + { + return; + } + //示例 ["aa",{"bbbb":123,"fff","ddd"}] + switch (c) + { + case '{'://[{ "[{A}]":[{"[{B}]":3,"m":"C"}]}] + isError = jsonStart && state == 0;//重复开始错误 同时不是值处理。 + break; + case '}': + isError = !jsonStart || (keyStart != 0 && state == 0);//重复结束错误 或者 提前结束{"aa"}。正常的有{} + break; + case '[': + isError = arrayStart && state == 0;//重复开始错误 + break; + case ']': + isError = !arrayStart || jsonStart;//重复开始错误 或者 Json 未结束 + break; + case '"': + case '\'': + isError = !(jsonStart || arrayStart); //json 或数组开始。 + if (!isError) + { + //重复开始 [""",{"" "}] + isError = (state == 0 && keyStart == -1) || (state == 1 && valueStart == -1); + } + if (!isError && arrayStart && !jsonStart && c == '\'')//['aa',{}] + { + isError = true; + } + break; + case ':': + isError = !jsonStart || state == 1;//重复出现。 + break; + case ',': + isError = !(jsonStart || arrayStart); //json 或数组开始。 + if (!isError) + { + if (jsonStart) + { + isError = state == 0 || (state == 1 && valueStart > 1);//重复出现。 + } + else if (arrayStart)//["aa,] [,] [{},{}] + { + isError = keyStart == 0 && !setDicValue; + } + } + break; + case ' ': + case '\r': + case '\n'://[ "a",\r\n{} ] + case '\0': + case '\t': + break; + default: //值开头。。 + isError = (!jsonStart && !arrayStart) || (state == 0 && keyStart == -1) || (valueStart == -1 && state == 1);// + break; + } + //if (isError) + //{ + + //} + } + } +} diff --git a/yuhong_plc/zzz.Common/Helper/LinqBuilder/LinqEnumerableExtensions.cs b/yuhong_plc/zzz.Common/Helper/LinqBuilder/LinqEnumerableExtensions.cs new file mode 100644 index 0000000..6757d05 --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/LinqBuilder/LinqEnumerableExtensions.cs @@ -0,0 +1,139 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Linq.Expressions; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Common.Helper +{ + public static class IEnumerableExtensions + { + /// + /// 根据条件成立再构建 Where 查询 + /// + /// 泛型类型 + /// 集合对象 + /// 布尔条件 + /// 表达式 + /// 新的集合对象 + public static IQueryable Where(this IQueryable sources, bool condition, Expression> expression) + { + return condition ? Queryable.Where(sources, expression) : sources; + } + + /// + /// 根据条件成立再构建 Where 查询,支持索引器 + /// + /// 泛型类型 + /// 集合对象 + /// 布尔条件 + /// 表达式 + /// 新的集合对象 + public static IQueryable Where(this IQueryable sources, bool condition, Expression> expression) + { + return condition ? Queryable.Where(sources, expression) : sources; + } + + /// + /// 与操作合并多个表达式 + /// + /// 泛型类型 + /// 集合对象 + /// 表达式数组 + /// 新的集合对象 + public static IQueryable Where(this IQueryable sources, params Expression>[] expressions) + { + if (expressions == null || !expressions.Any()) return sources; + if (expressions.Length == 1) return Queryable.Where(sources, expressions[0]); + + var expression = LinqExpression.Or(); + foreach (var _expression in expressions) + { + expression = expression.Or(_expression); + } + return Queryable.Where(sources, expression); + } + + /// + /// 与操作合并多个表达式,支持索引器 + /// + /// 泛型类型 + /// 集合对象 + /// 表达式数组 + /// 新的集合对象 + public static IQueryable Where(this IQueryable sources, params Expression>[] expressions) + { + if (expressions == null || !expressions.Any()) return sources; + if (expressions.Length == 1) return Queryable.Where(sources, expressions[0]); + + var expression = LinqExpression.IndexOr(); + foreach (var _expression in expressions) + { + expression = expression.Or(_expression); + } + return Queryable.Where(sources, expression); + } + + /// + /// 根据条件成立再构建 WhereOr 查询 + /// + /// 泛型类型 + /// 集合对象 + /// 条件表达式 + /// 新的集合对象 + public static IQueryable Where(this IQueryable sources, params (bool condition, Expression> expression)[] conditionExpressions) + { + var expressions = new List>>(); + foreach (var (condition, expression) in conditionExpressions) + { + if (condition) expressions.Add(expression); + } + return Where(sources, expressions.ToArray()); + } + + /// + /// 根据条件成立再构建 WhereOr 查询,支持索引器 + /// + /// 泛型类型 + /// 集合对象 + /// 条件表达式 + /// 新的集合对象 + public static IQueryable Where(this IQueryable sources, params (bool condition, Expression> expression)[] conditionExpressions) + { + var expressions = new List>>(); + foreach (var (condition, expression) in conditionExpressions) + { + if (condition) expressions.Add(expression); + } + return Where(sources, expressions.ToArray()); + } + + /// + /// 根据条件成立再构建 Where 查询 + /// + /// 泛型类型 + /// 集合对象 + /// 布尔条件 + /// 表达式 + /// 新的集合对象 + public static IEnumerable Where(this IEnumerable sources, bool condition, Func expression) + { + return condition ? sources.Where(expression) : sources; + } + + /// + /// 根据条件成立再构建 Where 查询,支持索引器 + /// + /// 泛型类型 + /// 集合对象 + /// 布尔条件 + /// 表达式 + /// 新的集合对象 + public static IEnumerable Where(this IEnumerable sources, bool condition, Func expression) + { + return condition ? sources.Where(expression) : sources; + } + } + +} diff --git a/yuhong_plc/zzz.Common/Helper/LinqBuilder/LinqExpression.cs b/yuhong_plc/zzz.Common/Helper/LinqBuilder/LinqExpression.cs new file mode 100644 index 0000000..9ee382c --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/LinqBuilder/LinqExpression.cs @@ -0,0 +1,77 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Linq.Expressions; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Common.Helper +{ + /// + /// EF Core Linq 拓展 + /// + public static class LinqExpression + { + /// + /// 创建 Linq/Lambda 表达式 + /// + /// 泛型类型 + /// 表达式 + /// 新的表达式 + public static Expression> Create(Expression> expression) + { + return expression; + } + + /// + /// 创建 Linq/Lambda 表达式,支持索引器 + /// + /// 泛型类型 + /// 表达式 + /// 新的表达式 + public static Expression> Create(Expression> expression) + { + return expression; + } + + /// + /// 创建 And 表达式 + /// + /// 泛型类型 + /// 新的表达式 + public static Expression> And() + { + return u => true; + } + + /// + /// 创建 And 表达式,支持索引器 + /// + /// 泛型类型 + /// 新的表达式 + public static Expression> IndexAnd() + { + return (u, i) => true; + } + + /// + /// 创建 Or 表达式 + /// + /// 泛型类型 + /// 新的表达式 + public static Expression> Or() + { + return u => false; + } + + /// + /// 创建 Or 表达式,支持索引器 + /// + /// 泛型类型 + /// 新的表达式 + public static Expression> IndexOr() + { + return (u, i) => false; + } + } +} diff --git a/yuhong_plc/zzz.Common/Helper/LinqBuilder/LinqExpressionExtensions.cs b/yuhong_plc/zzz.Common/Helper/LinqBuilder/LinqExpressionExtensions.cs new file mode 100644 index 0000000..3402ea9 --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/LinqBuilder/LinqExpressionExtensions.cs @@ -0,0 +1,166 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Linq.Expressions; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Common.Helper +{ + public static class ExpressionExtensions + { + /// + /// 组合两个表达式 + /// + /// 泛型类型 + /// 表达式1 + /// 表达式2 + /// 组合方式 + /// 新的表达式 + public static Expression Compose(this Expression expression, Expression extendExpression, Func mergeWay) + { + var parameterExpressionSetter = expression.Parameters + .Select((u, i) => new { u, Parameter = extendExpression.Parameters[i] }) + .ToDictionary(d => d.Parameter, d => d.u); + + var extendExpressionBody = ParameterReplaceExpressionVisitor.ReplaceParameters(parameterExpressionSetter, extendExpression.Body); + return Expression.Lambda(mergeWay(expression.Body, extendExpressionBody), expression.Parameters); + } + + /// + /// 与操作合并两个表达式 + /// + /// 泛型类型 + /// 表达式1 + /// 表达式2 + /// 新的表达式 + public static Expression> And(this Expression> expression, Expression> extendExpression) + { + return expression.Compose(extendExpression, Expression.AndAlso); + } + + /// + /// 与操作合并两个表达式,支持索引器 + /// + /// 泛型类型 + /// 表达式1 + /// 表达式2 + /// 新的表达式 + public static Expression> And(this Expression> expression, Expression> extendExpression) + { + return expression.Compose(extendExpression, Expression.AndAlso); + } + + /// + /// 根据条件成立再与操作合并两个表达式 + /// + /// 泛型类型 + /// 表达式1 + /// 布尔条件 + /// 表达式2 + /// 新的表达式 + public static Expression> AndIf(this Expression> expression, bool condition, Expression> extendExpression) + { + return condition ? expression.Compose(extendExpression, Expression.AndAlso) : expression; + } + + /// + /// 根据条件成立再与操作合并两个表达式,支持索引器 + /// + /// 泛型类型 + /// 表达式1 + /// 布尔条件 + /// 表达式2 + /// 新的表达式 + public static Expression> AndIf(this Expression> expression, bool condition, Expression> extendExpression) + { + return condition ? expression.Compose(extendExpression, Expression.AndAlso) : expression; + } + + /// + /// 或操作合并两个表达式 + /// + /// 泛型类型 + /// 表达式1 + /// 表达式2 + /// 新的表达式 + public static Expression> Or(this Expression> expression, Expression> extendExpression) + { + return expression.Compose(extendExpression, Expression.OrElse); + } + + /// + /// 或操作合并两个表达式,支持索引器 + /// + /// 泛型类型 + /// 表达式1 + /// 表达式2 + /// 新的表达式 + public static Expression> Or(this Expression> expression, Expression> extendExpression) + { + return expression.Compose(extendExpression, Expression.OrElse); + } + + /// + /// 根据条件成立再或操作合并两个表达式 + /// + /// 泛型类型 + /// 表达式1 + /// 布尔条件 + /// 表达式2 + /// 新的表达式 + public static Expression> OrIf(this Expression> expression, bool condition, Expression> extendExpression) + { + return condition ? expression.Compose(extendExpression, Expression.OrElse) : expression; + } + + /// + /// 根据条件成立再或操作合并两个表达式,支持索引器 + /// + /// 泛型类型 + /// 表达式1 + /// 布尔条件 + /// 表达式2 + /// 新的表达式 + public static Expression> OrIf(this Expression> expression, bool condition, Expression> extendExpression) + { + return condition ? expression.Compose(extendExpression, Expression.OrElse) : expression; + } + + /// + /// 获取Lambda表达式属性名,只限 u=>u.Property 表达式 + /// + /// 泛型类型 + /// 表达式 + /// 属性名 + public static string GetExpressionPropertyName(this Expression> expression) + { + if (expression.Body is UnaryExpression unaryExpression) + { + return ((MemberExpression)unaryExpression.Operand).Member.Name; + } + else if (expression.Body is MemberExpression memberExpression) + { + return memberExpression.Member.Name; + } + else if (expression.Body is ParameterExpression parameterExpression) + { + return parameterExpression.Type.Name; + } + + throw new InvalidCastException(nameof(expression)); + } + + /// + /// 是否是空集合 + /// + /// 泛型类型 + /// 集合对象 + /// 是否为空集合 + public static bool IsNullOrEmpty(this IEnumerable sources) + { + return sources == null || !sources.Any(); + } + } + +} diff --git a/yuhong_plc/zzz.Common/Helper/LinqBuilder/ParameterReplaceExpressionVisitor.cs b/yuhong_plc/zzz.Common/Helper/LinqBuilder/ParameterReplaceExpressionVisitor.cs new file mode 100644 index 0000000..d0609a3 --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/LinqBuilder/ParameterReplaceExpressionVisitor.cs @@ -0,0 +1,55 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Linq.Expressions; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Common.Helper +{ + /// + /// 处理 Lambda 参数不一致问题 + /// + internal sealed class ParameterReplaceExpressionVisitor : ExpressionVisitor + { + /// + /// 参数表达式映射集合 + /// + private readonly Dictionary parameterExpressionSetter; + + /// + /// 构造函数 + /// + /// 参数表达式映射集合 + public ParameterReplaceExpressionVisitor(Dictionary parameterExpressionSetter) + { + this.parameterExpressionSetter = parameterExpressionSetter ?? new Dictionary(); + } + + /// + /// 替换表达式参数 + /// + /// 参数表达式映射集合 + /// 表达式 + /// 新的表达式 + public static Expression ReplaceParameters(Dictionary parameterExpressionSetter, Expression expression) + { + return new ParameterReplaceExpressionVisitor(parameterExpressionSetter).Visit(expression); + } + + /// + /// 重写基类参数访问器 + /// + /// + /// + protected override Expression VisitParameter(ParameterExpression parameterExpression) + { + if (parameterExpressionSetter.TryGetValue(parameterExpression, out var replacement)) + { + parameterExpression = replacement; + } + + return base.VisitParameter(parameterExpression); + } + } +} diff --git a/yuhong_plc/zzz.Common/Helper/UtilConvert.cs b/yuhong_plc/zzz.Common/Helper/UtilConvert.cs new file mode 100644 index 0000000..227d05c --- /dev/null +++ b/yuhong_plc/zzz.Common/Helper/UtilConvert.cs @@ -0,0 +1,183 @@ +using System; +namespace zzz +{ + /// + /// + /// + public static class UtilConvert + { + /// + /// + /// + /// + /// + public static int ObjToInt(this object thisValue) + { + int reval = 0; + if (thisValue == null) return 0; + if (thisValue != DBNull.Value && int.TryParse(thisValue.ToString(), out reval)) + { + return reval; + } + return reval; + } + /// + /// + /// + /// + /// + /// + public static int ObjToInt(this object thisValue, int errorValue) + { + int reval = 0; + if (thisValue != null && thisValue != DBNull.Value && int.TryParse(thisValue.ToString(), out reval)) + { + return reval; + } + return errorValue; + } + /// + /// + /// + /// + /// + public static double ObjToMoney(this object thisValue) + { + double reval = 0; + if (thisValue != null && thisValue != DBNull.Value && double.TryParse(thisValue.ToString(), out reval)) + { + return reval; + } + return 0; + } + /// + /// + /// + /// + /// + /// + public static double ObjToMoney(this object thisValue, double errorValue) + { + double reval = 0; + if (thisValue != null && thisValue != DBNull.Value && double.TryParse(thisValue.ToString(), out reval)) + { + return reval; + } + return errorValue; + } + /// + /// + /// + /// + /// + public static string ObjToString(this object thisValue) + { + if (thisValue != null) return thisValue.ToString().Trim(); + return ""; + } + /// + /// + /// + /// + /// + public static bool IsNotEmptyOrNull(this object thisValue) + { + return ObjToString(thisValue) != "" && ObjToString(thisValue) != "undefined" && ObjToString(thisValue) != "null"; + } + /// + /// + /// + /// + /// + /// + public static string ObjToString(this object thisValue, string errorValue) + { + if (thisValue != null) return thisValue.ToString().Trim(); + return errorValue; + } + /// + /// + /// + /// + /// + public static Decimal ObjToDecimal(this object thisValue) + { + Decimal reval = 0; + if (thisValue != null && thisValue != DBNull.Value && decimal.TryParse(thisValue.ToString(), out reval)) + { + return reval; + } + return 0; + } + /// + /// + /// + /// + /// + /// + public static Decimal ObjToDecimal(this object thisValue, decimal errorValue) + { + Decimal reval = 0; + if (thisValue != null && thisValue != DBNull.Value && decimal.TryParse(thisValue.ToString(), out reval)) + { + return reval; + } + return errorValue; + } + /// + /// + /// + /// + /// + public static DateTime ObjToDate(this object thisValue) + { + DateTime reval = DateTime.MinValue; + if (thisValue != null && thisValue != DBNull.Value && DateTime.TryParse(thisValue.ToString(), out reval)) + { + reval = Convert.ToDateTime(thisValue); + } + return reval; + } + /// + /// + /// + /// + /// + /// + public static DateTime ObjToDate(this object thisValue, DateTime errorValue) + { + DateTime reval = DateTime.MinValue; + if (thisValue != null && thisValue != DBNull.Value && DateTime.TryParse(thisValue.ToString(), out reval)) + { + return reval; + } + return errorValue; + } + /// + /// + /// + /// + /// + public static bool ObjToBool(this object thisValue) + { + bool reval = false; + if (thisValue != null && thisValue != DBNull.Value && bool.TryParse(thisValue.ToString(), out reval)) + { + return reval; + } + return reval; + } + + + /// + /// 获取当前时间的时间戳 + /// + /// + /// + public static string DateToTimeStamp(this DateTime thisValue) + { + TimeSpan ts = thisValue - new DateTime(1970, 1, 1, 0, 0, 0, 0); + return Convert.ToInt64(ts.TotalSeconds).ToString(); + } + } +} diff --git a/yuhong_plc/zzz.Common/Hubs/ChatHub.cs b/yuhong_plc/zzz.Common/Hubs/ChatHub.cs new file mode 100644 index 0000000..7514799 --- /dev/null +++ b/yuhong_plc/zzz.Common/Hubs/ChatHub.cs @@ -0,0 +1,89 @@ +using System.Threading.Tasks; +using zzz.Common.LogHelper; +using Microsoft.AspNetCore.SignalR; + +namespace zzz.Hubs +{ + public class ChatHub : Hub + { + /// + /// 向指定群组发送信息 + /// + /// 组名 + /// 信息内容 + /// + public async Task SendMessageToGroupAsync(string groupName, string message) + { + await Clients.Group(groupName).ReceiveMessage(message); + } + + /// + /// 加入指定组 + /// + /// 组名 + /// + public async Task AddToGroup(string groupName) + { + await Groups.AddToGroupAsync(Context.ConnectionId, groupName); + } + + /// + /// 退出指定组 + /// + /// 组名 + /// + public async Task RemoveFromGroup(string groupName) + { + await Groups.RemoveFromGroupAsync(Context.ConnectionId, groupName); + } + + /// + /// 向指定成员发送信息 + /// + /// 成员名 + /// 信息内容 + /// + public async Task SendPrivateMessage(string user, string message) + { + await Clients.User(user).ReceiveMessage(message); + } + + /// + /// 当连接建立时运行 + /// + /// + public override Task OnConnectedAsync() + { + //TODO.. + return base.OnConnectedAsync(); + } + + /// + /// 当链接断开时运行 + /// + /// + /// + public override Task OnDisconnectedAsync(System.Exception ex) + { + //TODO.. + return base.OnDisconnectedAsync(ex); + } + + + public async Task SendMessage(string user, string message) + { + await Clients.All.ReceiveMessage( user, message); + } + + //定于一个通讯管道,用来管理我们和客户端的连接 + //1、客户端调用 GetLatestCount,就像订阅 + public async Task GetLatestCount(string random) + { + //2、服务端主动向客户端发送数据,名字千万不能错 + await Clients.All.ReceiveUpdate(LogLock.GetLogData()); + + //3、客户端再通过 ReceiveUpdate ,来接收 + + } + } +} diff --git a/yuhong_plc/zzz.Common/Hubs/IChatClient.cs b/yuhong_plc/zzz.Common/Hubs/IChatClient.cs new file mode 100644 index 0000000..59b432c --- /dev/null +++ b/yuhong_plc/zzz.Common/Hubs/IChatClient.cs @@ -0,0 +1,24 @@ +using System.Threading.Tasks; + +namespace zzz.Hubs +{ + public interface IChatClient + { + /// + /// SignalR接收信息 + /// + /// 信息内容 + /// + Task ReceiveMessage(object message); + + /// + /// SignalR接收信息 + /// + /// 指定接收客户端 + /// 信息内容 + /// + Task ReceiveMessage(string user, string message); + + Task ReceiveUpdate(object message); + } +} diff --git a/yuhong_plc/zzz.Common/LogHelper/LogInfo.cs b/yuhong_plc/zzz.Common/LogHelper/LogInfo.cs new file mode 100644 index 0000000..c86bad6 --- /dev/null +++ b/yuhong_plc/zzz.Common/LogHelper/LogInfo.cs @@ -0,0 +1,13 @@ +using System; + +namespace zzz.Common.LogHelper +{ + public class LogInfo + { + public DateTime Datetime { get; set; } + public string Content { get; set; } + public string IP { get; set; } + public string LogColor { get; set; } + public int Import { get; set; } = 0; + } +} diff --git a/yuhong_plc/zzz.Common/LogHelper/LogLock.cs b/yuhong_plc/zzz.Common/LogHelper/LogLock.cs new file mode 100644 index 0000000..86b561c --- /dev/null +++ b/yuhong_plc/zzz.Common/LogHelper/LogLock.cs @@ -0,0 +1,509 @@ +using zzz.Common.Helper; +using log4net; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading; + +namespace zzz.Common.LogHelper +{ + public class LogLock + { + private static readonly ILog log = LogManager.GetLogger(typeof(LogLock)); + static ReaderWriterLockSlim LogWriteLock = new ReaderWriterLockSlim(); + static int WritedCount = 0; + static int FailedCount = 0; + static string _contentRoot = string.Empty; + + public LogLock(string contentPath) + { + _contentRoot = contentPath; + } + + public static void OutSql2Log(string prefix, string[] dataParas, bool IsHeader = true, bool isWrt = false) + { + + if (Appsettings.app(new string[] { "LogToDb" }).ObjToBool()) + { + OutSql2LogToDB(prefix, dataParas, IsHeader); + } + else + { + OutSql2LogToFile(prefix, dataParas, IsHeader, isWrt); + } + } + + public static void OutSql2LogToFile(string prefix, string[] dataParas, bool IsHeader = true, bool isWrt = false) + { + try + { + //设置读写锁为写入模式独占资源,其他写入请求需要等待本次写入结束之后才能继续写入 + //注意:长时间持有读线程锁或写线程锁会使其他线程发生饥饿 (starve)。 为了得到最好的性能,需要考虑重新构造应用程序以将写访问的持续时间减少到最小。 + // 从性能方面考虑,请求进入写入模式应该紧跟文件操作之前,在此处进入写入模式仅是为了降低代码复杂度 + // 因进入与退出写入模式应在同一个try finally语句块内,所以在请求进入写入模式之前不能触发异常,否则释放次数大于请求次数将会触发异常 + LogWriteLock.EnterWriteLock(); + + var folderPath = Path.Combine(_contentRoot, "Log"); + if (!Directory.Exists(folderPath)) + { + Directory.CreateDirectory(folderPath); + } + //string logFilePath = Path.Combine(path, $@"{filename}.log"); + var logFilePath = FileHelper.GetAvailableFileWithPrefixOrderSize(folderPath, prefix); + + var now = DateTime.Now; + string logContent = String.Join("\r\n", dataParas); + if (IsHeader) + { + logContent = ( + "--------------------------------\r\n" + + DateTime.Now + "|\r\n" + + String.Join("\r\n", dataParas) + "\r\n" + ); + } + + //if (logContent.IsNotEmptyOrNull() && logContent.Length > 500) + //{ + // logContent = logContent.Substring(0, 500) + "\r\n"; + //} + if (isWrt) + { + File.WriteAllText(logFilePath, logContent); + + } + else + { + File.AppendAllText(logFilePath, logContent); + } + WritedCount++; + } + catch (Exception e) + { + Console.Write(e.Message); + FailedCount++; + } + finally + { + //退出写入模式,释放资源占用 + //注意:一次请求对应一次释放 + // 若释放次数大于请求次数将会触发异常[写入锁定未经保持即被释放] + // 若请求处理完成后未释放将会触发异常[此模式不下允许以递归方式获取写入锁定] + LogWriteLock.ExitWriteLock(); + } + } + public static void OutSql2LogToDB(string prefix, string[] dataParas, bool IsHeader = true) + { + + string logContent = String.Join("\r\n", dataParas); + if (IsHeader) + { + logContent = ( + "--------------------------------\r\n" + + DateTime.Now + "|\r\n" + + String.Join("\r\n", dataParas) + "\r\n" + ); + } + switch (prefix) + { + case "AOPLog": + log.Info(logContent); + break; + case "AOPLogEx": + log.Error(logContent); + break; + case "RequestIpInfoLog": + log.Debug(logContent); + break; + case "RecordAccessLogs": + log.Debug(logContent); + break; + case "SqlLog": + log.Info(logContent); + break; + default: + break; + } + + } + /// + /// 读取文件内容 + /// + /// 文件夹路径 + /// 文件名 + /// 编码 + /// 读取类型(0:精准,1:前缀模糊) + /// + public static string ReadLog(string folderPath, string fileName, Encoding encode, ReadType readType = ReadType.Accurate, int takeOnlyTop = -1) + { + string s = ""; + try + { + LogWriteLock.EnterReadLock(); + + // 根据文件名读取当前文件内容 + if (readType == ReadType.Accurate) + { + var filePath = Path.Combine(folderPath, fileName); + if (!File.Exists(filePath)) + { + s = null; + } + else + { + StreamReader f2 = new StreamReader(filePath, encode); + s = f2.ReadToEnd(); + f2.Close(); + f2.Dispose(); + } + } + + // 根据前缀读取所有文件内容 + if (readType == ReadType.Prefix) + { + var allFiles = new DirectoryInfo(folderPath); + var selectFiles = allFiles.GetFiles().Where(fi => fi.Name.ToLower().Contains(fileName.ToLower())).ToList(); + + selectFiles = takeOnlyTop > 0 ? selectFiles.OrderByDescending(d => d.Name).Take(takeOnlyTop).ToList() : selectFiles; + + foreach (var item in selectFiles) + { + if (File.Exists(item.FullName)) + { + StreamReader f2 = new StreamReader(item.FullName, encode); + s += f2.ReadToEnd(); + f2.Close(); + f2.Dispose(); + } + } + } + + // 根据前缀读取 最新文件 时间倒叙 + if (readType == ReadType.PrefixLatest) + { + var allFiles = new DirectoryInfo(folderPath); + var selectLastestFile = allFiles.GetFiles().Where(fi => fi.Name.ToLower().Contains(fileName.ToLower())).OrderByDescending(d => d.Name).FirstOrDefault(); + + if (selectLastestFile != null && File.Exists(selectLastestFile.FullName)) + { + StreamReader f2 = new StreamReader(selectLastestFile.FullName, encode); + s = f2.ReadToEnd(); + f2.Close(); + f2.Dispose(); + } + } + } + catch (Exception) + { + FailedCount++; + } + finally + { + LogWriteLock.ExitReadLock(); + } + return s; + } + + private static List GetRequestInfo(ReadType readType) + { + List requestInfos = new(); + var accessLogs = ReadLog(Path.Combine(_contentRoot, "Log"), "RequestIpInfoLog_", Encoding.UTF8, readType).ObjToString(); + try + { + return JsonConvert.DeserializeObject>("[" + accessLogs + "]"); + } + catch (Exception) + { + var accLogArr = accessLogs.Split("\r\n"); + foreach (var item in accLogArr) + { + if (item.ObjToString() != "") + { + try + { + var accItem = JsonConvert.DeserializeObject(item.TrimEnd(',')); + requestInfos.Add(accItem); + } + catch (Exception) + { + } + } + } + + } + + return requestInfos; + } + + + public static List GetLogData() + { + List aopLogs = new List(); + List excLogs = new List(); + List sqlLogs = new List(); + List reqresLogs = new List(); + + try + { + var aoplogContent = ReadLog(Path.Combine(_contentRoot, "Log"), "AOPLog_", Encoding.UTF8, ReadType.Prefix); + + if (!string.IsNullOrEmpty(aoplogContent)) + { + aopLogs = aoplogContent.Split("--------------------------------") + .Where(d => !string.IsNullOrEmpty(d) && d != "\n" && d != "\r\n") + .Select(d => new LogInfo + { + Datetime = d.Split("|")[0].ObjToDate(), + Content = d.Split("|")[1]?.Replace("\r\n", "
"), + LogColor = "AOP", + }).ToList(); + } + } + catch (Exception) { } + + try + { + var exclogContent = ReadLog(Path.Combine(_contentRoot, "Log"), $"GlobalExceptionLogs_{DateTime.Now.ToString("yyyMMdd")}.log", Encoding.UTF8); + + if (!string.IsNullOrEmpty(exclogContent)) + { + excLogs = exclogContent.Split("--------------------------------") + .Where(d => !string.IsNullOrEmpty(d) && d != "\n" && d != "\r\n") + .Select(d => new LogInfo + { + Datetime = (d.Split("|")[0]).Split(',')[0].ObjToDate(), + Content = d.Split("|")[1]?.Replace("\r\n", "
"), + LogColor = "EXC", + Import = 9, + }).ToList(); + } + } + catch (Exception) { } + + + try + { + var sqllogContent = ReadLog(Path.Combine(_contentRoot, "Log"), "SqlLog_", Encoding.UTF8, ReadType.PrefixLatest); + + if (!string.IsNullOrEmpty(sqllogContent)) + { + sqlLogs = sqllogContent.Split("--------------------------------") + .Where(d => !string.IsNullOrEmpty(d) && d != "\n" && d != "\r\n") + .Select(d => new LogInfo + { + Datetime = d.Split("|")[0].ObjToDate(), + Content = d.Split("|")[1]?.Replace("\r\n", "
"), + LogColor = "SQL", + }).ToList(); + } + } + catch (Exception) { } + + //try + //{ + // reqresLogs = ReadLog(Path.Combine(_contentRoot, "Log", "RequestResponseLog.log"), Encoding.UTF8)? + // .Split("--------------------------------") + // .Where(d => !string.IsNullOrEmpty(d) && d != "\n" && d != "\r\n") + // .Select(d => new LogInfo + // { + // Datetime = d.Split("|")[0].ObjToDate(), + // Content = d.Split("|")[1]?.Replace("\r\n", "
"), + // LogColor = "ReqRes", + // }).ToList(); + //} + //catch (Exception) + //{ + //} + + try + { + var Logs = GetRequestInfo(ReadType.PrefixLatest); + + Logs = Logs.Where(d => d.Datetime.ObjToDate() >= DateTime.Today).ToList(); + + reqresLogs = Logs.Select(d => new LogInfo + { + Datetime = d.Datetime.ObjToDate(), + Content = $"IP:{d.Ip}
{d.Url}", + LogColor = "ReqRes", + }).ToList(); + } + catch (Exception) + { + } + + if (excLogs != null) + { + aopLogs.AddRange(excLogs); + } + if (sqlLogs != null) + { + aopLogs.AddRange(sqlLogs); + } + if (reqresLogs != null) + { + aopLogs.AddRange(reqresLogs); + } + aopLogs = aopLogs.OrderByDescending(d => d.Import).ThenByDescending(d => d.Datetime).Take(100).ToList(); + + return aopLogs; + } + + + public static RequestApiWeekView RequestApiinfoByWeek() + { + List Logs = new List(); + List apiWeeks = new List(); + string apiWeeksJson = string.Empty; + List columns = new List(); + columns.Add("日期"); + + + try + { + Logs = GetRequestInfo(ReadType.Prefix); + + apiWeeks = (from n in Logs + group n by new { n.Week, n.Url } into g + select new ApiWeek + { + week = g.Key.Week, + url = g.Key.Url, + count = g.Count(), + }).ToList(); + + //apiWeeks = apiWeeks.OrderByDescending(d => d.count).Take(8).ToList(); + + } + catch (Exception) + { + } + + StringBuilder jsonBuilder = new StringBuilder(); + jsonBuilder.Append("["); + + var weeks = apiWeeks.GroupBy(x => new { x.week }).Select(s => s.First()).ToList(); + foreach (var week in weeks) + { + var apiweeksCurrentWeek = apiWeeks.Where(d => d.week == week.week).OrderByDescending(d => d.count).Take(5).ToList(); + jsonBuilder.Append("{"); + + jsonBuilder.Append("\""); + jsonBuilder.Append("日期"); + jsonBuilder.Append("\":\""); + jsonBuilder.Append(week.week); + jsonBuilder.Append("\","); + + foreach (var item in apiweeksCurrentWeek) + { + columns.Add(item.url); + jsonBuilder.Append("\""); + jsonBuilder.Append(item.url); + jsonBuilder.Append("\":\""); + jsonBuilder.Append(item.count); + jsonBuilder.Append("\","); + } + if (apiweeksCurrentWeek.Count > 0) + { + jsonBuilder.Remove(jsonBuilder.Length - 1, 1); + } + jsonBuilder.Append("},"); + } + + if (weeks.Count > 0) + { + jsonBuilder.Remove(jsonBuilder.Length - 1, 1); + } + jsonBuilder.Append("]"); + + //columns.AddRange(apiWeeks.OrderByDescending(d => d.count).Take(8).Select(d => d.url).ToList()); + columns = columns.Distinct().ToList(); + + return new RequestApiWeekView() + { + columns = columns, + rows = jsonBuilder.ToString(), + }; + } + + public static AccessApiDateView AccessApiByDate() + { + List Logs = new List(); + List apiDates = new List(); + try + { + Logs = GetRequestInfo(ReadType.Prefix); + + apiDates = (from n in Logs + group n by new { n.Date } into g + select new ApiDate + { + date = g.Key.Date, + count = g.Count(), + }).ToList(); + + apiDates = apiDates.OrderByDescending(d => d.date).Take(7).ToList(); + + } + catch (Exception) + { + } + + return new AccessApiDateView() + { + columns = new string[] { "date", "count" }, + rows = apiDates.OrderBy(d => d.date).ToList(), + }; + } + + public static AccessApiDateView AccessApiByHour() + { + List Logs = new List(); + List apiDates = new List(); + try + { + Logs = GetRequestInfo(ReadType.Prefix); + + apiDates = (from n in Logs + where n.Datetime.ObjToDate() >= DateTime.Today + group n by new { hour = n.Datetime.ObjToDate().Hour } into g + select new ApiDate + { + date = g.Key.hour.ToString("00"), + count = g.Count(), + }).ToList(); + + apiDates = apiDates.OrderBy(d => d.date).Take(24).ToList(); + + } + catch (Exception) + { + } + + return new AccessApiDateView() + { + columns = new string[] { "date", "count" }, + rows = apiDates, + }; + } + } + + public enum ReadType + { + /// + /// 精确查找一个 + /// + Accurate, + /// + /// 指定前缀,模糊查找全部 + /// + Prefix, + /// + /// 指定前缀,最新一个文件 + /// + PrefixLatest + } + +} diff --git a/yuhong_plc/zzz.Common/LogHelper/RequestInfo.cs b/yuhong_plc/zzz.Common/LogHelper/RequestInfo.cs new file mode 100644 index 0000000..42b5100 --- /dev/null +++ b/yuhong_plc/zzz.Common/LogHelper/RequestInfo.cs @@ -0,0 +1,42 @@ +using System.Collections.Generic; + +namespace zzz.Common.LogHelper +{ + public class ApiWeek + { + public string week { get; set; } + public string url { get; set; } + public int count { get; set; } + } + public class ApiDate + { + public string date { get; set; } + public int count { get; set; } + } + + public class ActiveUserVM + { + public string user { get; set; } + public int count { get; set; } + } + + public class RequestApiWeekView + { + public List columns { get; set; } + public string rows { get; set; } + } + public class AccessApiDateView + { + public string[] columns { get; set; } + public List rows { get; set; } + } + public class RequestInfo + { + public string Ip { get; set; } + public string Url { get; set; } + public string Datetime { get; set; } + public string Date { get; set; } + public string Week { get; set; } + + } +} diff --git a/yuhong_plc/zzz.Common/LogHelper/Seri/SerilogServer.cs b/yuhong_plc/zzz.Common/LogHelper/Seri/SerilogServer.cs new file mode 100644 index 0000000..b009d6a --- /dev/null +++ b/yuhong_plc/zzz.Common/LogHelper/Seri/SerilogServer.cs @@ -0,0 +1,87 @@ +using zzz.Common.Helper; +using Serilog; +using Serilog.Events; +using System; +using System.IO; + +namespace zzz.Common.LogHelper +{ + public class SerilogServer + { + /// + /// 记录日常日志 + /// + /// + /// + /// + public static void WriteLog(string filename, string[] dataParas, bool IsHeader = true, string defaultFolder = "", bool isJudgeJsonFormat = false) + { + Log.Logger = new LoggerConfiguration() + // TCPSink 集成Serilog 使用tcp的方式向elk 输出log日志 LogstashJsonFormatter 这个是按照自定义格式化输出内容 + //.WriteTo.TCPSink(new LogstashJsonFormatter()) + .MinimumLevel.Debug() + .MinimumLevel.Override("Microsoft", LogEventLevel.Error) + //.WriteTo.File(Path.Combine($"log/Serilog/{filename}/", ".log"), rollingInterval: RollingInterval.Day, outputTemplate: "{Timestamp:yyyy-MM-dd HH:mm:ss.fff} [{Level}] {Message}{NewLine}{Exception}") + .WriteTo.File(Path.Combine("Log", defaultFolder, $"{filename}.log"), + rollingInterval: RollingInterval.Infinite, + outputTemplate: "{Message}{NewLine}{Exception}") + + // 将日志托送到远程ES + // docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e ES_JAVA_OPTS="-Xms256m -Xmx256m" -d --name ES01 elasticsearch:7.2.0 + //.Enrich.FromLogContext() + //.WriteTo.Elasticsearch(new ElasticsearchSinkOptions(new Uri("http://x.xxx.xx.xx:9200/")) + //{ + // AutoRegisterTemplate = true, + //}) + + .CreateLogger(); + + var now = DateTime.Now; + string logContent = String.Join("\r\n", dataParas); + var isJsonFormat = true; + if (isJudgeJsonFormat) + { + var judCont = logContent.Substring(0, logContent.LastIndexOf(",")); + isJsonFormat = JsonHelper.IsJson(judCont); + } + + if (isJsonFormat) + { + if (IsHeader) + { + logContent = ( + "--------------------------------\r\n" + + DateTime.Now + "|\r\n" + + String.Join("\r\n", dataParas) + "\r\n" + ); + } + // 展示elk支持输出4种日志级别 + Log.Information(logContent); + //Log.Warning(logContent); + //Log.Error(logContent); + //Log.Debug(logContent); + } + else + { + Console.WriteLine("【JSON格式异常:】"+logContent + now.ObjToString()); + } + Log.CloseAndFlush(); + } + /// + /// 记录异常日志 + /// + /// + /// + /// + public static void WriteErrorLog(string filename, string message, Exception ex) + { + Log.Logger = new LoggerConfiguration() + .MinimumLevel.Debug() + .MinimumLevel.Override("Microsoft", LogEventLevel.Error) + .WriteTo.File(Path.Combine($"log/Error/{filename}/", ".txt"), rollingInterval: RollingInterval.Day) + .CreateLogger(); + Log.Error(ex, message); + Log.CloseAndFlush(); + } + } +} diff --git a/yuhong_plc/zzz.Common/bin/Debug/net6.0/cjyx.Common.deps.json b/yuhong_plc/zzz.Common/bin/Debug/net6.0/cjyx.Common.deps.json new file mode 100644 index 0000000..a608481 --- /dev/null +++ b/yuhong_plc/zzz.Common/bin/Debug/net6.0/cjyx.Common.deps.json @@ -0,0 +1,866 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "cjyx.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "cjyx.Common.dll": {} + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.0" + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Options/2.2.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0", + "System.ComponentModel.Annotations": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.NETCore.Platforms/2.0.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Newtonsoft.Json/11.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.2.21924" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "System.Buffers/4.5.0": {}, + "System.ComponentModel.Annotations/4.5.0": {}, + "System.Configuration.ConfigurationManager/4.5.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.5.0", + "System.Security.Permissions": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Pipelines/4.5.2": { + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Configuration.ConfigurationManager": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26515.6" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26515.6" + }, + "runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.AccessControl/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.6.26515.6" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Security.Permissions/4.5.0": { + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Security.Principal.Windows/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Runtime.Caching": "4.5.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + } + } + }, + "libraries": { + "cjyx.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==", + "path": "microsoft.extensions.options/2.2.0", + "hashPath": "microsoft.extensions.options.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "path": "microsoft.netcore.platforms/2.0.0", + "hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "path": "newtonsoft.json/11.0.2", + "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "System.Buffers/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "path": "system.buffers/4.5.0", + "hashPath": "system.buffers.4.5.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", + "path": "system.componentmodel.annotations/4.5.0", + "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", + "path": "system.configuration.configurationmanager/4.5.0", + "hashPath": "system.configuration.configurationmanager.4.5.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "path": "system.io.pipelines/4.5.2", + "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-95j9KShuaAENf2gLbQ/9YoJDHIWAnoaFYA71xo4QVQyLkOMginn34cD1+6RcYIrqJamLkMXgvgUnOzwzBk+U0w==", + "path": "system.runtime.caching/4.5.0", + "hashPath": "system.runtime.caching.4.5.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "path": "system.security.accesscontrol/4.5.0", + "hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", + "path": "system.security.cryptography.protecteddata/4.5.0", + "hashPath": "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512" + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "path": "system.security.permissions/4.5.0", + "hashPath": "system.security.permissions.4.5.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "path": "system.security.principal.windows/4.5.0", + "hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/bin/Debug/net6.0/cjyx.Common.dll b/yuhong_plc/zzz.Common/bin/Debug/net6.0/cjyx.Common.dll new file mode 100644 index 0000000..993149d Binary files /dev/null and b/yuhong_plc/zzz.Common/bin/Debug/net6.0/cjyx.Common.dll differ diff --git a/yuhong_plc/zzz.Common/bin/Debug/net6.0/cjyx.Common.pdb b/yuhong_plc/zzz.Common/bin/Debug/net6.0/cjyx.Common.pdb new file mode 100644 index 0000000..c259918 Binary files /dev/null and b/yuhong_plc/zzz.Common/bin/Debug/net6.0/cjyx.Common.pdb differ diff --git a/yuhong_plc/zzz.Common/bin/Debug/net6.0/ref/cjyx.Common.dll b/yuhong_plc/zzz.Common/bin/Debug/net6.0/ref/cjyx.Common.dll new file mode 100644 index 0000000..1dd9dc7 Binary files /dev/null and b/yuhong_plc/zzz.Common/bin/Debug/net6.0/ref/cjyx.Common.dll differ diff --git a/yuhong_plc/zzz.Common/bin/Debug/net6.0/ref/zzz.Common.dll b/yuhong_plc/zzz.Common/bin/Debug/net6.0/ref/zzz.Common.dll new file mode 100644 index 0000000..92bdb93 Binary files /dev/null and b/yuhong_plc/zzz.Common/bin/Debug/net6.0/ref/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Common/bin/Debug/net6.0/zzz.Common.deps.json b/yuhong_plc/zzz.Common/bin/Debug/net6.0/zzz.Common.deps.json new file mode 100644 index 0000000..3cbc67e --- /dev/null +++ b/yuhong_plc/zzz.Common/bin/Debug/net6.0/zzz.Common.deps.json @@ -0,0 +1,866 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.0" + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Options/2.2.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0", + "System.ComponentModel.Annotations": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.NETCore.Platforms/2.0.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Newtonsoft.Json/11.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.2.21924" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "System.Buffers/4.5.0": {}, + "System.ComponentModel.Annotations/4.5.0": {}, + "System.Configuration.ConfigurationManager/4.5.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.5.0", + "System.Security.Permissions": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Pipelines/4.5.2": { + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Configuration.ConfigurationManager": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26515.6" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26515.6" + }, + "runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.AccessControl/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.6.26515.6" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Security.Permissions/4.5.0": { + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Security.Principal.Windows/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Runtime.Caching": "4.5.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + } + } + }, + "libraries": { + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==", + "path": "microsoft.extensions.options/2.2.0", + "hashPath": "microsoft.extensions.options.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "path": "microsoft.netcore.platforms/2.0.0", + "hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "path": "newtonsoft.json/11.0.2", + "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "System.Buffers/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "path": "system.buffers/4.5.0", + "hashPath": "system.buffers.4.5.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", + "path": "system.componentmodel.annotations/4.5.0", + "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", + "path": "system.configuration.configurationmanager/4.5.0", + "hashPath": "system.configuration.configurationmanager.4.5.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "path": "system.io.pipelines/4.5.2", + "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-95j9KShuaAENf2gLbQ/9YoJDHIWAnoaFYA71xo4QVQyLkOMginn34cD1+6RcYIrqJamLkMXgvgUnOzwzBk+U0w==", + "path": "system.runtime.caching/4.5.0", + "hashPath": "system.runtime.caching.4.5.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "path": "system.security.accesscontrol/4.5.0", + "hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", + "path": "system.security.cryptography.protecteddata/4.5.0", + "hashPath": "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512" + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "path": "system.security.permissions/4.5.0", + "hashPath": "system.security.permissions.4.5.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "path": "system.security.principal.windows/4.5.0", + "hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/bin/Debug/net6.0/zzz.Common.dll b/yuhong_plc/zzz.Common/bin/Debug/net6.0/zzz.Common.dll new file mode 100644 index 0000000..6d6f1c6 Binary files /dev/null and b/yuhong_plc/zzz.Common/bin/Debug/net6.0/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Common/bin/Debug/net6.0/zzz.Common.pdb b/yuhong_plc/zzz.Common/bin/Debug/net6.0/zzz.Common.pdb new file mode 100644 index 0000000..4c5a6d4 Binary files /dev/null and b/yuhong_plc/zzz.Common/bin/Debug/net6.0/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Common/bin/Release/net6.0/ref/zzz.Common.dll b/yuhong_plc/zzz.Common/bin/Release/net6.0/ref/zzz.Common.dll new file mode 100644 index 0000000..0a3ca6d Binary files /dev/null and b/yuhong_plc/zzz.Common/bin/Release/net6.0/ref/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Common/bin/Release/net6.0/zzz.Common.deps.json b/yuhong_plc/zzz.Common/bin/Release/net6.0/zzz.Common.deps.json new file mode 100644 index 0000000..3cbc67e --- /dev/null +++ b/yuhong_plc/zzz.Common/bin/Release/net6.0/zzz.Common.deps.json @@ -0,0 +1,866 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.0" + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Options/2.2.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0", + "System.ComponentModel.Annotations": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.NETCore.Platforms/2.0.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Newtonsoft.Json/11.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.2.21924" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "System.Buffers/4.5.0": {}, + "System.ComponentModel.Annotations/4.5.0": {}, + "System.Configuration.ConfigurationManager/4.5.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.5.0", + "System.Security.Permissions": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Pipelines/4.5.2": { + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Configuration.ConfigurationManager": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26515.6" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26515.6" + }, + "runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.AccessControl/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.6.26515.6" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Security.Permissions/4.5.0": { + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Security.Principal.Windows/4.5.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Runtime.Caching": "4.5.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + } + } + }, + "libraries": { + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==", + "path": "microsoft.extensions.options/2.2.0", + "hashPath": "microsoft.extensions.options.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "path": "microsoft.netcore.platforms/2.0.0", + "hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "path": "newtonsoft.json/11.0.2", + "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "System.Buffers/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "path": "system.buffers/4.5.0", + "hashPath": "system.buffers.4.5.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", + "path": "system.componentmodel.annotations/4.5.0", + "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", + "path": "system.configuration.configurationmanager/4.5.0", + "hashPath": "system.configuration.configurationmanager.4.5.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "path": "system.io.pipelines/4.5.2", + "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-95j9KShuaAENf2gLbQ/9YoJDHIWAnoaFYA71xo4QVQyLkOMginn34cD1+6RcYIrqJamLkMXgvgUnOzwzBk+U0w==", + "path": "system.runtime.caching/4.5.0", + "hashPath": "system.runtime.caching.4.5.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "path": "system.security.accesscontrol/4.5.0", + "hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", + "path": "system.security.cryptography.protecteddata/4.5.0", + "hashPath": "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512" + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "path": "system.security.permissions/4.5.0", + "hashPath": "system.security.permissions.4.5.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "path": "system.security.principal.windows/4.5.0", + "hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/bin/Release/net6.0/zzz.Common.dll b/yuhong_plc/zzz.Common/bin/Release/net6.0/zzz.Common.dll new file mode 100644 index 0000000..64d9d86 Binary files /dev/null and b/yuhong_plc/zzz.Common/bin/Release/net6.0/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Common/bin/Release/net6.0/zzz.Common.pdb b/yuhong_plc/zzz.Common/bin/Release/net6.0/zzz.Common.pdb new file mode 100644 index 0000000..72c1cc3 Binary files /dev/null and b/yuhong_plc/zzz.Common/bin/Release/net6.0/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/yuhong_plc/zzz.Common/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.AssemblyInfo.cs b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.AssemblyInfo.cs new file mode 100644 index 0000000..7fad772 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("cjyx.Common")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("cjyx.Common")] +[assembly: System.Reflection.AssemblyTitleAttribute("cjyx.Common")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.AssemblyInfoInputs.cache new file mode 100644 index 0000000..3d45f7a --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +18974b19da84963d0526b8b91048c43707b20458 diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..086c446 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = cjyx.Common +build_property.ProjectDir = D:\work\长江云息\Src\cjyx\cjyx.Common\ diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.GlobalUsings.g.cs b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.assets.cache b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.assets.cache new file mode 100644 index 0000000..a5d376f Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.assets.cache differ diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.csproj.AssemblyReference.cache new file mode 100644 index 0000000..0b39299 Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..8c6aabf --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a848b2d801bcf4d6e32cfe078ec874b2cde5f652 diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..99716e4 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.csproj.FileListAbsolute.txt @@ -0,0 +1,12 @@ +D:\work\长江云息\Src\cjyx\cjyx.Common\bin\Debug\net6.0\cjyx.Common.deps.json +D:\work\长江云息\Src\cjyx\cjyx.Common\bin\Debug\net6.0\cjyx.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Common\bin\Debug\net6.0\ref\cjyx.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Common\bin\Debug\net6.0\cjyx.Common.pdb +D:\work\长江云息\Src\cjyx\cjyx.Common\obj\Debug\net6.0\cjyx.Common.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\cjyx.Common\obj\Debug\net6.0\cjyx.Common.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Common\obj\Debug\net6.0\cjyx.Common.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.Common\obj\Debug\net6.0\cjyx.Common.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Common\obj\Debug\net6.0\cjyx.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Common\obj\Debug\net6.0\ref\cjyx.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Common\obj\Debug\net6.0\cjyx.Common.pdb +D:\work\长江云息\Src\cjyx\cjyx.Common\obj\Debug\net6.0\cjyx.Common.csproj.AssemblyReference.cache diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.dll b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.dll new file mode 100644 index 0000000..993149d Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.dll differ diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.pdb b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.pdb new file mode 100644 index 0000000..c259918 Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Debug/net6.0/cjyx.Common.pdb differ diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/ref/cjyx.Common.dll b/yuhong_plc/zzz.Common/obj/Debug/net6.0/ref/cjyx.Common.dll new file mode 100644 index 0000000..1dd9dc7 Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Debug/net6.0/ref/cjyx.Common.dll differ diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/ref/zzz.Common.dll b/yuhong_plc/zzz.Common/obj/Debug/net6.0/ref/zzz.Common.dll new file mode 100644 index 0000000..92bdb93 Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Debug/net6.0/ref/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/refint/zzz.Common.dll b/yuhong_plc/zzz.Common/obj/Debug/net6.0/refint/zzz.Common.dll new file mode 100644 index 0000000..92bdb93 Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Debug/net6.0/refint/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.AssemblyInfo.cs b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.AssemblyInfo.cs new file mode 100644 index 0000000..da63730 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("zzz.Common")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("zzz.Common")] +[assembly: System.Reflection.AssemblyTitleAttribute("zzz.Common")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c9827c7 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +970d7f0ea9c7785d942515857793512e5ce9f556 diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b8503f7 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = zzz.Common +build_property.ProjectDir = F:\yuhong_plc\zzz.Common\ diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.GlobalUsings.g.cs b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.assets.cache b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.assets.cache new file mode 100644 index 0000000..90e7e3b Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.assets.cache differ diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.csproj.AssemblyReference.cache new file mode 100644 index 0000000..fc83260 Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..75d63be --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ea7134be15cd701154c116e8c6ad137ae622ca69 diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..043f7d5 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.csproj.FileListAbsolute.txt @@ -0,0 +1,71 @@ +D:\work\长江云息\Src\cjyx\cjyx.Common\bin\Debug\net6.0\zzz.Common.deps.json +D:\work\长江云息\Src\cjyx\cjyx.Common\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Common\bin\Debug\net6.0\ref\zzz.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Common\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\Src\cjyx\cjyx.Common\obj\Debug\net6.0\zzz.Common.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\cjyx.Common\obj\Debug\net6.0\zzz.Common.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Common\obj\Debug\net6.0\zzz.Common.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.Common\obj\Debug\net6.0\zzz.Common.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Common\obj\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Common\obj\Debug\net6.0\ref\zzz.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Common\obj\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\Src\cjyx\zzz.Common\bin\Debug\net6.0\zzz.Common.deps.json +D:\work\长江云息\Src\cjyx\zzz.Common\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\Src\cjyx\zzz.Common\bin\Debug\net6.0\ref\zzz.Common.dll +D:\work\长江云息\Src\cjyx\zzz.Common\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\Src\cjyx\zzz.Common\obj\Debug\net6.0\zzz.Common.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\zzz.Common\obj\Debug\net6.0\zzz.Common.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\zzz.Common\obj\Debug\net6.0\zzz.Common.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\zzz.Common\obj\Debug\net6.0\zzz.Common.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\zzz.Common\obj\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\Src\cjyx\zzz.Common\obj\Debug\net6.0\ref\zzz.Common.dll +D:\work\长江云息\Src\cjyx\zzz.Common\obj\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\Src\cjyx\zzz.Common\obj\Debug\net6.0\zzz.Common.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Common\bin\Debug\net6.0\zzz.Common.deps.json +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Common\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Common\bin\Debug\net6.0\ref\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Common\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Common\obj\Debug\net6.0\zzz.Common.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Common\obj\Debug\net6.0\zzz.Common.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Common\obj\Debug\net6.0\zzz.Common.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Common\obj\Debug\net6.0\zzz.Common.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Common\obj\Debug\net6.0\zzz.Common.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Common\obj\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Common\obj\Debug\net6.0\ref\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Common\obj\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\bin\Debug\net6.0\zzz.Common.deps.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\bin\Debug\net6.0\ref\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\zzz.Common.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\zzz.Common.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\zzz.Common.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\zzz.Common.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\ref\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\zzz.Common.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\bin\Debug\net6.0\zzz.Common.deps.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\bin\Debug\net6.0\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\bin\Debug\net6.0\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\zzz.Common.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\zzz.Common.GeneratedMSBuildEditorConfig.editorconfig +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\zzz.Common.AssemblyInfoInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\zzz.Common.AssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\zzz.Common.csproj.CoreCompileInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\refint\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Debug\net6.0\ref\zzz.Common.dll +F:\yuhong_plc\zzz.Common\bin\Debug\net6.0\zzz.Common.deps.json +F:\yuhong_plc\zzz.Common\bin\Debug\net6.0\zzz.Common.dll +F:\yuhong_plc\zzz.Common\bin\Debug\net6.0\zzz.Common.pdb +F:\yuhong_plc\zzz.Common\obj\Debug\net6.0\zzz.Common.csproj.AssemblyReference.cache +F:\yuhong_plc\zzz.Common\obj\Debug\net6.0\zzz.Common.GeneratedMSBuildEditorConfig.editorconfig +F:\yuhong_plc\zzz.Common\obj\Debug\net6.0\zzz.Common.AssemblyInfoInputs.cache +F:\yuhong_plc\zzz.Common\obj\Debug\net6.0\zzz.Common.AssemblyInfo.cs +F:\yuhong_plc\zzz.Common\obj\Debug\net6.0\zzz.Common.csproj.CoreCompileInputs.cache +F:\yuhong_plc\zzz.Common\obj\Debug\net6.0\zzz.Common.dll +F:\yuhong_plc\zzz.Common\obj\Debug\net6.0\refint\zzz.Common.dll +F:\yuhong_plc\zzz.Common\obj\Debug\net6.0\zzz.Common.pdb +F:\yuhong_plc\zzz.Common\obj\Debug\net6.0\ref\zzz.Common.dll diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.dll b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.dll new file mode 100644 index 0000000..6d6f1c6 Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.pdb b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.pdb new file mode 100644 index 0000000..4c5a6d4 Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Debug/net6.0/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Common/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/yuhong_plc/zzz.Common/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/yuhong_plc/zzz.Common/obj/Release/net6.0/ref/zzz.Common.dll b/yuhong_plc/zzz.Common/obj/Release/net6.0/ref/zzz.Common.dll new file mode 100644 index 0000000..0a3ca6d Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Release/net6.0/ref/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Common/obj/Release/net6.0/refint/zzz.Common.dll b/yuhong_plc/zzz.Common/obj/Release/net6.0/refint/zzz.Common.dll new file mode 100644 index 0000000..0a3ca6d Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Release/net6.0/refint/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.AssemblyInfo.cs b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.AssemblyInfo.cs new file mode 100644 index 0000000..995f5b2 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("zzz.Common")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("zzz.Common")] +[assembly: System.Reflection.AssemblyTitleAttribute("zzz.Common")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.AssemblyInfoInputs.cache new file mode 100644 index 0000000..74eb466 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +9945938c8aff0c74d075daa943dd1761e9fa02b9 diff --git a/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b8503f7 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = zzz.Common +build_property.ProjectDir = F:\yuhong_plc\zzz.Common\ diff --git a/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.GlobalUsings.g.cs b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.assets.cache b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.assets.cache new file mode 100644 index 0000000..da99db2 Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.assets.cache differ diff --git a/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.csproj.AssemblyReference.cache new file mode 100644 index 0000000..545ad62 Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.csproj.BuildWithSkipAnalyzers b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..1225909 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +5a55deff3e5eed25ddab75b5b8049c19c7d0491d diff --git a/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..31fd5b8 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.csproj.FileListAbsolute.txt @@ -0,0 +1,36 @@ +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\bin\Release\net6.0\zzz.Common.deps.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\bin\Release\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\bin\Release\net6.0\ref\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\bin\Release\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\zzz.Common.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\zzz.Common.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\zzz.Common.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\zzz.Common.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\zzz.Common.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\ref\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\bin\Release\net6.0\zzz.Common.deps.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\bin\Release\net6.0\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\bin\Release\net6.0\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\zzz.Common.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\zzz.Common.GeneratedMSBuildEditorConfig.editorconfig +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\zzz.Common.AssemblyInfoInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\zzz.Common.AssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\zzz.Common.csproj.CoreCompileInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\refint\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Common\obj\Release\net6.0\ref\zzz.Common.dll +F:\yuhong_plc\zzz.Common\bin\Release\net6.0\zzz.Common.deps.json +F:\yuhong_plc\zzz.Common\bin\Release\net6.0\zzz.Common.dll +F:\yuhong_plc\zzz.Common\bin\Release\net6.0\zzz.Common.pdb +F:\yuhong_plc\zzz.Common\obj\Release\net6.0\zzz.Common.csproj.AssemblyReference.cache +F:\yuhong_plc\zzz.Common\obj\Release\net6.0\zzz.Common.GeneratedMSBuildEditorConfig.editorconfig +F:\yuhong_plc\zzz.Common\obj\Release\net6.0\zzz.Common.AssemblyInfoInputs.cache +F:\yuhong_plc\zzz.Common\obj\Release\net6.0\zzz.Common.AssemblyInfo.cs +F:\yuhong_plc\zzz.Common\obj\Release\net6.0\zzz.Common.csproj.CoreCompileInputs.cache +F:\yuhong_plc\zzz.Common\obj\Release\net6.0\zzz.Common.dll +F:\yuhong_plc\zzz.Common\obj\Release\net6.0\refint\zzz.Common.dll +F:\yuhong_plc\zzz.Common\obj\Release\net6.0\zzz.Common.pdb +F:\yuhong_plc\zzz.Common\obj\Release\net6.0\ref\zzz.Common.dll diff --git a/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.dll b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.dll new file mode 100644 index 0000000..64d9d86 Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.pdb b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.pdb new file mode 100644 index 0000000..72c1cc3 Binary files /dev/null and b/yuhong_plc/zzz.Common/obj/Release/net6.0/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Common/obj/cjyx.Common.csproj.nuget.dgspec.json b/yuhong_plc/zzz.Common/obj/cjyx.Common.csproj.nuget.dgspec.json new file mode 100644 index 0000000..3528b82 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/cjyx.Common.csproj.nuget.dgspec.json @@ -0,0 +1,116 @@ +{ + "format": 1, + "restore": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\cjyx.Common.csproj": {} + }, + "projects": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\cjyx.Common.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\cjyx.Common.csproj", + "projectName": "cjyx.Common", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\cjyx.Common.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "Microsoft.AspNetCore.SignalR.Core": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.Extensions.Configuration": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.Extensions.Configuration.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Binder": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Json": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Hosting.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.11.0, )" + }, + "Serilog.Sinks.File": { + "target": "Package", + "version": "[5.0.0, )" + }, + "WebApiClient.Extensions.DependencyInjection": { + "target": "Package", + "version": "[2.0.3, )" + }, + "Yitter.IdGenerator": { + "target": "Package", + "version": "[1.0.12, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/obj/cjyx.Common.csproj.nuget.g.props b/yuhong_plc/zzz.Common/obj/cjyx.Common.csproj.nuget.g.props new file mode 100644 index 0000000..2b6b4fc --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/cjyx.Common.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\BLACK\.nuget\packages\;D:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.0.0 + + + + + + + C:\Users\BLACK\.nuget\packages\webapiclient.jit\1.0.3 + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/obj/cjyx.Common.csproj.nuget.g.targets b/yuhong_plc/zzz.Common/obj/cjyx.Common.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/cjyx.Common.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/obj/project.assets.json b/yuhong_plc/zzz.Common/obj/project.assets.json new file mode 100644 index 0000000..aae3787 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/project.assets.json @@ -0,0 +1,2412 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "AutoMapper/11.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "compile": { + "lib/netstandard2.1/AutoMapper.dll": {} + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": {} + } + }, + "log4net/2.0.14": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/log4net.dll": {} + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Options/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Primitives": "2.2.0", + "System.ComponentModel.Annotations": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Serilog/2.11.0": { + "type": "package", + "compile": { + "lib/net5.0/Serilog.dll": {} + }, + "runtime": { + "lib/net5.0/Serilog.dll": {} + } + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.File.dll": {} + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": {} + } + }, + "System.Buffers/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.ComponentModel.Annotations/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.5.0", + "System.Security.Permissions": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "compile": { + "ref/netstandard1.3/System.IO.Pipelines.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Caching/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Configuration.ConfigurationManager": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/System.Threading.Channels.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Threading.Channels.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "compile": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": {} + } + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "System.Runtime.Caching": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": {} + } + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "compile": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": {} + } + } + } + }, + "libraries": { + "AutoMapper/11.0.1": { + "sha512": "WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "type": "package", + "path": "automapper/11.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.11.0.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/netstandard2.1/AutoMapper.dll", + "lib/netstandard2.1/AutoMapper.xml" + ] + }, + "log4net/2.0.14": { + "sha512": "KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "type": "package", + "path": "log4net/2.0.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/log4net.dll", + "lib/net20/log4net.xml", + "lib/net35-client/log4net.dll", + "lib/net35-client/log4net.xml", + "lib/net35/log4net.dll", + "lib/net35/log4net.xml", + "lib/net40-client/log4net.dll", + "lib/net40-client/log4net.xml", + "lib/net40/log4net.dll", + "lib/net40/log4net.xml", + "lib/net45/log4net.dll", + "lib/net45/log4net.xml", + "lib/netstandard1.3/log4net.dll", + "lib/netstandard1.3/log4net.xml", + "lib/netstandard2.0/log4net.dll", + "lib/netstandard2.0/log4net.xml", + "log4net.2.0.14.nupkg.sha512", + "log4net.nuspec", + "package-icon.png" + ] + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "sha512": "Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "type": "package", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml", + "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.connections.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "sha512": "TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.xml", + "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.common.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "sha512": "mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.xml", + "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.core.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "sha512": "BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml", + "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.protocols.json.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "sha512": "BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "type": "package", + "path": "microsoft.extensions.configuration/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.dll", + "lib/net461/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.6.0.1.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net461/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "type": "package", + "path": "microsoft.extensions.configuration.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Json.dll", + "lib/net461/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "sha512": "GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "sha512": "B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Options/2.2.0": { + "sha512": "UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==", + "type": "package", + "path": "microsoft.extensions.options/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.2.2.0.nupkg.sha512", + "microsoft.extensions.options.nuspec" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "type": "package", + "path": "microsoft.netcore.platforms/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Newtonsoft.Json/11.0.2": { + "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "type": "package", + "path": "newtonsoft.json/11.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.11.0.2.nupkg.sha512", + "newtonsoft.json.nuspec" + ] + }, + "Serilog/2.11.0": { + "sha512": "ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "type": "package", + "path": "serilog/2.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.dll", + "lib/net45/Serilog.xml", + "lib/net46/Serilog.dll", + "lib/net46/Serilog.xml", + "lib/net5.0/Serilog.dll", + "lib/net5.0/Serilog.xml", + "lib/netstandard1.0/Serilog.dll", + "lib/netstandard1.0/Serilog.xml", + "lib/netstandard1.3/Serilog.dll", + "lib/netstandard1.3/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.2.11.0.nupkg.sha512", + "serilog.nuspec" + ] + }, + "Serilog.Sinks.File/5.0.0": { + "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "type": "package", + "path": "serilog.sinks.file/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "images/icon.png", + "lib/net45/Serilog.Sinks.File.dll", + "lib/net45/Serilog.Sinks.File.pdb", + "lib/net45/Serilog.Sinks.File.xml", + "lib/net5.0/Serilog.Sinks.File.dll", + "lib/net5.0/Serilog.Sinks.File.pdb", + "lib/net5.0/Serilog.Sinks.File.xml", + "lib/netstandard1.3/Serilog.Sinks.File.dll", + "lib/netstandard1.3/Serilog.Sinks.File.pdb", + "lib/netstandard1.3/Serilog.Sinks.File.xml", + "lib/netstandard2.0/Serilog.Sinks.File.dll", + "lib/netstandard2.0/Serilog.Sinks.File.pdb", + "lib/netstandard2.0/Serilog.Sinks.File.xml", + "lib/netstandard2.1/Serilog.Sinks.File.dll", + "lib/netstandard2.1/Serilog.Sinks.File.pdb", + "lib/netstandard2.1/Serilog.Sinks.File.xml", + "serilog.sinks.file.5.0.0.nupkg.sha512", + "serilog.sinks.file.nuspec" + ] + }, + "System.Buffers/4.5.0": { + "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "type": "package", + "path": "system.buffers/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.0.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Annotations/4.5.0": { + "sha512": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", + "type": "package", + "path": "system.componentmodel.annotations/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/portable-net45+win8/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.4.5.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", + "type": "package", + "path": "system.configuration.configurationmanager/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO/4.3.0": { + "sha512": "faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Pipelines/4.5.2": { + "sha512": "NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "type": "package", + "path": "system.io.pipelines/4.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/System.IO.Pipelines.dll", + "lib/netcoreapp2.1/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netstandard1.3/System.IO.Pipelines.dll", + "system.io.pipelines.4.5.2.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/4.5.0": { + "sha512": "95j9KShuaAENf2gLbQ/9YoJDHIWAnoaFYA71xo4QVQyLkOMginn34cD1+6RcYIrqJamLkMXgvgUnOzwzBk+U0w==", + "type": "package", + "path": "system.runtime.caching/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard2.0/System.Runtime.Caching.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll", + "system.runtime.caching.4.5.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.AccessControl/4.5.0": { + "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "type": "package", + "path": "system.security.accesscontrol/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.5.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Permissions/4.5.0": { + "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "type": "package", + "path": "system.security.permissions/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.5.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.5.0": { + "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "type": "package", + "path": "system.security.principal.windows/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.5.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/6.0.0": { + "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "type": "package", + "path": "system.text.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "build/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/netcoreapp3.1/System.Text.Json.dll", + "lib/netcoreapp3.1/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.6.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Channels/4.5.0": { + "sha512": "MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "type": "package", + "path": "system.threading.channels/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/System.Threading.Channels.dll", + "lib/netcoreapp2.1/System.Threading.Channels.xml", + "lib/netstandard1.3/System.Threading.Channels.dll", + "lib/netstandard1.3/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "system.threading.channels.4.5.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "sha512": "YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "type": "package", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.xml", + "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512", + "webapiclient.extensions.dependencyinjection.nuspec" + ] + }, + "WebApiClient.JIT/1.0.3": { + "sha512": "mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "type": "package", + "path": "webapiclient.jit/1.0.3", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/WebApiClient.Analyzers.deps.json", + "analyzers/dotnet/cs/WebApiClient.Analyzers.dll", + "lib/net45/WebApiClient.JIT.dll", + "lib/net45/WebApiClient.JIT.xml", + "lib/netcoreapp2.1/WebApiClient.JIT.dll", + "lib/netcoreapp2.1/WebApiClient.JIT.xml", + "lib/netstandard1.3/WebApiClient.JIT.dll", + "lib/netstandard1.3/WebApiClient.JIT.xml", + "lib/netstandard2.0/WebApiClient.JIT.dll", + "lib/netstandard2.0/WebApiClient.JIT.xml", + "tools/install.ps1", + "tools/uninstall.ps1", + "webapiclient.jit.1.0.3.nupkg.sha512", + "webapiclient.jit.nuspec" + ] + }, + "Yitter.IdGenerator/1.0.12": { + "sha512": "hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "type": "package", + "path": "yitter.idgenerator/1.0.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Yitter.IdGenerator.dll", + "yitter.idgenerator.1.0.12.nupkg.sha512", + "yitter.idgenerator.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "AutoMapper >= 11.0.1", + "Microsoft.AspNetCore.SignalR.Core >= 1.1.0", + "Microsoft.Extensions.Configuration >= 6.0.1", + "Microsoft.Extensions.Configuration.Abstractions >= 6.0.0", + "Microsoft.Extensions.Configuration.Binder >= 6.0.0", + "Microsoft.Extensions.Configuration.Json >= 6.0.0", + "Microsoft.Extensions.Hosting.Abstractions >= 6.0.0", + "Serilog >= 2.11.0", + "Serilog.Sinks.File >= 5.0.0", + "WebApiClient.Extensions.DependencyInjection >= 2.0.3", + "Yitter.IdGenerator >= 1.0.12", + "log4net >= 2.0.14" + ] + }, + "packageFolders": { + "C:\\Users\\Administrator\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj", + "projectName": "zzz.Common", + "projectPath": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Common\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "Microsoft.AspNetCore.SignalR.Core": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.Extensions.Configuration": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.Extensions.Configuration.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Binder": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Json": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Hosting.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.11.0, )" + }, + "Serilog.Sinks.File": { + "target": "Package", + "version": "[5.0.0, )" + }, + "WebApiClient.Extensions.DependencyInjection": { + "target": "Package", + "version": "[2.0.3, )" + }, + "Yitter.IdGenerator": { + "target": "Package", + "version": "[1.0.12, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/obj/project.nuget.cache b/yuhong_plc/zzz.Common/obj/project.nuget.cache new file mode 100644 index 0000000..dda6e37 --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/project.nuget.cache @@ -0,0 +1,60 @@ +{ + "version": 2, + "dgSpecHash": "JSdzcdYgerOlAahH1Tb68Lw1rmCAh2sNUDofAdfoPZcFbUZnIeRG1UDe04LtEdmUOGFEwUcEQ81gOicsoAERLQ==", + "success": true, + "projectFilePath": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Administrator\\.nuget\\packages\\automapper\\11.0.1\\automapper.11.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\log4net\\2.0.14\\log4net.2.0.14.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.connections.abstractions\\2.2.0\\microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.common\\1.1.0\\microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.core\\1.1.0\\microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.protocols.json\\1.1.0\\microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration\\6.0.1\\microsoft.extensions.configuration.6.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0\\microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.binder\\6.0.0\\microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\6.0.0\\microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.json\\6.0.0\\microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\6.0.0\\microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\6.0.0\\microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\6.0.0\\microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\6.0.0\\microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\2.2.0\\microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.options\\2.2.0\\microsoft.extensions.options.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\newtonsoft.json\\11.0.2\\newtonsoft.json.11.0.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\serilog\\2.11.0\\serilog.2.11.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\serilog.sinks.file\\5.0.0\\serilog.sinks.file.5.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.annotations\\4.5.0\\system.componentmodel.annotations.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.pipelines\\4.5.2\\system.io.pipelines.4.5.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.caching\\4.5.0\\system.runtime.caching.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.json\\6.0.0\\system.text.json.6.0.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.channels\\4.5.0\\system.threading.channels.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\webapiclient.extensions.dependencyinjection\\2.0.3\\webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\webapiclient.jit\\1.0.3\\webapiclient.jit.1.0.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\yitter.idgenerator\\1.0.12\\yitter.idgenerator.1.0.12.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/obj/zzz.Common.csproj.nuget.dgspec.json b/yuhong_plc/zzz.Common/obj/zzz.Common.csproj.nuget.dgspec.json new file mode 100644 index 0000000..c5b2bdd --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/zzz.Common.csproj.nuget.dgspec.json @@ -0,0 +1,115 @@ +{ + "format": 1, + "restore": { + "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj": {} + }, + "projects": { + "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj", + "projectName": "zzz.Common", + "projectPath": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Common\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "Microsoft.AspNetCore.SignalR.Core": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.Extensions.Configuration": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.Extensions.Configuration.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Binder": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Json": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Hosting.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.11.0, )" + }, + "Serilog.Sinks.File": { + "target": "Package", + "version": "[5.0.0, )" + }, + "WebApiClient.Extensions.DependencyInjection": { + "target": "Package", + "version": "[2.0.3, )" + }, + "Yitter.IdGenerator": { + "target": "Package", + "version": "[1.0.12, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/obj/zzz.Common.csproj.nuget.g.props b/yuhong_plc/zzz.Common/obj/zzz.Common.csproj.nuget.g.props new file mode 100644 index 0000000..15ee09f --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/zzz.Common.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Administrator\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.2.1 + + + + + + + C:\Users\Administrator\.nuget\packages\webapiclient.jit\1.0.3 + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/obj/zzz.Common.csproj.nuget.g.targets b/yuhong_plc/zzz.Common/obj/zzz.Common.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/yuhong_plc/zzz.Common/obj/zzz.Common.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Common/zzz.Common.csproj b/yuhong_plc/zzz.Common/zzz.Common.csproj new file mode 100644 index 0000000..c10effc --- /dev/null +++ b/yuhong_plc/zzz.Common/zzz.Common.csproj @@ -0,0 +1,24 @@ + + + + net6.0 + enable + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Extensions/AOP/zzzLogAOP.cs b/yuhong_plc/zzz.Extensions/AOP/zzzLogAOP.cs new file mode 100644 index 0000000..4bcac50 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/AOP/zzzLogAOP.cs @@ -0,0 +1,222 @@ +using zzz.Common.LogHelper; +using zzz.Hubs; +using Castle.DynamicProxy; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.SignalR; +using Newtonsoft.Json; +using StackExchange.Profiling; +using System; +using System.Linq; +using System.Reflection; +using System.Threading.Tasks; + +namespace zzz.AOP +{ + /// + /// 拦截器zzzLogAOP 继承IInterceptor接口 + /// + public class zzzLogAOP : IInterceptor + { + private readonly IHubContext _hubContext; + private readonly IHttpContextAccessor _accessor; + + public zzzLogAOP(IHubContext hubContext, IHttpContextAccessor accessor) + { + _hubContext = hubContext; + _accessor = accessor; + } + + + /// + /// 实例化IInterceptor唯一方法 + /// + /// 包含被拦截方法的信息 + public void Intercept(IInvocation invocation) + { + string UserName = _accessor.HttpContext?.User?.Identity?.Name; + + //记录被拦截方法信息的日志信息 + var dataIntercept = "" + + $"【当前操作用户】:{ UserName} \r\n" + + $"【当前执行方法】:{ invocation.Method.Name} \r\n" + + $"【携带的参数有】: {string.Join(", ", invocation.Arguments.Select(a => (a ?? "").ToString()).ToArray())} \r\n"; + + try + { + MiniProfiler.Current.Step($"执行Service方法:{invocation.Method.Name}() -> "); + //在被拦截的方法执行完毕后 继续执行当前方法,注意是被拦截的是异步的 + invocation.Proceed(); + + + // 异步获取异常,先执行 + if (IsAsyncMethod(invocation.Method)) + { + + #region 方案一 + //Wait task execution and modify return value + if (invocation.Method.ReturnType == typeof(Task)) + { + invocation.ReturnValue = InternalAsyncHelper.AwaitTaskWithPostActionAndFinally( + (Task)invocation.ReturnValue, + async () => await SuccessAction(invocation, dataIntercept),/*成功时执行*/ + ex => + { + LogEx(ex, dataIntercept); + }); + } + //Task + else + { + invocation.ReturnValue = InternalAsyncHelper.CallAwaitTaskWithPostActionAndFinallyAndGetResult( + invocation.Method.ReturnType.GenericTypeArguments[0], + invocation.ReturnValue, + //async () => await SuccessAction(invocation, dataIntercept),/*成功时执行*/ + async (o) => await SuccessAction(invocation, dataIntercept, o),/*成功时执行*/ + ex => + { + LogEx(ex, dataIntercept); + }); + } + #endregion + + + // 如果方案一不行,试试这个方案 + #region 方案二 + + //var type = invocation.Method.ReturnType; + //var resultProperty = type.GetProperty("Result"); + //dataIntercept += ($"【执行完成结果】:{JsonConvert.SerializeObject(resultProperty.GetValue(invocation.ReturnValue))}"); + + //Parallel.For(0, 1, e => + //{ + // LogLock.OutSql2Log("AOPLog", new string[] { dataIntercept }); + //}); + + #endregion + } + else + {// 同步1 + + dataIntercept += ($"【执行完成结果】:{invocation.ReturnValue}"); + Parallel.For(0, 1, e => + { + LogLock.OutSql2Log("AOPLog", new string[] { dataIntercept }); + }); + } + } + catch (Exception ex)// 同步2 + { + LogEx(ex, dataIntercept); + + } + + _hubContext.Clients.All.SendAsync("ReceiveUpdate", LogLock.GetLogData()).Wait(); + } + + private async Task SuccessAction(IInvocation invocation, string dataIntercept, object o = null) + { + //invocation.ReturnValue = o; + //var type = invocation.Method.ReturnType; + //if (typeof(Task).IsAssignableFrom(type)) + //{ + // //var resultProperty = type.GetProperty("Result"); + // //类型错误 都可以不要invocation参数,直接将o系列化保存到日记中 + // dataIntercept += ($"【执行完成结果】:{JsonConvert.SerializeObject(invocation.ReturnValue)}"); + //} + //else + //{ + // dataIntercept += ($"【执行完成结果】:{invocation.ReturnValue}"); + //} + + dataIntercept += ($"【执行完成结果】:{JsonConvert.SerializeObject(o)}"); + + + await Task.Run(() => + { + Parallel.For(0, 1, e => + { + LogLock.OutSql2Log("AOPLog", new string[] { dataIntercept }); + }); + }); + } + + private void LogEx(Exception ex, string dataIntercept) + { + if (ex != null) + { + //执行的 service 中,收录异常 + MiniProfiler.Current.CustomTiming("Errors:", ex.Message); + //执行的 service 中,捕获异常 + dataIntercept += ($"【执行完成结果】:方法中出现异常:{ex.Message + ex.InnerException}\r\n"); + + // 异常日志里有详细的堆栈信息 + Parallel.For(0, 1, e => + { + LogLock.OutSql2Log("AOPLog", new string[] { dataIntercept }); + }); + } + } + + + public static bool IsAsyncMethod(MethodInfo method) + { + return ( + method.ReturnType == typeof(Task) || + (method.ReturnType.IsGenericType && method.ReturnType.GetGenericTypeDefinition() == typeof(Task<>)) + ); + } + + } + + + internal static class InternalAsyncHelper + { + public static async Task AwaitTaskWithPostActionAndFinally(Task actualReturnValue, Func postAction, Action finalAction) + { + Exception exception = null; + + try + { + await actualReturnValue; + await postAction(); + } + catch (Exception ex) + { + exception = ex; + } + finally + { + finalAction(exception); + } + } + + public static async Task AwaitTaskWithPostActionAndFinallyAndGetResult(Task actualReturnValue, Func postAction, Action finalAction) + { + Exception exception = null; + try + { + var result = await actualReturnValue; + await postAction(result); + return result; + } + catch (Exception ex) + { + exception = ex; + throw; + } + finally + { + finalAction(exception); + } + } + + public static object CallAwaitTaskWithPostActionAndFinallyAndGetResult(Type taskReturnType, object actualReturnValue, Func action, Action finalAction) + { + return typeof(InternalAsyncHelper) + .GetMethod("AwaitTaskWithPostActionAndFinallyAndGetResult", BindingFlags.Public | BindingFlags.Static) + .MakeGenericMethod(taskReturnType) + .Invoke(null, new object[] { actualReturnValue, action, finalAction }); + } + } + +} diff --git a/yuhong_plc/zzz.Extensions/AOP/zzzTranAOP.cs b/yuhong_plc/zzz.Extensions/AOP/zzzTranAOP.cs new file mode 100644 index 0000000..814dc8a --- /dev/null +++ b/yuhong_plc/zzz.Extensions/AOP/zzzTranAOP.cs @@ -0,0 +1,91 @@ +using zzz.Common; +using Castle.DynamicProxy; +using System; +using System.Linq; +using System.Reflection; +using System.Threading.Tasks; +using zzz.Repository.UnitOfWork; + +namespace zzz.AOP +{ + /// + /// 事务拦截器zzzTranAOP 继承IInterceptor接口 + /// + public class zzzTranAOP : IInterceptor + { + private readonly IUnitOfWork _unitOfWork; + public zzzTranAOP(IUnitOfWork unitOfWork) + { + _unitOfWork = unitOfWork; + } + + /// + /// 实例化IInterceptor唯一方法 + /// + /// 包含被拦截方法的信息 + public void Intercept(IInvocation invocation) + { + var method = invocation.MethodInvocationTarget ?? invocation.Method; + //对当前方法的特性验证 + //如果需要验证 + if (method.GetCustomAttributes(true).FirstOrDefault(x => x.GetType() == typeof(UseTranAttribute)) is UseTranAttribute) + { + try + { + Console.WriteLine($"Begin Transaction"); + + _unitOfWork.BeginTran(); + + invocation.Proceed(); + + + // 异步获取异常,先执行 + if (IsAsyncMethod(invocation.Method)) + { + var result = invocation.ReturnValue; + if (result is Task) + { + Task.WaitAll(result as Task); + } + } + _unitOfWork.CommitTran(); + + } + catch (Exception) + { + Console.WriteLine($"Rollback Transaction"); + _unitOfWork.RollbackTran(); + } + } + else + { + invocation.Proceed();//直接执行被拦截方法 + } + + } + + private async Task SuccessAction(IInvocation invocation) + { + await Task.Run(() => + { + //... + }); + } + + public static bool IsAsyncMethod(MethodInfo method) + { + return ( + method.ReturnType == typeof(Task) || + (method.ReturnType.IsGenericType && method.ReturnType.GetGenericTypeDefinition() == typeof(Task<>)) + ); + } + private async Task TestActionAsync(IInvocation invocation) + { + await Task.Run(null); + } + + } + + + +} diff --git a/yuhong_plc/zzz.Extensions/AutoMapper/AutoMapperConfig.cs b/yuhong_plc/zzz.Extensions/AutoMapper/AutoMapperConfig.cs new file mode 100644 index 0000000..9c4f1cc --- /dev/null +++ b/yuhong_plc/zzz.Extensions/AutoMapper/AutoMapperConfig.cs @@ -0,0 +1,18 @@ +using AutoMapper; + +namespace zzz.AutoMapper +{ + /// + /// 静态全局 AutoMapper 配置文件 + /// + public class AutoMapperConfig + { + public static MapperConfiguration RegisterMappings() + { + return new MapperConfiguration(cfg => + { + cfg.AddProfile(new CustomProfile()); + }); + } + } +} diff --git a/yuhong_plc/zzz.Extensions/AutoMapper/CustomProfile.cs b/yuhong_plc/zzz.Extensions/AutoMapper/CustomProfile.cs new file mode 100644 index 0000000..17276b9 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/AutoMapper/CustomProfile.cs @@ -0,0 +1,54 @@ +using AutoMapper; +using zzz.Model.ViewModels; + +namespace zzz.AutoMapper +{ + public class CustomProfile : Profile + { + /// + /// 配置构造函数,用来创建关系映射 + /// + public CustomProfile() + { + //CreateMap(); + //CreateMap(); + + //CreateMap() + // .ForMember(a => a.uID, o => o.MapFrom(d => d.Id)) + // .ForMember(a => a.RIDs, o => o.MapFrom(d => d.RIDs)) + // .ForMember(a => a.addr, o => o.MapFrom(d => d.Address)) + // .ForMember(a => a.age, o => o.MapFrom(d => d.Age)) + // .ForMember(a => a.birth, o => o.MapFrom(d => d.Birth)) + // .ForMember(a => a.uStatus, o => o.MapFrom(d => d.Status)) + // .ForMember(a => a.uUpdateTime, o => o.MapFrom(d => d.UpdateTime)) + // .ForMember(a => a.uCreateTime, o => o.MapFrom(d => d.CreateTime)) + // .ForMember(a => a.uErrorCount, o => o.MapFrom(d => d.ErrorCount)) + // .ForMember(a => a.uLastErrTime, o => o.MapFrom(d => d.LastErrorTime)) + // .ForMember(a => a.uLoginName, o => o.MapFrom(d => d.LoginName)) + // .ForMember(a => a.uLoginPWD, o => o.MapFrom(d => d.LoginPWD)) + // .ForMember(a => a.uRemark, o => o.MapFrom(d => d.Remark)) + // .ForMember(a => a.uRealName, o => o.MapFrom(d => d.RealName)) + // .ForMember(a => a.name, o => o.MapFrom(d => d.Name)) + // .ForMember(a => a.tdIsDelete, o => o.MapFrom(d => d.IsDeleted)) + // .ForMember(a => a.RoleNames, o => o.MapFrom(d => d.RoleNames)); + //CreateMap() + // .ForMember(a => a.Id, o => o.MapFrom(d => d.uID)) + // .ForMember(a => a.Address, o => o.MapFrom(d => d.addr)) + // .ForMember(a => a.RIDs, o => o.MapFrom(d => d.RIDs)) + // .ForMember(a => a.Age, o => o.MapFrom(d => d.age)) + // .ForMember(a => a.Birth, o => o.MapFrom(d => d.birth)) + // .ForMember(a => a.Status, o => o.MapFrom(d => d.uStatus)) + // .ForMember(a => a.UpdateTime, o => o.MapFrom(d => d.uUpdateTime)) + // .ForMember(a => a.CreateTime, o => o.MapFrom(d => d.uCreateTime)) + // .ForMember(a => a.ErrorCount, o => o.MapFrom(d => d.uErrorCount)) + // .ForMember(a => a.LastErrorTime, o => o.MapFrom(d => d.uLastErrTime)) + // .ForMember(a => a.LoginName, o => o.MapFrom(d => d.uLoginName)) + // .ForMember(a => a.LoginPWD, o => o.MapFrom(d => d.uLoginPWD)) + // .ForMember(a => a.Remark, o => o.MapFrom(d => d.uRemark)) + // .ForMember(a => a.RealName, o => o.MapFrom(d => d.uRealName)) + // .ForMember(a => a.Name, o => o.MapFrom(d => d.name)) + // .ForMember(a => a.IsDeleted, o => o.MapFrom(d => d.tdIsDelete)) + // .ForMember(a => a.RoleNames, o => o.MapFrom(d => d.RoleNames)); + } + } +} diff --git a/yuhong_plc/zzz.Extensions/Class1.cs b/yuhong_plc/zzz.Extensions/Class1.cs new file mode 100644 index 0000000..b2981f3 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/Class1.cs @@ -0,0 +1,7 @@ +namespace zzz.Extensions +{ + public class Class1 + { + + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Extensions/Middlewares/CorsMiddleware.cs b/yuhong_plc/zzz.Extensions/Middlewares/CorsMiddleware.cs new file mode 100644 index 0000000..e416077 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/Middlewares/CorsMiddleware.cs @@ -0,0 +1,27 @@ +using Microsoft.AspNetCore.Http; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Extensions.Middlewares +{ + public class CorsMiddleware + { + private readonly RequestDelegate _next; + public CorsMiddleware(RequestDelegate next) + { + _next = next; + } + + public async Task Invoke(HttpContext context) + { + if (!context.Response.Headers.ContainsKey("Access-Control-Allow-Origin")) + { + context.Response.Headers.Add("Access-Control-Allow-Origin", "*"); + } + await _next(context); + } + } +} diff --git a/yuhong_plc/zzz.Extensions/Middlewares/MiniProfilerMiddleware.cs b/yuhong_plc/zzz.Extensions/Middlewares/MiniProfilerMiddleware.cs new file mode 100644 index 0000000..345bd8d --- /dev/null +++ b/yuhong_plc/zzz.Extensions/Middlewares/MiniProfilerMiddleware.cs @@ -0,0 +1,34 @@ +using System; +using zzz.Common; +using log4net; +using Microsoft.AspNetCore.Builder; + +namespace zzz.Extensions.Middlewares +{ + /// + /// MiniProfiler性能分析 + /// + public static class MiniProfilerMiddleware + { + private static readonly ILog Log = LogManager.GetLogger(typeof(MiniProfilerMiddleware)); + public static void UseMiniProfilerMiddleware(this IApplicationBuilder app) + { + if (app == null) throw new ArgumentNullException(nameof(app)); + + try + { + if (Appsettings.app("Middleware", "MiniProfiler").ObjToBool()) + { + // 性能分析 + app.UseMiniProfiler(); + + } + } + catch (Exception e) + { + Log.Error($"An error was reported when starting the MiniProfilerMildd.\n{e.Message}"); + throw; + } + } + } +} diff --git a/yuhong_plc/zzz.Extensions/Middlewares/QuartzJobMiddleware.cs b/yuhong_plc/zzz.Extensions/Middlewares/QuartzJobMiddleware.cs new file mode 100644 index 0000000..ae2b960 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/Middlewares/QuartzJobMiddleware.cs @@ -0,0 +1,58 @@ +using System; +using zzz.Common; +using zzz.Model.Entity; +using zzz.Repository; +using zzz.Services.Sys.TasksQzs; +using zzz.Tasks; +using log4net; +using Microsoft.AspNetCore.Builder; + +namespace zzz.Extensions.Middlewares +{ + /// + /// Quartz 启动服务 + /// + public static class QuartzJobMiddleware + { + private static readonly ILog Log = LogManager.GetLogger(typeof(QuartzJobMiddleware)); + public static async void UseQuartzJobMiddleware( + this IApplicationBuilder app, + //ITasksQzServices tasksQzServices, + IBaseRepository tasksrep, + ISchedulerCenter schedulerCenter + ) + { + if (app == null) throw new ArgumentNullException(nameof(app)); + + try + { + if (Appsettings.app("Middleware", "QuartzNetJob").ObjToBool()) + { + + var allQzServices = await tasksrep.QueryAsync(); + foreach (var item in allQzServices) + { + if (item.IsStart) + { + var result = schedulerCenter.AddScheduleJobAsync(item).Result; + if (result.success) + { + Console.WriteLine($"QuartzNetJob{item.Name}启动成功!"); + } + else + { + Console.WriteLine($"QuartzNetJob{item.Name}启动失败!错误信息:{result.message}"); + } + } + } + + } + } + catch (Exception e) + { + Log.Error($"An error was reported when starting the job service.\n{e.Message}"); + throw; + } + } + } +} diff --git a/yuhong_plc/zzz.Extensions/Middlewares/RequRespLogMiddleware.cs b/yuhong_plc/zzz.Extensions/Middlewares/RequRespLogMiddleware.cs new file mode 100644 index 0000000..0ad9c5a --- /dev/null +++ b/yuhong_plc/zzz.Extensions/Middlewares/RequRespLogMiddleware.cs @@ -0,0 +1,127 @@ +using System; +using System.IO; +using System.Text.RegularExpressions; +using System.Threading.Tasks; +using zzz.Common; +using zzz.Common.LogHelper; +using Microsoft.AspNetCore.Http; +using Microsoft.Extensions.Logging; + +namespace zzz.Extensions.Middlewares +{ + /// + /// 中间件 + /// 记录请求和响应数据 + /// + public class RequRespLogMiddleware + { + /// + /// + /// + private readonly RequestDelegate _next; + private readonly ILogger _logger; + + /// + /// + /// + /// + public RequRespLogMiddleware(RequestDelegate next, ILogger logger) + { + _next = next; + _logger = logger; + } + + + + public async Task InvokeAsync(HttpContext context) + { + if (Appsettings.app("Middleware", "RequestResponseLog").ObjToBool()) + { + // 过滤,只有接口 + if (context.Request.Path.Value.Contains("api")) + { + //安装依赖 Microsoft.AspNetCore.Http + context.Request.EnableBuffering(); + Stream originalBody = context.Response.Body; + + try + { + // 存储请求数据 + await RequestDataLog(context); + + using (var ms = new MemoryStream()) + { + context.Response.Body = ms; + + await _next(context); + + // 存储响应数据 + ResponseDataLog(context.Response, ms); + + ms.Position = 0; + await ms.CopyToAsync(originalBody); + } + } + catch (Exception ex) + { + // 记录异常 + _logger.LogError(ex.Message + "" + ex.InnerException); + } + finally + { + context.Response.Body = originalBody; + } + } + else + { + await _next(context); + } + } + else + { + await _next(context); + } + } + + private async Task RequestDataLog(HttpContext context) + { + var request = context.Request; + var sr = new StreamReader(request.Body); + + var content = $" QueryData:{request.Path + request.QueryString}\r\n BodyData:{await sr.ReadToEndAsync()}"; + + if (!string.IsNullOrEmpty(content)) + { + //Parallel.For(0, 1, e => + //{ + // LogLock.OutSql2Log("RequestResponseLog", new string[] { "Request Data:", content }); + + //}); + SerilogServer.WriteLog("RequestResponseLog", new string[] { "Request Data:", content }); + + request.Body.Position = 0; + } + } + + private void ResponseDataLog(HttpResponse response, MemoryStream ms) + { + ms.Position = 0; + var responseBody = new StreamReader(ms).ReadToEnd(); + + // 去除 Html + var reg = "<[^>]+>"; + var isHtml = Regex.IsMatch(responseBody, reg); + + if (!string.IsNullOrEmpty(responseBody)) + { + //Parallel.For(0, 1, e => + //{ + // LogLock.OutSql2Log("RequestResponseLog", new string[] { "Response Data:", ResponseBody }); + + //}); + SerilogServer.WriteLog("RequestResponseLog", new string[] { "Response Data:", responseBody }); + } + } + } +} + diff --git a/yuhong_plc/zzz.Extensions/Middlewares/SeedDataMiddleware.cs b/yuhong_plc/zzz.Extensions/Middlewares/SeedDataMiddleware.cs new file mode 100644 index 0000000..1ea0306 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/Middlewares/SeedDataMiddleware.cs @@ -0,0 +1,36 @@ +using zzz.Common; +using zzz.Services; +using log4net; +using Microsoft.AspNetCore.Builder; +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Middlewares +{ + public static class SeedDataMiddleware + { + private static readonly ILog Log = LogManager.GetLogger(typeof(SeedDataMiddleware)); + public static void UseSeedDataMiddle(this IApplicationBuilder app, ISqlSugarClient sqlSugarClient, string webRootPath) + { + if (app == null) throw new ArgumentNullException(nameof(app)); + + try + { + if (Appsettings.app("SeedDBEnabled").ObjToBool() || Appsettings.app( "SeedDBDataEnabled").ObjToBool()) + { + + DBSeed.SeedAsync(sqlSugarClient, webRootPath).Wait(); + } + } + catch (Exception e) + { + Log.Error($"Error occured seeding the Database.\n{e.Message}"); + throw; + } + } + } +} diff --git a/yuhong_plc/zzz.Extensions/Middlewares/SignalRSendMiddleware.cs b/yuhong_plc/zzz.Extensions/Middlewares/SignalRSendMiddleware.cs new file mode 100644 index 0000000..5cb878f --- /dev/null +++ b/yuhong_plc/zzz.Extensions/Middlewares/SignalRSendMiddleware.cs @@ -0,0 +1,46 @@ +using System.Threading.Tasks; +using zzz.Common; +using zzz.Common.LogHelper; +using zzz.Hubs; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.SignalR; + +namespace zzz.Extensions.Middlewares +{ + /// + /// 中间件 + /// SignalR发送数据 + /// + public class SignalRSendMiddleware + { + /// + /// + /// + private readonly RequestDelegate _next; + private readonly IHubContext _hubContext; + + /// + /// + /// + /// + /// + public SignalRSendMiddleware(RequestDelegate next, IHubContext hubContext) + { + _next = next; + _hubContext = hubContext; + } + + + + public async Task InvokeAsync(HttpContext context) + { + if (Appsettings.app("Middleware", "SignalR").ObjToBool()) + { + await _hubContext.Clients.All.SendAsync("ReceiveUpdate", LogLock.GetLogData()); + } + await _next(context); + } + + } +} + diff --git a/yuhong_plc/zzz.Extensions/Middlewares/SwaggerMiddleware.cs b/yuhong_plc/zzz.Extensions/Middlewares/SwaggerMiddleware.cs new file mode 100644 index 0000000..b3ce9df --- /dev/null +++ b/yuhong_plc/zzz.Extensions/Middlewares/SwaggerMiddleware.cs @@ -0,0 +1,24 @@ +using System; +using System.IO; +using System.Linq; +using zzz.Common; +using log4net; +using Microsoft.AspNetCore.Builder; + +namespace zzz.Extensions.Middlewares +{ + /// + /// Swagger中间件 + /// + public static class SwaggerMiddleware + { + private static readonly ILog Log = LogManager.GetLogger(typeof(SwaggerMiddleware)); + public static void UseSwaggerMiddle(this IApplicationBuilder app) + { + if (app == null) throw new ArgumentNullException(nameof(app)); + + app.UseSwagger(); + app.UseSwaggerUI(); + } + } +} diff --git a/yuhong_plc/zzz.Extensions/ServiceExtensions/AutoMapperSetup.cs b/yuhong_plc/zzz.Extensions/ServiceExtensions/AutoMapperSetup.cs new file mode 100644 index 0000000..dc5c73c --- /dev/null +++ b/yuhong_plc/zzz.Extensions/ServiceExtensions/AutoMapperSetup.cs @@ -0,0 +1,24 @@ +using AutoMapper; +using zzz.AutoMapper; +using zzz.Model; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.DependencyInjection; +using System; + +namespace zzz.Extensions +{ + /// + /// Automapper 启动服务 + /// + public static class AutoMapperSetup + { + public static void AddAutoMapperSetup(this IServiceCollection services) + { + if (services == null) throw new ArgumentNullException(nameof(services)); + + //添加依赖 AutoMapper.Extensions.Microsoft.DependencyInjection + services.AddAutoMapper(typeof(AutoMapperConfig)); + AutoMapperConfig.RegisterMappings(); + } + } +} diff --git a/yuhong_plc/zzz.Extensions/ServiceExtensions/AutofacModuleRegister.cs b/yuhong_plc/zzz.Extensions/ServiceExtensions/AutofacModuleRegister.cs new file mode 100644 index 0000000..0c4abac --- /dev/null +++ b/yuhong_plc/zzz.Extensions/ServiceExtensions/AutofacModuleRegister.cs @@ -0,0 +1,112 @@ +using Autofac; +using Autofac.Extras.DynamicProxy; +using zzz.Common; +using zzz.Model; +using zzz.Repository; +using zzz.Services; +using log4net; +using System; +using System.Collections.Generic; +using System.IO; +using System.Reflection; +using zzz.AOP; + +namespace zzz.Extensions +{ + public class AutofacModuleRegister : Autofac.Module + { + private static readonly ILog log = LogManager.GetLogger(typeof(AutofacModuleRegister)); + protected override void Load(ContainerBuilder builder) + { + var basePath = AppContext.BaseDirectory; + //builder.RegisterType().As(); + + + #region 带有接口层的服务注入 + + var servicesDllFile = Path.Combine(basePath, "zzz.Services.dll"); + var repositoryDllFile = Path.Combine(basePath, "zzz.Repository.dll"); + + if (!(File.Exists(servicesDllFile) && File.Exists(repositoryDllFile))) + { + var msg = "Repository.dll和service.dll 丢失,因为项目解耦了,所以需要先F6编译,再F5运行,请检查 bin 文件夹,并拷贝。"; + log.Error(msg); + throw new Exception(msg); + } + + + + // AOP 开关,如果想要打开指定的功能,只需要在 appsettigns.json 对应对应 true 就行。 + var cacheType = new List(); + //if (Appsettings.app(new string[] { "AppSettings", "RedisCachingAOP", "Enabled" }).ObjToBool()) + //{ + // builder.RegisterType(); + // cacheType.Add(typeof(BlogRedisCacheAOP)); + //} + //if (Appsettings.app(new string[] { "AppSettings", "MemoryCachingAOP", "Enabled" }).ObjToBool()) + //{ + // builder.RegisterType(); + // cacheType.Add(typeof(BlogCacheAOP)); + //} + //if (Appsettings.app(new string[] { "Aop", "TranAOP" }).ObjToBool()) + //{ + // builder.RegisterType(); + // cacheType.Add(typeof(zzzTranAOP)); + //} + //if (Appsettings.app(new string[] { "Aop", "LogAOP"}).ObjToBool()) + //{ + // builder.RegisterType(); + // cacheType.Add(typeof(zzzLogAOP)); + //} + + builder.RegisterGeneric(typeof(BaseRepository<>)).As(typeof(IBaseRepository<>)).InstancePerDependency();//注册仓储 + builder.RegisterGeneric(typeof(BaseServices<>)).As(typeof(IBaseServices<>)).InstancePerDependency();//注册服务 + + // 获取 Service.dll 程序集服务,并注册 + var assemblysServices = Assembly.LoadFrom(servicesDllFile); + builder.RegisterAssemblyTypes(assemblysServices) + .AsImplementedInterfaces() + .InstancePerDependency() + .PropertiesAutowired() + .EnableInterfaceInterceptors()//引用Autofac.Extras.DynamicProxy; + .InterceptedBy(cacheType.ToArray());//允许将拦截器服务的列表分配给注册。 + + // 获取 Repository.dll 程序集服务,并注册 + var assemblysRepository = Assembly.LoadFrom(repositoryDllFile); + builder.RegisterAssemblyTypes(assemblysRepository) + .AsImplementedInterfaces() + .PropertiesAutowired() + .InstancePerDependency(); + + #endregion + + #region 没有接口层的服务层注入 + + //因为没有接口层,所以不能实现解耦,只能用 Load 方法。 + //注意如果使用没有接口的服务,并想对其使用 AOP 拦截,就必须设置为虚方法 + //var assemblysServicesNoInterfaces = Assembly.Load("zzz.Services"); + //builder.RegisterAssemblyTypes(assemblysServicesNoInterfaces); + + #endregion + + #region 没有接口的单独类,启用class代理拦截 + + //只能注入该类中的虚方法,且必须是public + //这里仅仅是一个单独类无接口测试,不用过多追问 + //builder.RegisterAssemblyTypes(Assembly.GetAssembly(typeof(Love))) + // .EnableClassInterceptors() + // .InterceptedBy(cacheType.ToArray()); + #endregion + + #region 单独注册一个含有接口的类,启用interface代理拦截 + + //不用虚方法 + //builder.RegisterType().As() + // .AsImplementedInterfaces() + // .EnableInterfaceInterceptors() + // .InterceptedBy(typeof(BlogCacheAOP)); + #endregion + + } + } +} diff --git a/yuhong_plc/zzz.Extensions/ServiceExtensions/JobSetup.cs b/yuhong_plc/zzz.Extensions/ServiceExtensions/JobSetup.cs new file mode 100644 index 0000000..3e2060d --- /dev/null +++ b/yuhong_plc/zzz.Extensions/ServiceExtensions/JobSetup.cs @@ -0,0 +1,42 @@ +using zzz.Tasks; +using Microsoft.Extensions.DependencyInjection; +using Quartz; +using Quartz.Spi; +using System; +using System.Linq; +using System.Reflection; + +namespace zzz.Extensions +{ + /// + /// 任务调度 启动服务 + /// + public static class JobSetup + { + public static void AddJobSetup(this IServiceCollection services) + { + if (services == null) throw new ArgumentNullException(nameof(services)); + + //services.AddHostedService(); + //services.AddHostedService(); + + services.AddSingleton(); + //services.AddTransient();//Job使用瞬时依赖注入 + //services.AddTransient();//Job使用瞬时依赖注入 + services.AddSingleton(); + //任务注入 + var baseType = typeof(IJob); + var path = AppDomain.CurrentDomain.RelativeSearchPath ?? AppDomain.CurrentDomain.BaseDirectory; + var referencedAssemblies = System.IO.Directory.GetFiles(path, "zzz.Tasks.dll").Select(Assembly.LoadFrom).ToArray(); + var types = referencedAssemblies + .SelectMany(a => a.DefinedTypes) + .Select(type => type.AsType()) + .Where(x => x != baseType && baseType.IsAssignableFrom(x)).ToArray(); + var implementTypes = types.Where(x => x.IsClass).ToArray(); + foreach (var implementType in implementTypes) + { + services.AddTransient(implementType); + } + } + } +} diff --git a/yuhong_plc/zzz.Extensions/ServiceExtensions/MiniProfilerSetup.cs b/yuhong_plc/zzz.Extensions/ServiceExtensions/MiniProfilerSetup.cs new file mode 100644 index 0000000..7b841a3 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/ServiceExtensions/MiniProfilerSetup.cs @@ -0,0 +1,41 @@ +using zzz.Common; +using Microsoft.Extensions.DependencyInjection; +using System; +using StackExchange.Profiling.Storage; + +namespace zzz.Extensions +{ + /// + /// MiniProfiler 启动服务 + /// + public static class MiniProfilerSetup + { + public static void AddMiniProfilerSetup(this IServiceCollection services) + { + if (services == null) throw new ArgumentNullException(nameof(services)); + if(Appsettings.app(new string[] { "Middleware", "MiniProfiler" }).ObjToBool()) + { + services.AddMiniProfiler(options => + { + options.RouteBasePath = "/profiler";//注意这个路径要和下边 index.html 脚本配置中的一致, + (options.Storage as MemoryCacheStorage).CacheDuration = TimeSpan.FromMinutes(10); + options.PopupRenderPosition = StackExchange.Profiling.RenderPosition.Left; + options.PopupShowTimeWithChildren = true; + }); + } + // 3.x使用MiniProfiler,必须要注册MemoryCache服务 + // services.AddMiniProfiler(options => + // { + // options.RouteBasePath = "/profiler"; + // //(options.Storage as MemoryCacheStorage).CacheDuration = TimeSpan.FromMinutes(10); + // options.PopupRenderPosition = StackExchange.Profiling.RenderPosition.Left; + // options.PopupShowTimeWithChildren = true; + + // // 可以增加权限 + // //options.ResultsAuthorize = request => request.HttpContext.User.IsInRole("Admin"); + // //options.UserIdProvider = request => request.HttpContext.User.Identity.Name; + // } + //); + } + } +} diff --git a/yuhong_plc/zzz.Extensions/ServiceExtensions/SqlsugarSetup.cs b/yuhong_plc/zzz.Extensions/ServiceExtensions/SqlsugarSetup.cs new file mode 100644 index 0000000..b2a200c --- /dev/null +++ b/yuhong_plc/zzz.Extensions/ServiceExtensions/SqlsugarSetup.cs @@ -0,0 +1,101 @@ +using zzz.Common; +using Microsoft.Extensions.DependencyInjection; +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using StackExchange.Profiling; +using zzz.Common.LogHelper; + +namespace zzz.Extensions +{ + public static class SqlsugarSetup + { + public static void AddSqlsugarSetup(this IServiceCollection services) + { + if (services == null) throw new ArgumentNullException(nameof(services)); + + SqlSugarConfigure(services); + } + + + private static void SqlSugarConfigure(IServiceCollection services) + { + #region + var dbtypeInt = Appsettings.app("DBType").ObjToInt(); + DbType dbType = (DbType)dbtypeInt; //这里设置数据库类型 + + + var conStr = Appsettings.app(new string[] { "ConnectionStrings", $"{dbType.ToString()}" }); + if (string.IsNullOrWhiteSpace(conStr)) + { + Console.WriteLine($"请正确配置appsettings.json中的连接字符串:ConnectionStrings.{dbType.ToString()}"); + return; + } + + services.AddScoped(o => + { + var client = new SqlSugarScope(new ConnectionConfig() + { + ConnectionString = conStr, //必填, 数据库连接字符串 + DbType = dbType, //必填, 数据库类型 + IsAutoCloseConnection = true,//默认false, 是否自动关闭数据库连接, 设置为true无需使用using或者Close操作 + InitKeyType = InitKeyType.Attribute //默认SystemTable, 字段信息读取, 如:该属性是不是主键,标识列等等信息 + }); + //用来打印Sql方便你调式 + client.Aop.OnLogExecuting = (sql, pars) => + { + //这里的sql会显示到console中 + //Console.WriteLine(sql + "\r\n" + + //client.Utilities.SerializeObject(pars.ToDictionary(it => it.ParameterName, it => it.Value))); + //Console.WriteLine(); + + if (Appsettings.app(new string[] { "Aop","SqlAOP", "OutToLogFile" }).ObjToBool()) + { + Parallel.For(0, 1, e => + { + MiniProfiler.Current.CustomTiming("SQL:", GetParas(pars) + "【SQL语句】:" + sql); + LogLock.OutSql2Log("SqlLog", new string[] { GetParas(pars), "【SQL语句】:" + sql }); + + }); + } + if (Appsettings.app(new string[] { "Aop", "SqlAOP", "OutToConsole" }).ObjToBool()) + { + ConsoleHelper.WriteColorLine(string.Join("\r\n", new string[] { "--------", "【SQL语句】:" + GetWholeSql(pars, sql) }), ConsoleColor.DarkCyan); + } + }; + + //// 配置加删除全局过滤器 + //db.QueryFilter.Add(new TableFilterItem(it => it.IsDeleted == false)); + //db.QueryFilter.Add(new TableFilterItem(it => it.IsDeleted == false)); + + return client; + }); + + + #endregion + } + private static string GetWholeSql(SugarParameter[] paramArr, string sql) + { + foreach (var param in paramArr) + { + sql.Replace(param.ParameterName, param.Value.ObjToString()); + } + + return sql; + } + + private static string GetParas(SugarParameter[] pars) + { + string key = "【SQL参数】:"; + foreach (var param in pars) + { + key += $"{param.ParameterName}:{param.Value}\n"; + } + + return key; + } + } +} diff --git a/yuhong_plc/zzz.Extensions/ServiceExtensions/SwaggerSetup.cs b/yuhong_plc/zzz.Extensions/ServiceExtensions/SwaggerSetup.cs new file mode 100644 index 0000000..9f73ed9 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/ServiceExtensions/SwaggerSetup.cs @@ -0,0 +1,84 @@ +using zzz.Common; +using log4net; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.OpenApi.Models; +using Swashbuckle.AspNetCore.Filters; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices; +using zzz.AOP; + +namespace zzz.Extensions +{ + /// + /// Swagger 启动服务 + /// + public static class SwaggerSetup + { + + private static readonly ILog log = LogManager.GetLogger(typeof(SwaggerSetup)); + + public static void AddSwaggerSetup(this IServiceCollection services) + { + if (services == null) throw new ArgumentNullException(nameof(services)); + + var basePath = AppContext.BaseDirectory; + + services.AddSwaggerGen(c => + { + c.SwaggerDoc("v1", new Microsoft.OpenApi.Models.OpenApiInfo() + { + Title = "后台Api文档", + Version = "1.0.0", + Description = "描述~~" + }); + + + c.UseInlineDefinitionsForEnums(); + try + { + // + var xmlPath = Path.Combine(basePath, "zzz.Api.xml"); + c.IncludeXmlComments(xmlPath, true); + + //这个就是Model层的xml文件名 + var xmlModelPath = Path.Combine(basePath, "zzz.Model.xml"); + c.IncludeXmlComments(xmlModelPath); + + //这个就是Services层的xml文件名 + var xmlServicesPath = Path.Combine(basePath, "zzz.Services.xml"); + c.IncludeXmlComments(xmlServicesPath); + + } + catch (Exception ex) + { + log.Error("zzz.xml和zzz.Model.xml 丢失,请检查并拷贝。\n" + ex.Message); + } + + // 开启加权小锁 + c.OperationFilter(); + c.OperationFilter(); + + // 在header中添加token,传递到后台 + c.OperationFilter(); + + + // Jwt Bearer 认证,必须是 oauth2 + c.AddSecurityDefinition("oauth2", new OpenApiSecurityScheme + { + Description = "JWT授权(数据将在请求头中进行传输) 直接在下框中输入Bearer {token}(注意两者之间是一个空格)\"", + Name = "Authorization",//jwt默认的参数名称 + In = ParameterLocation.Header,//jwt默认存放Authorization信息的位置(请求头中) + Type = SecuritySchemeType.ApiKey + }); + + }); + services.AddSwaggerGenNewtonsoftSupport(); + } + } + + + +} diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Common.dll b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Common.dll new file mode 100644 index 0000000..993149d Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Common.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Common.pdb b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Common.pdb new file mode 100644 index 0000000..c259918 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Common.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Extensions.deps.json b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Extensions.deps.json new file mode 100644 index 0000000..8e7868f --- /dev/null +++ b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Extensions.deps.json @@ -0,0 +1,3389 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "cjyx.Extensions/1.0.0": { + "dependencies": { + "Autofac": "6.3.0", + "Autofac.Extras.DynamicProxy": "6.0.1", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.Log4Net.AspNetCore": "6.1.0", + "MiniProfiler.Shared": "4.2.22", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Filters": "7.0.2", + "Swashbuckle.AspNetCore.Newtonsoft": "6.3.1", + "cjyx.Services": "1.0.0", + "cjyx.Tasks": "1.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "cjyx.Extensions.dll": {} + } + }, + "Autofac/6.3.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net5.0/Autofac.dll": { + "assemblyVersion": "6.3.0.0", + "fileVersion": "6.3.0.0" + } + } + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "dependencies": { + "Autofac": "6.3.0", + "Castle.Core": "4.4.0" + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.1.0" + } + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Castle.Core/4.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.4.0.0" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + } + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0" + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "6.0.0-rc.1.21452.15", + "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "13.0.1" + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {}, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll": { + "assemblyVersion": "6.1.0.0", + "fileVersion": "6.1.0.0" + } + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": {}, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MiniProfiler.Shared/4.2.22": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.ComponentModel.Primitives": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Quartz/3.4.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.0.0" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "Scrutor/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "13.0.1", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + } + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.OpenApi": "1.2.3", + "Scrutor": "3.3.0", + "Swashbuckle.AspNetCore.Filters.Abstractions": "7.0.2", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.0-rc.1.21452.15", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/1.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Pipelines/4.5.2": {}, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.4.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "dependencies": { + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "cjyx.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "cjyx.Common.dll": {} + } + }, + "cjyx.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "cjyx.Model.dll": {} + } + }, + "cjyx.Repository/1.0.0": { + "dependencies": { + "cjyx.Common": "1.0.0", + "cjyx.Model": "1.0.0" + }, + "runtime": { + "cjyx.Repository.dll": {} + } + }, + "cjyx.Services/1.0.0": { + "dependencies": { + "cjyx.Repository": "1.0.0" + }, + "runtime": { + "cjyx.Services.dll": {} + } + }, + "cjyx.Tasks/1.0.0": { + "dependencies": { + "Quartz": "3.4.0", + "cjyx.Services": "1.0.0" + }, + "runtime": { + "cjyx.Tasks.dll": {} + } + } + } + }, + "libraries": { + "cjyx.Extensions/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Autofac/6.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gO4bli0N8tDnBHzbYktcnbXlmN6T+IT5W+FUGgCUaM6pwwHXIxOPoUGvfGum7sZpJJgfQNgjFFv80ZPuARgRdA==", + "path": "autofac/6.3.0", + "hashPath": "autofac.6.3.0.nupkg.sha512" + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ulCOXUjbJ5dljBPZf3gRxQNPRGqg/h1cNTZ4SpXK3qiamTfRsW3gXs2w/IJ+CIDmHrFGYXLqzNd5etvzwB8kA==", + "path": "autofac.extras.dynamicproxy/6.0.1", + "hashPath": "autofac.extras.dynamicproxy.6.0.1.nupkg.sha512" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Castle.Core/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "path": "castle.core/4.4.0", + "hashPath": "castle.core.4.4.0.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BAibpoItxI5puk7YJbIGj95arZueM8B8M5xT1fXBn3hb3L2G3ucrZcYXv1gXdaroLbntUs8qeV8iuBrpjQsrKw==", + "path": "microsoft.aspnetcore.http/2.2.2", + "hashPath": "microsoft.aspnetcore.http.2.2.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+27ce/d0w7jyEmCCMrzwFRg6PHZxQ37Fmnf+es1qQudbip2rryxPdM8TRoXT6wNtdlzqHnIyXTtLjSs0uIDhxA==", + "path": "microsoft.aspnetcore.jsonpatch/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.jsonpatch.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/dspuIknGgOdBygH3bmjsIH5neuuJ7DHILXrKVPAoCykPARAIUBckZlIW6RrYqmbGTZYT/YFCzr/xDR5f0YiAA==", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qHb3GudscgrgEVByh86kAq3FMmjOdPIVoqvff3eokEP+QkZHzr42l4PlgxBsqhhlIX02SazC7ZdbfiFGDPRv9A==", + "path": "microsoft.extensions.logging.log4net.aspnetcore/6.1.0", + "hashPath": "microsoft.extensions.logging.log4net.aspnetcore.6.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "path": "microsoft.extensions.objectpool/2.2.0", + "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "path": "microsoft.net.http.headers/2.2.0", + "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MiniProfiler.Shared/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==", + "path": "miniprofiler.shared/4.2.22", + "hashPath": "miniprofiler.shared.4.2.22.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Quartz/3.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N8350OAlQhd8zKg0ARFikGjh3bfAW/CF/KVxu2fTIlAALB/oC1eg54n/QAPYR5ryHuYyDr5G8/Qa4k+D/7OFRQ==", + "path": "quartz/3.4.0", + "hashPath": "quartz.3.4.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "Scrutor/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "path": "scrutor/3.3.0", + "hashPath": "scrutor.3.3.0.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "path": "swashbuckle.aspnetcore/6.2.3", + "hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pjj/BdKFcXX1tdUrVjfW6SiRSiHC4dOnqszhU2PuS0RBXZUnGM18tXUrNU2pgPkSjWUnCiyvbjd3GBkEuNTBYA==", + "path": "swashbuckle.aspnetcore.filters/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RqZ+P+m2cw1TVsU9LUHNdLf4Ww7YSqDRt7UHRzauZJnRztDlNR4doOGzXLmWZzq+3CfZyS7NEsQyJmf4Y+7GMQ==", + "path": "swashbuckle.aspnetcore.filters.abstractions/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oy6BwAX+tcKO13n9bw3nPtITBvD03bAHDN2+lTaOY/cUNcQE/liu3xWjbkdhLeNTUiC+7h+lJvR7KUdI7CXz0w==", + "path": "swashbuckle.aspnetcore.newtonsoft/6.3.1", + "hashPath": "swashbuckle.aspnetcore.newtonsoft.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-idAFh4xhyJHYHfdLVOOn+BmscBul1OQbWsnL6YPJE8tO/0y6S79hDCvs6OY5VI093/9+1pYY3j31Zet9yaDZjA==", + "path": "swashbuckle.aspnetcore.swagger/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+uoBV4h/6NhCPLoTofSmuOnZ+usu4PW1jP6l4OHwPyu2frbYXGNpJsHs5uUXXn929OiVQkT8wo3Lj/o+P99Ejg==", + "path": "swashbuckle.aspnetcore.swaggergen/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zukBRPUuNxwy9m4TGWLxKAnoiMc9+B+8VXeXVyPiBPvOd7yLgAlZ1DlsRWJjMx4VsvhhF2+6q6kO2GRbPja6hA==", + "path": "system.collections.immutable/1.3.0", + "hashPath": "system.collections.immutable.1.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "path": "system.diagnostics.tracesource/4.3.0", + "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "path": "system.io.pipelines/4.5.2", + "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tc2ZyJgweHCLci5oQGuhQn9TD0Ii9DReXkHtZm3aAGp8xe40rpRjiTbMXOtZU+fr0BOQ46goE9+qIqRGjR9wGg==", + "path": "system.reflection.metadata/1.4.1", + "hashPath": "system.reflection.metadata.1.4.1.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "cjyx.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "cjyx.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "cjyx.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "cjyx.Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "cjyx.Tasks/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Extensions.dll b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Extensions.dll new file mode 100644 index 0000000..e621f9a Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Extensions.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Extensions.pdb b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Extensions.pdb new file mode 100644 index 0000000..dc03034 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Extensions.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Model.dll b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Model.dll new file mode 100644 index 0000000..0c5d675 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Model.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Model.pdb b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Model.pdb new file mode 100644 index 0000000..1747c5c Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Model.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Model.xml b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Model.xml new file mode 100644 index 0000000..5c555d6 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Model.xml @@ -0,0 +1,495 @@ + + + + cjyx.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 角色表 + + + + + 角色名 + + + + + 描述 + + + + + 排序 + + + + + 用户表 + + + + + 账号 + + + + + 密码(默认MD5加密) + + + + + 昵称 + + + + + 姓名 + + + + + 头像 + + + + + 生日 + + + + + 性别-男_1、女_2 CD08 + + + + + 邮箱 + + + + + 手机 + + + + + 最后登录IP + + + + + 最后登录时间 + + + + + 状态-正常_0、停用_1、删除_2 + + + + + 部门 + + + + + 部门 最后个组织 + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Repository.dll b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Repository.dll new file mode 100644 index 0000000..1e7e24e Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Repository.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Repository.pdb b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Repository.pdb new file mode 100644 index 0000000..596330b Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Repository.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Services.dll b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Services.dll new file mode 100644 index 0000000..59c5489 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Services.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Services.pdb b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Services.pdb new file mode 100644 index 0000000..bf6cd9c Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Services.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Services.xml b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Services.xml new file mode 100644 index 0000000..8d43a7c --- /dev/null +++ b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Services.xml @@ -0,0 +1,561 @@ + + + + cjyx.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 异步添加种子数据 + + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Tasks.dll b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Tasks.dll new file mode 100644 index 0000000..7fc4043 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Tasks.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Tasks.pdb b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Tasks.pdb new file mode 100644 index 0000000..32e7e3a Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/cjyx.Tasks.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/ref/cjyx.Extensions.dll b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/ref/cjyx.Extensions.dll new file mode 100644 index 0000000..ca222f6 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/ref/cjyx.Extensions.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/ref/zzz.Extensions.dll b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/ref/zzz.Extensions.dll new file mode 100644 index 0000000..592fed9 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/ref/zzz.Extensions.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Common.dll b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Common.dll new file mode 100644 index 0000000..6d6f1c6 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Common.pdb b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Common.pdb new file mode 100644 index 0000000..4c5a6d4 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Extensions.deps.json b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Extensions.deps.json new file mode 100644 index 0000000..19b4d62 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Extensions.deps.json @@ -0,0 +1,3671 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Extensions/1.0.0": { + "dependencies": { + "Autofac": "6.3.0", + "Autofac.Extras.DynamicProxy": "6.0.1", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.SignalR": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson": "6.0.5", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.Log4Net.AspNetCore": "6.1.0", + "MiniProfiler.AspNetCore.Mvc": "4.2.22", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Filters": "7.0.2", + "Swashbuckle.AspNetCore.Newtonsoft": "6.3.1", + "log4net": "2.0.14", + "zzz.Services": "1.0.0", + "zzz.Tasks": "1.0.0" + }, + "runtime": { + "zzz.Extensions.dll": {} + } + }, + "Autofac/6.3.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net5.0/Autofac.dll": { + "assemblyVersion": "6.3.0.0", + "fileVersion": "6.3.0.0" + } + } + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "dependencies": { + "Autofac": "6.3.0", + "Castle.Core": "4.4.0" + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.1.0" + } + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Castle.Core/4.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.4.0.0" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "HslCommunication/7.0.1": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": { + "assemblyVersion": "7.0.1.0", + "fileVersion": "7.0.1.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "dependencies": { + "Microsoft.Extensions.Features": "6.0.5", + "System.IO.Pipelines": "6.0.3" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0" + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.0", + "Newtonsoft.Json": "13.0.1", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Newtonsoft.Json": "13.0.1", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "6.0.0-rc.1.21452.15", + "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + } + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections": "1.1.0", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0" + } + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.5.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Net.WebSockets.WebSocketProtocol": "4.5.1" + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.Extensions.Features/6.0.5": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Features.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {}, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll": { + "assemblyVersion": "6.1.0.0", + "fileVersion": "6.1.0.0" + } + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": {}, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MiniProfiler.AspNetCore/4.2.22": { + "dependencies": { + "MiniProfiler.Shared": "4.2.22", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "dependencies": { + "MiniProfiler.AspNetCore": "4.2.22" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.Shared/4.2.22": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.ComponentModel.Primitives": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Quartz/3.4.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.0.0" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "Scrutor/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "13.0.1", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + } + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.OpenApi": "1.2.3", + "Scrutor": "3.3.0", + "Swashbuckle.AspNetCore.Filters.Abstractions": "7.0.2", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.0-rc.1.21452.15", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/1.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Pipelines/6.0.3": { + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21309" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "runtime": { + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26606.5" + } + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.4.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "dependencies": { + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "runtime": { + "zzz.Repository.dll": {} + } + }, + "zzz.Services/1.0.0": { + "dependencies": { + "HslCommunication": "7.0.1", + "zzz.Repository": "1.0.0" + }, + "runtime": { + "zzz.Services.dll": {} + } + }, + "zzz.Tasks/1.0.0": { + "dependencies": { + "Quartz": "3.4.0", + "zzz.Services": "1.0.0" + }, + "runtime": { + "zzz.Tasks.dll": {} + } + } + } + }, + "libraries": { + "zzz.Extensions/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Autofac/6.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gO4bli0N8tDnBHzbYktcnbXlmN6T+IT5W+FUGgCUaM6pwwHXIxOPoUGvfGum7sZpJJgfQNgjFFv80ZPuARgRdA==", + "path": "autofac/6.3.0", + "hashPath": "autofac.6.3.0.nupkg.sha512" + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ulCOXUjbJ5dljBPZf3gRxQNPRGqg/h1cNTZ4SpXK3qiamTfRsW3gXs2w/IJ+CIDmHrFGYXLqzNd5etvzwB8kA==", + "path": "autofac.extras.dynamicproxy/6.0.1", + "hashPath": "autofac.extras.dynamicproxy.6.0.1.nupkg.sha512" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Castle.Core/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "path": "castle.core/4.4.0", + "hashPath": "castle.core.4.4.0.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "HslCommunication/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "path": "hslcommunication/7.0.1", + "hashPath": "hslcommunication.7.0.1.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OBbGvih5/CLHTbJVDiJ203TmKXCx8z539O2YGnfHmExbNtMwyQ9rgpqoxyYEVvQrVsqxRhXfh57DOCQYhxcOBQ==", + "path": "microsoft.aspnetcore.connections.abstractions/6.0.5", + "hashPath": "microsoft.aspnetcore.connections.abstractions.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BAibpoItxI5puk7YJbIGj95arZueM8B8M5xT1fXBn3hb3L2G3ucrZcYXv1gXdaroLbntUs8qeV8iuBrpjQsrKw==", + "path": "microsoft.aspnetcore.http/2.2.2", + "hashPath": "microsoft.aspnetcore.http.2.2.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==", + "path": "microsoft.aspnetcore.http.connections/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mYk5QUUjyXQmlyDHWDjkLYDArt97plwe6KsDsNVhDEQ+HgZMKGjISyM6YSA7BERQNR25kXBTbIYfSy1vePGQgg==", + "path": "microsoft.aspnetcore.http.connections.common/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+27ce/d0w7jyEmCCMrzwFRg6PHZxQ37Fmnf+es1qQudbip2rryxPdM8TRoXT6wNtdlzqHnIyXTtLjSs0uIDhxA==", + "path": "microsoft.aspnetcore.jsonpatch/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.jsonpatch.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/dspuIknGgOdBygH3bmjsIH5neuuJ7DHILXrKVPAoCykPARAIUBckZlIW6RrYqmbGTZYT/YFCzr/xDR5f0YiAA==", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "path": "microsoft.aspnetcore.routing/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==", + "path": "microsoft.aspnetcore.signalr/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N+MF6rs64kDDJ4zroD/NqRgXVSEkj/ppTX36AB2S43qm1y64YqWMCFCzLshkmi7SwWwQQPIByTNZDJfz4x7GjQ==", + "path": "microsoft.aspnetcore.signalr.common/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.common.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/7VUbkomGE7ph6R1JTtMji5QPGqesyCSeELFmfylaqFM+SdWf9EmbU3SCQPcIWhfv+RgbUWmTNfWWPzmVDTggw==", + "path": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==", + "path": "microsoft.aspnetcore.websockets/2.2.0", + "hashPath": "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" + }, + "Microsoft.Extensions.Features/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7KLF1jRFQjSttfoilwHU86cU9ZgxN4ABfQR8tQ9qEC5AzTGYIX+K5RDwGFVK320eTiBwWuutV24ecmxBxo7Eg==", + "path": "microsoft.extensions.features/6.0.5", + "hashPath": "microsoft.extensions.features.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qHb3GudscgrgEVByh86kAq3FMmjOdPIVoqvff3eokEP+QkZHzr42l4PlgxBsqhhlIX02SazC7ZdbfiFGDPRv9A==", + "path": "microsoft.extensions.logging.log4net.aspnetcore/6.1.0", + "hashPath": "microsoft.extensions.logging.log4net.aspnetcore.6.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "path": "microsoft.extensions.objectpool/2.2.0", + "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "path": "microsoft.net.http.headers/2.2.0", + "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2FpFllO0wFJmfIXY9NXr33jWgr88b7E4gAuPHSNYzNr5o2XIouynxAoLA+SShuDI2ySSsvnBHURiXRX7tz59YA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MiniProfiler.AspNetCore/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bBirB5d4Q0Bgx05Zg4yzXSmOHZQV4ZJhmxU3DGya4FZxNBwjaVHchqEKY0MJW5XLZo8axMAQm4yywgCvUlTymA==", + "path": "miniprofiler.aspnetcore/4.2.22", + "hashPath": "miniprofiler.aspnetcore.4.2.22.nupkg.sha512" + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nzCEaZnh77U9jw+c/qu4CtwYUpHEf+FH1ZMbYKMzIXr8CNNPlypSR6AJEAwjo3bq9TIJIpBMZIaK3inRLUCg4g==", + "path": "miniprofiler.aspnetcore.mvc/4.2.22", + "hashPath": "miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512" + }, + "MiniProfiler.Shared/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==", + "path": "miniprofiler.shared/4.2.22", + "hashPath": "miniprofiler.shared.4.2.22.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/6XtTu0ZHzge7tzZZN8UXpwG1K0Vgxi7C7R0QiTgxMtN4gkzNl4xNVUI4X3tymMwKWUdwqXvzkrJqt3MdMFXig==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Quartz/3.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N8350OAlQhd8zKg0ARFikGjh3bfAW/CF/KVxu2fTIlAALB/oC1eg54n/QAPYR5ryHuYyDr5G8/Qa4k+D/7OFRQ==", + "path": "quartz/3.4.0", + "hashPath": "quartz.3.4.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kuvqViO3OnqjWcNSQfanREtHgqJx6UK5UHPeIl7M666izpBErP4TDZctWnYvuz7l/hpWPkS3DsUAUPAyVS/zBA==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QnpBRH8jHD/TtGA5fjrdK/BRf+Oslt/M/X+r487ByPS2q+EZUNwEiaoPUuZcqFcLwqAY2Fw7SciCHTPiK2GTqg==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i/u0Svwgj6JM9SpaoJAqTiMU3B0UZEUC35JadEBgkihBi+RzyRe2VlGwhZ6B63r78CmzZ/VAYNXvLAnoIaRG/A==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOKLiiK96F+8pPB+ALL20VFsTDBolLfysxlBZDGlFXDEBEZfdfm4OYuInLtxYHCUSxpJpPivIYm9jasMzfgzEQ==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSKGjRiQWUHf2zpiRD3+q8lzjL89HhiR74cevVqShwVHtDEHjAhDU75w6mPdeFg9QSyqI32Ud3Qskr5WHNCw+g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "Scrutor/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "path": "scrutor/3.3.0", + "hashPath": "scrutor.3.3.0.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "path": "swashbuckle.aspnetcore/6.2.3", + "hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pjj/BdKFcXX1tdUrVjfW6SiRSiHC4dOnqszhU2PuS0RBXZUnGM18tXUrNU2pgPkSjWUnCiyvbjd3GBkEuNTBYA==", + "path": "swashbuckle.aspnetcore.filters/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RqZ+P+m2cw1TVsU9LUHNdLf4Ww7YSqDRt7UHRzauZJnRztDlNR4doOGzXLmWZzq+3CfZyS7NEsQyJmf4Y+7GMQ==", + "path": "swashbuckle.aspnetcore.filters.abstractions/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oy6BwAX+tcKO13n9bw3nPtITBvD03bAHDN2+lTaOY/cUNcQE/liu3xWjbkdhLeNTUiC+7h+lJvR7KUdI7CXz0w==", + "path": "swashbuckle.aspnetcore.newtonsoft/6.3.1", + "hashPath": "swashbuckle.aspnetcore.newtonsoft.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-idAFh4xhyJHYHfdLVOOn+BmscBul1OQbWsnL6YPJE8tO/0y6S79hDCvs6OY5VI093/9+1pYY3j31Zet9yaDZjA==", + "path": "swashbuckle.aspnetcore.swagger/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+uoBV4h/6NhCPLoTofSmuOnZ+usu4PW1jP6l4OHwPyu2frbYXGNpJsHs5uUXXn929OiVQkT8wo3Lj/o+P99Ejg==", + "path": "swashbuckle.aspnetcore.swaggergen/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wvyiJIm0HlaoN+AlJXhTpDrhYkN28OC/nEun5QpbPkZvbpgWSYvZ8Hr9/G4Bd1I0WSmFW18KQuE5DOA05Uubrw==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wAdmaCgCSe298gCNvAf6vlVPfQUR7h43Qr2tTtJFYeto/OvttRLyG4ch6/R2FpuWRMfxHBsAeHYrzjvEk1UM+Q==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Un05L1TLTGqBBRKAFngtzovaNeFL1EGzuUwW0AiTotM/GUWVE0c0xH4owZgdJ6nf6DuK866gbLqD3c/Ms7KSOg==", + "path": "system.collections.immutable/1.3.0", + "hashPath": "system.collections.immutable.1.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sRo7MpbD5VnFdLZA/uVuR5YJdDV4i+DyJTpQ1rk92wCzLE4cXJ+q7tzGr2HwkL/ujeFNcPo/fOs7LKdDyeyupA==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wJLrK/MQdlF3TmfNouxSsgtCRhsgx4tz2KdY/mpvirOcgMc2W4DDK7vR6RcSc6XRV4P6rzrLFXd9wUzp/iWp0g==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aX7O7aytoclkwEvOv4vCDBP2hDVsrAbQVAOJXUka7qCXbbZcqtv8CKrX646dSERl9aO/tY0/g2ezsa4jBAMQOg==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6jD8gKBZvTfp1PEuqAkpMZvG9hF+gzGIvhvRh0K2qDApsiEpRZ9ZUlWE2nACpPdWP8w3DaL0TQAHuA7gXDSupA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "path": "system.diagnostics.tracesource/4.3.0", + "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ChcZW/eQtXpPDW7qMqlqK7xGW4A8hhz7/iY4J5hsvhzPsza7Cml+hdBhm5vAh6KhHcXzMvjfLcbChmZsYPlJsA==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zf/fX6NjK+eL01E0a5+pZb2NaitHwaVPlh7Wc62+wpnAtn1hA0ye8WAMV4r8DJv+AghKZYBwQwGqZJ9ikWLLkw==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ttt2PGgBfejL4xBEdMMd2E+Mqn/wC47jhMBtqRNJeH6uYa2j3fTDi1Jj1hAY5sfgbJcrvfSO46G1pufONMmfmA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kzMaA/htO8n7p5FQvyVXA9Q66+LntW+m0vp+Vnl5gSWsc6btlIYIC3aXs3DvtvdV0ue1tX/Mslkiei1vLgh3WA==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yn4CfuDOHBxI0b6JNSQJGqCIsuEqcjxQIAxktq316Jhz9Q0aRKqqGN7QNwd5fyNqz7mNMXfKDt1bJrtggkt8/g==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kRj3owqKUOxPcvQpK0VItuLGg/aXPjUxzT5ujrfMW0RrAQ7FJYB+mFiCawtGQVQatVCKr78TX39cJueK9ic8wA==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1d5+nGi+bWLgg0/wPO1IKJGSIe8Gy+WsMoT11T472mWHryC/qCISRl/v9w4rmk+72uX/1DFgBjBljUXyAK4jNg==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BnZgb92GKxi/DjV7WbZo2Sm7G8pImuLocQAHIkuFrRExeBMyjX0sIRY039HbnBObE7t5ihxRP3wYPSJ0Zt/apQ==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "path": "system.io.pipelines/6.0.3", + "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dGfhVR2KQhRwrl0D8yb8gJLpr2iX4Hnud1oNRwUbafrqskstG2kC3NMNp/t7QRzdb1mlNqc99F2OjXYKyHzdnA==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MHtkLrHBt/UkTMLaBYgCgrm2WBogOkEjDRlNJSxy18uQWEMN4ymSywGNwNHS8ATNyaGJzddvmdWI/UjLaLyskg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6sVcH1+qeVKf7xD/7k0ouAA7830LIw7Ltwo4bEl9ExyRVN/YNUhka9CBcd2Pp4Ugn14/cIY/i39bSTMUOmftFw==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S70uFEyXRAuRBxWsQWyVciioHMGOYxpob7a/TNchHKF9ceQPktdtcdl3/vktvUJU8B5ES7lG1wkglSWXYKHjcA==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==", + "path": "system.net.websockets.websocketprotocol/4.5.1", + "hashPath": "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TqRGJ6R6S9VpsXm2GpRy87TFXMxVqtYMrZtQFZHNJadQ1njAlpp0F5PfsWH04UNZWeY9X1jK+Kr8faJREA1kfg==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-13ihEbKKWpJYwZpo1kcDv2kW8eCK9twslQXpuqW/ulpHFhB2vuxbCuQgllNLjiSuL3uEKSPz34wC0xRb5hY9OA==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cYyPyIPBNlROATH5CjGQpvFhPdCrkDyVpChahZmpZlpXE4wQS+f6fUl+A/16U8/IShAiS3ofjX6bHuwRyHHWbQ==", + "path": "system.reflection.metadata/1.4.1", + "hashPath": "system.reflection.metadata.1.4.1.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJGsxoZ+9PXn+Qdjc5Nk6yJVqLk8lRR3k3uEGja59sC1EbkzMbVMqPFNOQmYxaO5Fbid8Bm29o+rB/PdDCDXNw==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yhyMfLA28dYAFahmTy+lM6rDrrca84R76fk8J0GH9gdtcZe6NuA7bWhLOCcWOEi74jZOIjtjtRPzkdSv6KlATQ==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-djZnX43T2YuLt526S/mq2pBiHQS8WfAUAg/nOt+oz6MkTo6HKAANCytQEFXmv6jyrumb8ohYe3ht2sEUMi9LMQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jw3ielASDELVDT+VPsL6PGRHp50mytxUnVp7UlKZWS3l5cxWAhZIWfTiunuqyy90WKcEIehjHkfpRqyzO5eFmw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPdBt8ZxEzxDYhPnWz+eegZMhyYBzea/Oi7AuuqwtyCATswlsMdA3tiw/U/rMP+MvDa4DIhI1inEwEDYArfuJg==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DG7gpkRnHPaofkkKx5jWKqI9gjcHhDOt3BeCMKRTImnngZvP1jlgYMXYXxY+S8XWyOoyU8KF5Tv0ZrG9FYREvQ==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xFN3KCCvtAdfdy+AngirK0Tku73Ne9i5NmV995PGnHOn6OvNx5j/f2Aa6FuEoZT1YshMjOlWfEKI8WAjnaxtRg==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iwhUBeB6oQ10iH2CRQeLNTHyQX9lxiMNZuC9nMY0IhiQlRaDtcwTVaGWSTShduj0V8o07kOgI53QayLnHt6i0A==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6hQ2W40ImHD8OSBL8zWYSwdae6iryMpeEThocf8u1m/0LFZUmnRtKyXZtXNNqwkbha/mDcjS+GbbCk+whXz0sA==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aUDiT8Qv4rbc1YwvWhBM76PzeoHLQLook/5PiXhFsBur7cniIsd2K0MhGDZ1M1IN9j7y6HdC7lnk+TS37lJEZA==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3h7hlVK5u8nzCUQFFYj6yw6NKYgnrUySo0oaXN21LyrOQpr052u5rvnSxUGuIKO7M9jRv1FaLZOGVI/+7olf9A==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IKcG64NTLVkZVHawu61/TldF/J/Vb7phwiECTLwB30N7NoUkXs1BquSuCJHyHCLUC0vEmEU0vqnQZY7T21Gc1Q==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EyRjbRA4pD4dG4O4XEzITKvzLRpauU4LhvS1UhiWUlvk5bUcfhFDMw1obsrvfpfD3zvqJ6PXm6Y4r2tUFf1yCQ==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MOrSyJ8eyHXyB4xMFN7AIZ5/B9ODYQxmspxxD2r5Zd8Os6hUAmVRUgl6s6Qml/j4nJGcsOHgonpDYmEAeuADMw==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Tasks/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Extensions.dll b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Extensions.dll new file mode 100644 index 0000000..4f36965 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Extensions.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Extensions.pdb b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Extensions.pdb new file mode 100644 index 0000000..8717985 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Extensions.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Model.dll b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Model.dll new file mode 100644 index 0000000..98ddff2 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Model.pdb b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Model.pdb new file mode 100644 index 0000000..ee6d136 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Model.xml b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Model.xml new file mode 100644 index 0000000..90ea772 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Model.xml @@ -0,0 +1,1543 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 2线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Repository.dll b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Repository.dll new file mode 100644 index 0000000..991414c Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Repository.pdb b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Repository.pdb new file mode 100644 index 0000000..b9bcd32 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Repository.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Services.dll b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Services.dll new file mode 100644 index 0000000..691a5d0 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Services.pdb b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Services.pdb new file mode 100644 index 0000000..79fd96c Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Services.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Services.xml b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Services.xml new file mode 100644 index 0000000..623dba3 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Services.xml @@ -0,0 +1,941 @@ + + + + zzz.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 种子数据 服务 + + + + + 构造 + + + + + + 异步添加种子数据 + + + + + + + + 同步表结构 + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 种子数据 接口 + + + + + 同步表结构 + + + + + + + 设备名称 + + + + + 设备利用率DTO + + + + + x轴 + + + + + series + + + + + 动态月订单信息数据 + + + + + 生产计划达成率 + + + + + 订单交付率 + + + + + 生产数量 + + + + + 设备利用率 + + + + + 产品合格率 + + + + + 大屏生产工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 完成进度 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 各产品生产数量 + + + + + x轴 + + + + + series + + + + + PLC硬件信息 + + + + + eqmt_id + + + + + ip + + + + + 端口 + + + + + 读取PLC数据接口 + + + + + 读取13线数据 + + + + + 读取16线数据 + + + + + 读取17线数据 + + + + + 读取18线数据 + + + + + 读取19线数据 + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 读取PLC数据服务 + + + + + 构造 + + + + + 打开连接 + + + + + + + + 关闭连接 + + + + + 读取13线数据 + + + + + 读取16线数据 + 一个端口 + + + + + 读取19线数据 + 一个端口 + + + + + 读取17线数据 + 两个端口 + + + + + 读取18线数据 + 两个端口 + + + + + 创建间隔采集数据 + + + + + + 班次产量数据 + + + + + + 计算OEE + + + + + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Tasks.dll b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Tasks.dll new file mode 100644 index 0000000..57d97c0 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Tasks.pdb b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Tasks.pdb new file mode 100644 index 0000000..e87eaee Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Debug/net6.0/zzz.Tasks.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/ref/zzz.Extensions.dll b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/ref/zzz.Extensions.dll new file mode 100644 index 0000000..969b8c4 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/ref/zzz.Extensions.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Common.dll b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Common.dll new file mode 100644 index 0000000..64d9d86 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Common.pdb b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Common.pdb new file mode 100644 index 0000000..72c1cc3 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Extensions.deps.json b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Extensions.deps.json new file mode 100644 index 0000000..19b4d62 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Extensions.deps.json @@ -0,0 +1,3671 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Extensions/1.0.0": { + "dependencies": { + "Autofac": "6.3.0", + "Autofac.Extras.DynamicProxy": "6.0.1", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.SignalR": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson": "6.0.5", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.EventLog": "6.0.0", + "Microsoft.Extensions.Logging.Log4Net.AspNetCore": "6.1.0", + "MiniProfiler.AspNetCore.Mvc": "4.2.22", + "Swashbuckle.AspNetCore": "6.2.3", + "Swashbuckle.AspNetCore.Filters": "7.0.2", + "Swashbuckle.AspNetCore.Newtonsoft": "6.3.1", + "log4net": "2.0.14", + "zzz.Services": "1.0.0", + "zzz.Tasks": "1.0.0" + }, + "runtime": { + "zzz.Extensions.dll": {} + } + }, + "Autofac/6.3.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/net5.0/Autofac.dll": { + "assemblyVersion": "6.3.0.0", + "fileVersion": "6.3.0.0" + } + } + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "dependencies": { + "Autofac": "6.3.0", + "Castle.Core": "4.4.0" + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": { + "assemblyVersion": "6.0.1.0", + "fileVersion": "6.0.1.0" + } + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Castle.Core/4.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.4.0.0" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "HslCommunication/7.0.1": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": { + "assemblyVersion": "7.0.1.0", + "fileVersion": "7.0.1.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "dependencies": { + "Microsoft.Extensions.Features": "6.0.5", + "System.IO.Pipelines": "6.0.3" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0" + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.0", + "Newtonsoft.Json": "13.0.1", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Newtonsoft.Json": "13.0.1", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "6.0.0-rc.1.21452.15", + "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.45215" + } + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + } + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections": "1.1.0", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0" + } + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll": { + "assemblyVersion": "6.0.5.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Net.WebSockets.WebSocketProtocol": "4.5.1" + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {}, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.Extensions.Features/6.0.5": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Features.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21802" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {}, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": {}, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "log4net": "2.0.14" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll": { + "assemblyVersion": "6.1.0.0", + "fileVersion": "6.1.0.0" + } + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": {}, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MiniProfiler.AspNetCore/4.2.22": { + "dependencies": { + "MiniProfiler.Shared": "4.2.22", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "dependencies": { + "MiniProfiler.AspNetCore": "4.2.22" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.Shared/4.2.22": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.ComponentModel.Primitives": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Quartz/3.4.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.0.0" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "Scrutor/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "13.0.1", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + } + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.OpenApi": "1.2.3", + "Scrutor": "3.3.0", + "Swashbuckle.AspNetCore.Filters.Abstractions": "7.0.2", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": { + "assemblyVersion": "7.0.2.0", + "fileVersion": "7.0.2.0" + } + } + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.0-rc.1.21452.15", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.3.1" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.3.1.0", + "fileVersion": "6.3.1.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.2.3.0", + "fileVersion": "6.2.3.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/1.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Pipelines/6.0.3": { + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21309" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "runtime": { + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26606.5" + } + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.4.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "dependencies": { + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "runtime": { + "zzz.Repository.dll": {} + } + }, + "zzz.Services/1.0.0": { + "dependencies": { + "HslCommunication": "7.0.1", + "zzz.Repository": "1.0.0" + }, + "runtime": { + "zzz.Services.dll": {} + } + }, + "zzz.Tasks/1.0.0": { + "dependencies": { + "Quartz": "3.4.0", + "zzz.Services": "1.0.0" + }, + "runtime": { + "zzz.Tasks.dll": {} + } + } + } + }, + "libraries": { + "zzz.Extensions/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Autofac/6.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gO4bli0N8tDnBHzbYktcnbXlmN6T+IT5W+FUGgCUaM6pwwHXIxOPoUGvfGum7sZpJJgfQNgjFFv80ZPuARgRdA==", + "path": "autofac/6.3.0", + "hashPath": "autofac.6.3.0.nupkg.sha512" + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ulCOXUjbJ5dljBPZf3gRxQNPRGqg/h1cNTZ4SpXK3qiamTfRsW3gXs2w/IJ+CIDmHrFGYXLqzNd5etvzwB8kA==", + "path": "autofac.extras.dynamicproxy/6.0.1", + "hashPath": "autofac.extras.dynamicproxy.6.0.1.nupkg.sha512" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Castle.Core/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "path": "castle.core/4.4.0", + "hashPath": "castle.core.4.4.0.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "HslCommunication/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "path": "hslcommunication/7.0.1", + "hashPath": "hslcommunication.7.0.1.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OBbGvih5/CLHTbJVDiJ203TmKXCx8z539O2YGnfHmExbNtMwyQ9rgpqoxyYEVvQrVsqxRhXfh57DOCQYhxcOBQ==", + "path": "microsoft.aspnetcore.connections.abstractions/6.0.5", + "hashPath": "microsoft.aspnetcore.connections.abstractions.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BAibpoItxI5puk7YJbIGj95arZueM8B8M5xT1fXBn3hb3L2G3ucrZcYXv1gXdaroLbntUs8qeV8iuBrpjQsrKw==", + "path": "microsoft.aspnetcore.http/2.2.2", + "hashPath": "microsoft.aspnetcore.http.2.2.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==", + "path": "microsoft.aspnetcore.http.connections/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mYk5QUUjyXQmlyDHWDjkLYDArt97plwe6KsDsNVhDEQ+HgZMKGjISyM6YSA7BERQNR25kXBTbIYfSy1vePGQgg==", + "path": "microsoft.aspnetcore.http.connections.common/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+27ce/d0w7jyEmCCMrzwFRg6PHZxQ37Fmnf+es1qQudbip2rryxPdM8TRoXT6wNtdlzqHnIyXTtLjSs0uIDhxA==", + "path": "microsoft.aspnetcore.jsonpatch/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.jsonpatch.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/dspuIknGgOdBygH3bmjsIH5neuuJ7DHILXrKVPAoCykPARAIUBckZlIW6RrYqmbGTZYT/YFCzr/xDR5f0YiAA==", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.0-rc.1.21452.15", + "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.0-rc.1.21452.15.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "path": "microsoft.aspnetcore.routing/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==", + "path": "microsoft.aspnetcore.signalr/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N+MF6rs64kDDJ4zroD/NqRgXVSEkj/ppTX36AB2S43qm1y64YqWMCFCzLshkmi7SwWwQQPIByTNZDJfz4x7GjQ==", + "path": "microsoft.aspnetcore.signalr.common/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.common.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/7VUbkomGE7ph6R1JTtMji5QPGqesyCSeELFmfylaqFM+SdWf9EmbU3SCQPcIWhfv+RgbUWmTNfWWPzmVDTggw==", + "path": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson/6.0.5", + "hashPath": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson.6.0.5.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==", + "path": "microsoft.aspnetcore.websockets/2.2.0", + "hashPath": "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "hashPath": "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512" + }, + "Microsoft.Extensions.Features/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7KLF1jRFQjSttfoilwHU86cU9ZgxN4ABfQR8tQ9qEC5AzTGYIX+K5RDwGFVK320eTiBwWuutV24ecmxBxo7Eg==", + "path": "microsoft.extensions.features/6.0.5", + "hashPath": "microsoft.extensions.features.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qHb3GudscgrgEVByh86kAq3FMmjOdPIVoqvff3eokEP+QkZHzr42l4PlgxBsqhhlIX02SazC7ZdbfiFGDPRv9A==", + "path": "microsoft.extensions.logging.log4net.aspnetcore/6.1.0", + "hashPath": "microsoft.extensions.logging.log4net.aspnetcore.6.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "path": "microsoft.extensions.objectpool/2.2.0", + "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "path": "microsoft.net.http.headers/2.2.0", + "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2FpFllO0wFJmfIXY9NXr33jWgr88b7E4gAuPHSNYzNr5o2XIouynxAoLA+SShuDI2ySSsvnBHURiXRX7tz59YA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MiniProfiler.AspNetCore/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bBirB5d4Q0Bgx05Zg4yzXSmOHZQV4ZJhmxU3DGya4FZxNBwjaVHchqEKY0MJW5XLZo8axMAQm4yywgCvUlTymA==", + "path": "miniprofiler.aspnetcore/4.2.22", + "hashPath": "miniprofiler.aspnetcore.4.2.22.nupkg.sha512" + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nzCEaZnh77U9jw+c/qu4CtwYUpHEf+FH1ZMbYKMzIXr8CNNPlypSR6AJEAwjo3bq9TIJIpBMZIaK3inRLUCg4g==", + "path": "miniprofiler.aspnetcore.mvc/4.2.22", + "hashPath": "miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512" + }, + "MiniProfiler.Shared/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==", + "path": "miniprofiler.shared/4.2.22", + "hashPath": "miniprofiler.shared.4.2.22.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/6XtTu0ZHzge7tzZZN8UXpwG1K0Vgxi7C7R0QiTgxMtN4gkzNl4xNVUI4X3tymMwKWUdwqXvzkrJqt3MdMFXig==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Quartz/3.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N8350OAlQhd8zKg0ARFikGjh3bfAW/CF/KVxu2fTIlAALB/oC1eg54n/QAPYR5ryHuYyDr5G8/Qa4k+D/7OFRQ==", + "path": "quartz/3.4.0", + "hashPath": "quartz.3.4.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kuvqViO3OnqjWcNSQfanREtHgqJx6UK5UHPeIl7M666izpBErP4TDZctWnYvuz7l/hpWPkS3DsUAUPAyVS/zBA==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QnpBRH8jHD/TtGA5fjrdK/BRf+Oslt/M/X+r487ByPS2q+EZUNwEiaoPUuZcqFcLwqAY2Fw7SciCHTPiK2GTqg==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i/u0Svwgj6JM9SpaoJAqTiMU3B0UZEUC35JadEBgkihBi+RzyRe2VlGwhZ6B63r78CmzZ/VAYNXvLAnoIaRG/A==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOKLiiK96F+8pPB+ALL20VFsTDBolLfysxlBZDGlFXDEBEZfdfm4OYuInLtxYHCUSxpJpPivIYm9jasMzfgzEQ==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSKGjRiQWUHf2zpiRD3+q8lzjL89HhiR74cevVqShwVHtDEHjAhDU75w6mPdeFg9QSyqI32Ud3Qskr5WHNCw+g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "Scrutor/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "path": "scrutor/3.3.0", + "hashPath": "scrutor.3.3.0.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "path": "swashbuckle.aspnetcore/6.2.3", + "hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pjj/BdKFcXX1tdUrVjfW6SiRSiHC4dOnqszhU2PuS0RBXZUnGM18tXUrNU2pgPkSjWUnCiyvbjd3GBkEuNTBYA==", + "path": "swashbuckle.aspnetcore.filters/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RqZ+P+m2cw1TVsU9LUHNdLf4Ww7YSqDRt7UHRzauZJnRztDlNR4doOGzXLmWZzq+3CfZyS7NEsQyJmf4Y+7GMQ==", + "path": "swashbuckle.aspnetcore.filters.abstractions/7.0.2", + "hashPath": "swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oy6BwAX+tcKO13n9bw3nPtITBvD03bAHDN2+lTaOY/cUNcQE/liu3xWjbkdhLeNTUiC+7h+lJvR7KUdI7CXz0w==", + "path": "swashbuckle.aspnetcore.newtonsoft/6.3.1", + "hashPath": "swashbuckle.aspnetcore.newtonsoft.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-idAFh4xhyJHYHfdLVOOn+BmscBul1OQbWsnL6YPJE8tO/0y6S79hDCvs6OY5VI093/9+1pYY3j31Zet9yaDZjA==", + "path": "swashbuckle.aspnetcore.swagger/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+uoBV4h/6NhCPLoTofSmuOnZ+usu4PW1jP6l4OHwPyu2frbYXGNpJsHs5uUXXn929OiVQkT8wo3Lj/o+P99Ejg==", + "path": "swashbuckle.aspnetcore.swaggergen/6.3.1", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wvyiJIm0HlaoN+AlJXhTpDrhYkN28OC/nEun5QpbPkZvbpgWSYvZ8Hr9/G4Bd1I0WSmFW18KQuE5DOA05Uubrw==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wAdmaCgCSe298gCNvAf6vlVPfQUR7h43Qr2tTtJFYeto/OvttRLyG4ch6/R2FpuWRMfxHBsAeHYrzjvEk1UM+Q==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Un05L1TLTGqBBRKAFngtzovaNeFL1EGzuUwW0AiTotM/GUWVE0c0xH4owZgdJ6nf6DuK866gbLqD3c/Ms7KSOg==", + "path": "system.collections.immutable/1.3.0", + "hashPath": "system.collections.immutable.1.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sRo7MpbD5VnFdLZA/uVuR5YJdDV4i+DyJTpQ1rk92wCzLE4cXJ+q7tzGr2HwkL/ujeFNcPo/fOs7LKdDyeyupA==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wJLrK/MQdlF3TmfNouxSsgtCRhsgx4tz2KdY/mpvirOcgMc2W4DDK7vR6RcSc6XRV4P6rzrLFXd9wUzp/iWp0g==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aX7O7aytoclkwEvOv4vCDBP2hDVsrAbQVAOJXUka7qCXbbZcqtv8CKrX646dSERl9aO/tY0/g2ezsa4jBAMQOg==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6jD8gKBZvTfp1PEuqAkpMZvG9hF+gzGIvhvRh0K2qDApsiEpRZ9ZUlWE2nACpPdWP8w3DaL0TQAHuA7gXDSupA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "path": "system.diagnostics.tracesource/4.3.0", + "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ChcZW/eQtXpPDW7qMqlqK7xGW4A8hhz7/iY4J5hsvhzPsza7Cml+hdBhm5vAh6KhHcXzMvjfLcbChmZsYPlJsA==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zf/fX6NjK+eL01E0a5+pZb2NaitHwaVPlh7Wc62+wpnAtn1hA0ye8WAMV4r8DJv+AghKZYBwQwGqZJ9ikWLLkw==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ttt2PGgBfejL4xBEdMMd2E+Mqn/wC47jhMBtqRNJeH6uYa2j3fTDi1Jj1hAY5sfgbJcrvfSO46G1pufONMmfmA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kzMaA/htO8n7p5FQvyVXA9Q66+LntW+m0vp+Vnl5gSWsc6btlIYIC3aXs3DvtvdV0ue1tX/Mslkiei1vLgh3WA==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yn4CfuDOHBxI0b6JNSQJGqCIsuEqcjxQIAxktq316Jhz9Q0aRKqqGN7QNwd5fyNqz7mNMXfKDt1bJrtggkt8/g==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kRj3owqKUOxPcvQpK0VItuLGg/aXPjUxzT5ujrfMW0RrAQ7FJYB+mFiCawtGQVQatVCKr78TX39cJueK9ic8wA==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1d5+nGi+bWLgg0/wPO1IKJGSIe8Gy+WsMoT11T472mWHryC/qCISRl/v9w4rmk+72uX/1DFgBjBljUXyAK4jNg==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BnZgb92GKxi/DjV7WbZo2Sm7G8pImuLocQAHIkuFrRExeBMyjX0sIRY039HbnBObE7t5ihxRP3wYPSJ0Zt/apQ==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "path": "system.io.pipelines/6.0.3", + "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dGfhVR2KQhRwrl0D8yb8gJLpr2iX4Hnud1oNRwUbafrqskstG2kC3NMNp/t7QRzdb1mlNqc99F2OjXYKyHzdnA==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MHtkLrHBt/UkTMLaBYgCgrm2WBogOkEjDRlNJSxy18uQWEMN4ymSywGNwNHS8ATNyaGJzddvmdWI/UjLaLyskg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6sVcH1+qeVKf7xD/7k0ouAA7830LIw7Ltwo4bEl9ExyRVN/YNUhka9CBcd2Pp4Ugn14/cIY/i39bSTMUOmftFw==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S70uFEyXRAuRBxWsQWyVciioHMGOYxpob7a/TNchHKF9ceQPktdtcdl3/vktvUJU8B5ES7lG1wkglSWXYKHjcA==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==", + "path": "system.net.websockets.websocketprotocol/4.5.1", + "hashPath": "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TqRGJ6R6S9VpsXm2GpRy87TFXMxVqtYMrZtQFZHNJadQ1njAlpp0F5PfsWH04UNZWeY9X1jK+Kr8faJREA1kfg==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-13ihEbKKWpJYwZpo1kcDv2kW8eCK9twslQXpuqW/ulpHFhB2vuxbCuQgllNLjiSuL3uEKSPz34wC0xRb5hY9OA==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cYyPyIPBNlROATH5CjGQpvFhPdCrkDyVpChahZmpZlpXE4wQS+f6fUl+A/16U8/IShAiS3ofjX6bHuwRyHHWbQ==", + "path": "system.reflection.metadata/1.4.1", + "hashPath": "system.reflection.metadata.1.4.1.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJGsxoZ+9PXn+Qdjc5Nk6yJVqLk8lRR3k3uEGja59sC1EbkzMbVMqPFNOQmYxaO5Fbid8Bm29o+rB/PdDCDXNw==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yhyMfLA28dYAFahmTy+lM6rDrrca84R76fk8J0GH9gdtcZe6NuA7bWhLOCcWOEi74jZOIjtjtRPzkdSv6KlATQ==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-djZnX43T2YuLt526S/mq2pBiHQS8WfAUAg/nOt+oz6MkTo6HKAANCytQEFXmv6jyrumb8ohYe3ht2sEUMi9LMQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jw3ielASDELVDT+VPsL6PGRHp50mytxUnVp7UlKZWS3l5cxWAhZIWfTiunuqyy90WKcEIehjHkfpRqyzO5eFmw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPdBt8ZxEzxDYhPnWz+eegZMhyYBzea/Oi7AuuqwtyCATswlsMdA3tiw/U/rMP+MvDa4DIhI1inEwEDYArfuJg==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DG7gpkRnHPaofkkKx5jWKqI9gjcHhDOt3BeCMKRTImnngZvP1jlgYMXYXxY+S8XWyOoyU8KF5Tv0ZrG9FYREvQ==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xFN3KCCvtAdfdy+AngirK0Tku73Ne9i5NmV995PGnHOn6OvNx5j/f2Aa6FuEoZT1YshMjOlWfEKI8WAjnaxtRg==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iwhUBeB6oQ10iH2CRQeLNTHyQX9lxiMNZuC9nMY0IhiQlRaDtcwTVaGWSTShduj0V8o07kOgI53QayLnHt6i0A==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6hQ2W40ImHD8OSBL8zWYSwdae6iryMpeEThocf8u1m/0LFZUmnRtKyXZtXNNqwkbha/mDcjS+GbbCk+whXz0sA==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aUDiT8Qv4rbc1YwvWhBM76PzeoHLQLook/5PiXhFsBur7cniIsd2K0MhGDZ1M1IN9j7y6HdC7lnk+TS37lJEZA==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3h7hlVK5u8nzCUQFFYj6yw6NKYgnrUySo0oaXN21LyrOQpr052u5rvnSxUGuIKO7M9jRv1FaLZOGVI/+7olf9A==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IKcG64NTLVkZVHawu61/TldF/J/Vb7phwiECTLwB30N7NoUkXs1BquSuCJHyHCLUC0vEmEU0vqnQZY7T21Gc1Q==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EyRjbRA4pD4dG4O4XEzITKvzLRpauU4LhvS1UhiWUlvk5bUcfhFDMw1obsrvfpfD3zvqJ6PXm6Y4r2tUFf1yCQ==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MOrSyJ8eyHXyB4xMFN7AIZ5/B9ODYQxmspxxD2r5Zd8Os6hUAmVRUgl6s6Qml/j4nJGcsOHgonpDYmEAeuADMw==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Tasks/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Extensions.dll b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Extensions.dll new file mode 100644 index 0000000..b0db723 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Extensions.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Extensions.pdb b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Extensions.pdb new file mode 100644 index 0000000..77cd23b Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Extensions.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Model.dll b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Model.dll new file mode 100644 index 0000000..9fb27f0 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Model.pdb b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Model.pdb new file mode 100644 index 0000000..2d4df51 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Model.xml b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Model.xml new file mode 100644 index 0000000..90ea772 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Model.xml @@ -0,0 +1,1543 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 2线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Repository.dll b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Repository.dll new file mode 100644 index 0000000..7d79fb4 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Repository.pdb b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Repository.pdb new file mode 100644 index 0000000..b02178a Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Repository.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Services.dll b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Services.dll new file mode 100644 index 0000000..120d205 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Services.pdb b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Services.pdb new file mode 100644 index 0000000..14b8434 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Services.pdb differ diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Services.xml b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Services.xml new file mode 100644 index 0000000..623dba3 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Services.xml @@ -0,0 +1,941 @@ + + + + zzz.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 种子数据 服务 + + + + + 构造 + + + + + + 异步添加种子数据 + + + + + + + + 同步表结构 + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 种子数据 接口 + + + + + 同步表结构 + + + + + + + 设备名称 + + + + + 设备利用率DTO + + + + + x轴 + + + + + series + + + + + 动态月订单信息数据 + + + + + 生产计划达成率 + + + + + 订单交付率 + + + + + 生产数量 + + + + + 设备利用率 + + + + + 产品合格率 + + + + + 大屏生产工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 完成进度 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 各产品生产数量 + + + + + x轴 + + + + + series + + + + + PLC硬件信息 + + + + + eqmt_id + + + + + ip + + + + + 端口 + + + + + 读取PLC数据接口 + + + + + 读取13线数据 + + + + + 读取16线数据 + + + + + 读取17线数据 + + + + + 读取18线数据 + + + + + 读取19线数据 + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 读取PLC数据服务 + + + + + 构造 + + + + + 打开连接 + + + + + + + + 关闭连接 + + + + + 读取13线数据 + + + + + 读取16线数据 + 一个端口 + + + + + 读取19线数据 + 一个端口 + + + + + 读取17线数据 + 两个端口 + + + + + 读取18线数据 + 两个端口 + + + + + 创建间隔采集数据 + + + + + + 班次产量数据 + + + + + + 计算OEE + + + + + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Tasks.dll b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Tasks.dll new file mode 100644 index 0000000..0d4ef26 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Tasks.pdb b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Tasks.pdb new file mode 100644 index 0000000..54a9137 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/bin/Release/net6.0/zzz.Tasks.pdb differ diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.AssemblyInfo.cs b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.AssemblyInfo.cs new file mode 100644 index 0000000..1e06e03 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("cjyx.Extensions")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("cjyx.Extensions")] +[assembly: System.Reflection.AssemblyTitleAttribute("cjyx.Extensions")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.AssemblyInfoInputs.cache new file mode 100644 index 0000000..0868f95 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +45ea52b4d878670284b34db252e94f850ed0ad5d diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a9aaf7a --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = cjyx.Extensions +build_property.ProjectDir = D:\work\长江云息\Src\cjyx\cjyx.Extensions\ diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.GlobalUsings.g.cs b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.assets.cache b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.assets.cache new file mode 100644 index 0000000..c7faba5 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.assets.cache differ diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.csproj.AssemblyReference.cache new file mode 100644 index 0000000..57ddaaa Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.csproj.CopyComplete b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5af6ff9 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +9cb855d464edfcda2a650e12823019b53049a968 diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..17b6d6b --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.csproj.FileListAbsolute.txt @@ -0,0 +1,25 @@ +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\cjyx.Extensions.csproj.AssemblyReference.cache +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\cjyx.Extensions.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\cjyx.Extensions.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\cjyx.Extensions.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\cjyx.Extensions.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\cjyx.Extensions.deps.json +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\cjyx.Extensions.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\ref\cjyx.Extensions.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\cjyx.Extensions.pdb +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\cjyx.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\cjyx.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\cjyx.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\cjyx.Services.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\cjyx.Services.pdb +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\cjyx.Common.pdb +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\cjyx.Model.pdb +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\cjyx.Repository.pdb +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\cjyx.Extensions.csproj.CopyComplete +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\cjyx.Extensions.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\ref\cjyx.Extensions.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\cjyx.Extensions.pdb +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\cjyx.Tasks.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\cjyx.Tasks.pdb +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\cjyx.Model.xml +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\cjyx.Services.xml diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.dll b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.dll new file mode 100644 index 0000000..e621f9a Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.dll differ diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.pdb b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.pdb new file mode 100644 index 0000000..dc03034 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/cjyx.Extensions.pdb differ diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/ref/cjyx.Extensions.dll b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/ref/cjyx.Extensions.dll new file mode 100644 index 0000000..ca222f6 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/ref/cjyx.Extensions.dll differ diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/ref/zzz.Extensions.dll b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/ref/zzz.Extensions.dll new file mode 100644 index 0000000..592fed9 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/ref/zzz.Extensions.dll differ diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/refint/zzz.Extensions.dll b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/refint/zzz.Extensions.dll new file mode 100644 index 0000000..592fed9 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/refint/zzz.Extensions.dll differ diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.AssemblyInfo.cs b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.AssemblyInfo.cs new file mode 100644 index 0000000..958a0ec --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("zzz.Extensions")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("zzz.Extensions")] +[assembly: System.Reflection.AssemblyTitleAttribute("zzz.Extensions")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c66962b --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +35669b6c1ac9a9ddcc97c3e17f237cc85c178e92 diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..64be9ae --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = zzz.Extensions +build_property.ProjectDir = F:\yuhong_plc\zzz.Extensions\ diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.GlobalUsings.g.cs b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.assets.cache b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.assets.cache new file mode 100644 index 0000000..7c11cf6 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.assets.cache differ diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.csproj.AssemblyReference.cache new file mode 100644 index 0000000..804f267 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.csproj.CopyComplete b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..67f68f9 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c4024a66d8f467bbad734429bc1605ad905ce678 diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..f285dd5 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.csproj.FileListAbsolute.txt @@ -0,0 +1,148 @@ +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\zzz.Extensions.deps.json +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\zzz.Extensions.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\ref\zzz.Extensions.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\zzz.Extensions.pdb +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\zzz.Tasks.pdb +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\Src\cjyx\cjyx.Extensions\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.AssemblyReference.cache +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\zzz.Extensions.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\zzz.Extensions.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\zzz.Extensions.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.CopyComplete +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\zzz.Extensions.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\ref\zzz.Extensions.dll +D:\work\长江云息\Src\cjyx\cjyx.Extensions\obj\Debug\net6.0\zzz.Extensions.pdb +D:\work\长江云息\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.AssemblyReference.cache +D:\work\长江云息\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.dll +D:\work\长江云息\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\ref\zzz.Extensions.dll +D:\work\长江云息\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.pdb +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Extensions.deps.json +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Extensions.dll +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\ref\zzz.Extensions.dll +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Extensions.pdb +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Services.xml +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Tasks.pdb +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Extensions.deps.json +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\ref\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Extensions.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Services.xml +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Tasks.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\ref\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Extensions.deps.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\ref\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Extensions.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Services.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Tasks.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\ref\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Extensions.deps.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Extensions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Extensions.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Repository.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Services.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Tasks.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Services.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Services.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Tasks.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Model.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Debug\net6.0\zzz.Repository.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.GeneratedMSBuildEditorConfig.editorconfig +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.AssemblyInfoInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.AssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.CoreCompileInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.CopyComplete +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\refint\zzz.Extensions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Debug\net6.0\ref\zzz.Extensions.dll +F:\yuhong_plc\zzz.Extensions\bin\Debug\net6.0\zzz.Extensions.deps.json +F:\yuhong_plc\zzz.Extensions\bin\Debug\net6.0\zzz.Extensions.dll +F:\yuhong_plc\zzz.Extensions\bin\Debug\net6.0\zzz.Extensions.pdb +F:\yuhong_plc\zzz.Extensions\bin\Debug\net6.0\zzz.Common.dll +F:\yuhong_plc\zzz.Extensions\bin\Debug\net6.0\zzz.Model.dll +F:\yuhong_plc\zzz.Extensions\bin\Debug\net6.0\zzz.Repository.dll +F:\yuhong_plc\zzz.Extensions\bin\Debug\net6.0\zzz.Services.dll +F:\yuhong_plc\zzz.Extensions\bin\Debug\net6.0\zzz.Tasks.dll +F:\yuhong_plc\zzz.Extensions\bin\Debug\net6.0\zzz.Services.pdb +F:\yuhong_plc\zzz.Extensions\bin\Debug\net6.0\zzz.Services.xml +F:\yuhong_plc\zzz.Extensions\bin\Debug\net6.0\zzz.Tasks.pdb +F:\yuhong_plc\zzz.Extensions\bin\Debug\net6.0\zzz.Common.pdb +F:\yuhong_plc\zzz.Extensions\bin\Debug\net6.0\zzz.Model.pdb +F:\yuhong_plc\zzz.Extensions\bin\Debug\net6.0\zzz.Model.xml +F:\yuhong_plc\zzz.Extensions\bin\Debug\net6.0\zzz.Repository.pdb +F:\yuhong_plc\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.AssemblyReference.cache +F:\yuhong_plc\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.GeneratedMSBuildEditorConfig.editorconfig +F:\yuhong_plc\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.AssemblyInfoInputs.cache +F:\yuhong_plc\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.AssemblyInfo.cs +F:\yuhong_plc\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.CoreCompileInputs.cache +F:\yuhong_plc\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.csproj.CopyComplete +F:\yuhong_plc\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.dll +F:\yuhong_plc\zzz.Extensions\obj\Debug\net6.0\refint\zzz.Extensions.dll +F:\yuhong_plc\zzz.Extensions\obj\Debug\net6.0\zzz.Extensions.pdb +F:\yuhong_plc\zzz.Extensions\obj\Debug\net6.0\ref\zzz.Extensions.dll diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.dll b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.dll new file mode 100644 index 0000000..4f36965 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.dll differ diff --git a/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.pdb b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.pdb new file mode 100644 index 0000000..8717985 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Debug/net6.0/zzz.Extensions.pdb differ diff --git a/yuhong_plc/zzz.Extensions/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/yuhong_plc/zzz.Extensions/obj/Release/net6.0/ref/zzz.Extensions.dll b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/ref/zzz.Extensions.dll new file mode 100644 index 0000000..969b8c4 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/ref/zzz.Extensions.dll differ diff --git a/yuhong_plc/zzz.Extensions/obj/Release/net6.0/refint/zzz.Extensions.dll b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/refint/zzz.Extensions.dll new file mode 100644 index 0000000..969b8c4 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/refint/zzz.Extensions.dll differ diff --git a/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.AssemblyInfo.cs b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.AssemblyInfo.cs new file mode 100644 index 0000000..0d7046d --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("zzz.Extensions")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("zzz.Extensions")] +[assembly: System.Reflection.AssemblyTitleAttribute("zzz.Extensions")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.AssemblyInfoInputs.cache new file mode 100644 index 0000000..062153a --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +57e7e5b83dc5d9a8cd32fd312c183964ce5f5567 diff --git a/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..64be9ae --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = zzz.Extensions +build_property.ProjectDir = F:\yuhong_plc\zzz.Extensions\ diff --git a/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.GlobalUsings.g.cs b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.assets.cache b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.assets.cache new file mode 100644 index 0000000..34c87be Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.assets.cache differ diff --git a/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.csproj.AssemblyReference.cache new file mode 100644 index 0000000..951f646 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.csproj.BuildWithSkipAnalyzers b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.csproj.CopyComplete b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..9f2ffdc --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +9a7c3dd16a01baed9e7528ce1586eb916c0a35b6 diff --git a/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..06c67e2 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.csproj.FileListAbsolute.txt @@ -0,0 +1,75 @@ +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Extensions.deps.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\ref\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Extensions.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Services.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Services.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Tasks.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\ref\zzz.Extensions.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Extensions.deps.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Extensions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Extensions.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Repository.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Services.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Tasks.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Services.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Services.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Tasks.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Model.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\bin\Release\net6.0\zzz.Repository.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.GeneratedMSBuildEditorConfig.editorconfig +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.AssemblyInfoInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.AssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.csproj.CoreCompileInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.csproj.CopyComplete +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\refint\zzz.Extensions.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Extensions\obj\Release\net6.0\ref\zzz.Extensions.dll +F:\yuhong_plc\zzz.Extensions\bin\Release\net6.0\zzz.Extensions.deps.json +F:\yuhong_plc\zzz.Extensions\bin\Release\net6.0\zzz.Extensions.dll +F:\yuhong_plc\zzz.Extensions\bin\Release\net6.0\zzz.Extensions.pdb +F:\yuhong_plc\zzz.Extensions\bin\Release\net6.0\zzz.Common.dll +F:\yuhong_plc\zzz.Extensions\bin\Release\net6.0\zzz.Model.dll +F:\yuhong_plc\zzz.Extensions\bin\Release\net6.0\zzz.Repository.dll +F:\yuhong_plc\zzz.Extensions\bin\Release\net6.0\zzz.Services.dll +F:\yuhong_plc\zzz.Extensions\bin\Release\net6.0\zzz.Tasks.dll +F:\yuhong_plc\zzz.Extensions\bin\Release\net6.0\zzz.Services.pdb +F:\yuhong_plc\zzz.Extensions\bin\Release\net6.0\zzz.Services.xml +F:\yuhong_plc\zzz.Extensions\bin\Release\net6.0\zzz.Tasks.pdb +F:\yuhong_plc\zzz.Extensions\bin\Release\net6.0\zzz.Common.pdb +F:\yuhong_plc\zzz.Extensions\bin\Release\net6.0\zzz.Model.pdb +F:\yuhong_plc\zzz.Extensions\bin\Release\net6.0\zzz.Model.xml +F:\yuhong_plc\zzz.Extensions\bin\Release\net6.0\zzz.Repository.pdb +F:\yuhong_plc\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.csproj.AssemblyReference.cache +F:\yuhong_plc\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.GeneratedMSBuildEditorConfig.editorconfig +F:\yuhong_plc\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.AssemblyInfoInputs.cache +F:\yuhong_plc\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.AssemblyInfo.cs +F:\yuhong_plc\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.csproj.CoreCompileInputs.cache +F:\yuhong_plc\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.csproj.CopyComplete +F:\yuhong_plc\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.dll +F:\yuhong_plc\zzz.Extensions\obj\Release\net6.0\refint\zzz.Extensions.dll +F:\yuhong_plc\zzz.Extensions\obj\Release\net6.0\zzz.Extensions.pdb +F:\yuhong_plc\zzz.Extensions\obj\Release\net6.0\ref\zzz.Extensions.dll diff --git a/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.dll b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.dll new file mode 100644 index 0000000..b0db723 Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.dll differ diff --git a/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.pdb b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.pdb new file mode 100644 index 0000000..77cd23b Binary files /dev/null and b/yuhong_plc/zzz.Extensions/obj/Release/net6.0/zzz.Extensions.pdb differ diff --git a/yuhong_plc/zzz.Extensions/obj/cjyx.Extensions.csproj.nuget.dgspec.json b/yuhong_plc/zzz.Extensions/obj/cjyx.Extensions.csproj.nuget.dgspec.json new file mode 100644 index 0000000..6e75207 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/cjyx.Extensions.csproj.nuget.dgspec.json @@ -0,0 +1,498 @@ +{ + "format": 1, + "restore": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Extensions\\cjyx.Extensions.csproj": {} + }, + "projects": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\cjyx.Common.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\cjyx.Common.csproj", + "projectName": "cjyx.Common", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\cjyx.Common.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "Microsoft.AspNetCore.SignalR.Core": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.Extensions.Configuration": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.Extensions.Configuration.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Binder": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Json": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Hosting.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.11.0, )" + }, + "Serilog.Sinks.File": { + "target": "Package", + "version": "[5.0.0, )" + }, + "WebApiClient.Extensions.DependencyInjection": { + "target": "Package", + "version": "[2.0.3, )" + }, + "Yitter.IdGenerator": { + "target": "Package", + "version": "[1.0.12, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Extensions\\cjyx.Extensions.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Extensions\\cjyx.Extensions.csproj", + "projectName": "cjyx.Extensions", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Extensions\\cjyx.Extensions.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Extensions\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj" + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\cjyx.Tasks.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\cjyx.Tasks.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[6.3.0, )" + }, + "Autofac.Extras.DynamicProxy": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.AspNetCore.Http": { + "target": "Package", + "version": "[2.2.2, )" + }, + "Microsoft.AspNetCore.Http.Abstractions": { + "target": "Package", + "version": "[2.2.0, )" + }, + "Microsoft.Extensions.Logging": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Logging.EventLog": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore": { + "target": "Package", + "version": "[6.1.0, )" + }, + "MiniProfiler.Shared": { + "target": "Package", + "version": "[4.2.22, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.2.3, )" + }, + "Swashbuckle.AspNetCore.Filters": { + "target": "Package", + "version": "[7.0.2, )" + }, + "Swashbuckle.AspNetCore.Newtonsoft": { + "target": "Package", + "version": "[6.3.1, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj", + "projectName": "cjyx.Model", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.0.0, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.0.8, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj", + "projectName": "cjyx.Repository", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\cjyx.Common.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\cjyx.Common.csproj" + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj", + "projectName": "cjyx.Services", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\cjyx.Tasks.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\cjyx.Tasks.csproj", + "projectName": "cjyx.Tasks", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\cjyx.Tasks.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Quartz": { + "target": "Package", + "version": "[3.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Extensions/obj/cjyx.Extensions.csproj.nuget.g.props b/yuhong_plc/zzz.Extensions/obj/cjyx.Extensions.csproj.nuget.g.props new file mode 100644 index 0000000..45b3fae --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/cjyx.Extensions.csproj.nuget.g.props @@ -0,0 +1,24 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\BLACK\.nuget\packages\;D:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.0.0 + + + + + + + + + + + C:\Users\BLACK\.nuget\packages\webapiclient.jit\1.0.3 + C:\Users\BLACK\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Extensions/obj/cjyx.Extensions.csproj.nuget.g.targets b/yuhong_plc/zzz.Extensions/obj/cjyx.Extensions.csproj.nuget.g.targets new file mode 100644 index 0000000..a03b337 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/cjyx.Extensions.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Extensions/obj/project.assets.json b/yuhong_plc/zzz.Extensions/obj/project.assets.json new file mode 100644 index 0000000..b79a2f0 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/project.assets.json @@ -0,0 +1,10099 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "Autofac/6.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "compile": { + "lib/net5.0/Autofac.dll": {} + }, + "runtime": { + "lib/net5.0/Autofac.dll": {} + } + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "type": "package", + "dependencies": { + "Autofac": "6.2.0", + "Castle.Core": "4.4.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + } + }, + "AutoMapper/11.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "compile": { + "lib/netstandard2.1/AutoMapper.dll": {} + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": {} + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "dependencies": { + "AutoMapper": "11.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} + } + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + } + }, + "Castle.Core/4.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Castle.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": {} + } + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "compile": { + "lib/net5.0/Google.Protobuf.dll": {} + }, + "runtime": { + "lib/net5.0/Google.Protobuf.dll": {} + } + }, + "HslCommunication/7.0.1": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.2" + }, + "compile": { + "lib/netstandard2.0/HslCommunication.dll": {} + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": {} + } + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": {} + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": {} + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "compile": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {} + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {} + } + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": {} + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": {} + } + }, + "log4net/2.0.14": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/log4net.dll": {} + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Features": "6.0.5", + "System.IO.Pipelines": "6.0.3" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "6.0.0-rc.1.21452.15", + "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Connections": "1.1.0", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "6.0.5", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "6.0.5", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll": {} + } + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "System.Net.WebSockets.WebSocketProtocol": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {} + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "build": { + "build/Microsoft.Extensions.ApiDescription.Server.props": {}, + "build/Microsoft.Extensions.ApiDescription.Server.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} + } + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "type": "package", + "dependencies": { + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.Features/6.0.5": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Features.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Features.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {} + } + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "log4net": "2.0.13" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MiniProfiler.AspNetCore/4.2.22": { + "type": "package", + "dependencies": { + "MiniProfiler.Shared": "4.2.22", + "System.Text.Json": "4.6.0" + }, + "compile": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "type": "package", + "dependencies": { + "MiniProfiler.AspNetCore": "4.2.22" + }, + "compile": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "MiniProfiler.Shared/4.2.22": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0", + "Newtonsoft.Json": "10.0.3", + "System.ComponentModel.Primitives": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.4.1", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": {} + }, + "runtime": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": {} + } + }, + "MySql.Data/8.0.29": { + "type": "package", + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.4.1", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.4.0" + }, + "compile": { + "lib/net6.0/MySql.Data.dll": {}, + "lib/net6.0/Ubiety.Dns.Core.dll": {}, + "lib/net6.0/ZstdNet.dll": {} + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": {}, + "lib/net6.0/Ubiety.Dns.Core.dll": {}, + "lib/net6.0/ZstdNet.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.1" + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {} + } + }, + "Npgsql/5.0.7": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "4.6.0" + }, + "compile": { + "lib/net5.0/Npgsql.dll": {} + }, + "runtime": { + "lib/net5.0/Npgsql.dll": {} + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "4.7.1" + }, + "compile": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + } + }, + "Quartz/3.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.1.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "compile": { + "lib/netstandard2.0/Quartz.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "Scrutor/3.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9", + "Microsoft.Extensions.DependencyModel": "3.1.6" + }, + "compile": { + "lib/netcoreapp3.1/Scrutor.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Scrutor.dll": {} + } + }, + "Serilog/2.11.0": { + "type": "package", + "compile": { + "lib/net5.0/Serilog.dll": {} + }, + "runtime": { + "lib/net5.0/Serilog.dll": {} + } + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.File.dll": {} + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "compile": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} + } + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "alpine-x64" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + } + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "10.0.3", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/SqlSugar.dll": {} + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": {} + } + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/DmProvider.dll": {} + }, + "runtime": { + "lib/netstandard2.0/DmProvider.dll": {} + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Kdbndp.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": {} + } + }, + "Swashbuckle.AspNetCore/6.2.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", + "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + }, + "build": { + "build/Swashbuckle.AspNetCore.props": {} + } + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "2.1.0", + "Microsoft.OpenApi": "1.2.3", + "Scrutor": "3.3.0", + "Swashbuckle.AspNetCore.Filters.Abstractions": "7.0.2", + "Swashbuckle.AspNetCore.SwaggerGen": "5.0.0" + }, + "compile": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": {} + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": {} + } + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "type": "package", + "compile": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {} + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {} + } + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.0-rc.1.21452.15", + "Swashbuckle.AspNetCore.SwaggerGen": "6.3.1" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll": {} + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll": {} + } + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {} + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.3.1" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Data.Common/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.1", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.DirectoryServices.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Pipelines.dll": {} + }, + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.4.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/System.Threading.Channels.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Threading.Channels.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "compile": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": {} + } + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "System.Runtime.Caching": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": {} + } + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "compile": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": {} + } + }, + "zzz.Common/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "compile": { + "bin/placeholder/zzz.Common.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Common.dll": {} + } + }, + "zzz.Model/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "compile": { + "bin/placeholder/zzz.Model.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "compile": { + "bin/placeholder/zzz.Repository.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Repository.dll": {} + } + }, + "zzz.Services/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "HslCommunication": "7.0.1", + "zzz.Repository": "1.0.0" + }, + "compile": { + "bin/placeholder/zzz.Services.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Services.dll": {} + } + }, + "zzz.Tasks/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "Quartz": "3.4.0", + "zzz.Services": "1.0.0" + }, + "compile": { + "bin/placeholder/zzz.Tasks.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Autofac/6.3.0": { + "sha512": "gO4bli0N8tDnBHzbYktcnbXlmN6T+IT5W+FUGgCUaM6pwwHXIxOPoUGvfGum7sZpJJgfQNgjFFv80ZPuARgRdA==", + "type": "package", + "path": "autofac/6.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.6.3.0.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net5.0/Autofac.dll", + "lib/net5.0/Autofac.pdb", + "lib/net5.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.pdb", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.pdb", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extras.DynamicProxy/6.0.1": { + "sha512": "+ulCOXUjbJ5dljBPZf3gRxQNPRGqg/h1cNTZ4SpXK3qiamTfRsW3gXs2w/IJ+CIDmHrFGYXLqzNd5etvzwB8kA==", + "type": "package", + "path": "autofac.extras.dynamicproxy/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.extras.dynamicproxy.6.0.1.nupkg.sha512", + "autofac.extras.dynamicproxy.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml" + ] + }, + "AutoMapper/11.0.1": { + "sha512": "WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "type": "package", + "path": "automapper/11.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.11.0.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/netstandard2.1/AutoMapper.dll", + "lib/netstandard2.1/AutoMapper.xml" + ] + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "sha512": "0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "type": "package", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", + "automapper.extensions.microsoft.dependencyinjection.nuspec", + "icon.png", + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll" + ] + }, + "BouncyCastle.NetCore/1.8.5": { + "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "type": "package", + "path": "bouncycastle.netcore/1.8.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bouncycastle.netcore.1.8.5.nupkg.sha512", + "bouncycastle.netcore.nuspec", + "lib/Mono/BouncyCastle.Crypto.dll", + "lib/Mono/BouncyCastle.Crypto.xml", + "lib/MonoAndroid/BouncyCastle.Crypto.dll", + "lib/MonoAndroid/BouncyCastle.Crypto.xml", + "lib/MonoMac/BouncyCastle.Crypto.dll", + "lib/MonoMac/BouncyCastle.Crypto.xml", + "lib/MonoTouch/BouncyCastle.Crypto.dll", + "lib/MonoTouch/BouncyCastle.Crypto.xml", + "lib/net20/BouncyCastle.Crypto.dll", + "lib/net20/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "lib/xamarinios/BouncyCastle.Crypto.dll", + "lib/xamarinios/BouncyCastle.Crypto.xml" + ] + }, + "Castle.Core/4.4.0": { + "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "type": "package", + "path": "castle.core/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ASL - Apache Software Foundation License.txt", + "CHANGELOG.md", + "LICENSE", + "castle.core.4.4.0.nupkg.sha512", + "castle.core.nuspec", + "lib/net35/Castle.Core.dll", + "lib/net35/Castle.Core.xml", + "lib/net40/Castle.Core.dll", + "lib/net40/Castle.Core.xml", + "lib/net45/Castle.Core.dll", + "lib/net45/Castle.Core.xml", + "lib/netstandard1.3/Castle.Core.dll", + "lib/netstandard1.3/Castle.Core.xml", + "lib/netstandard1.5/Castle.Core.dll", + "lib/netstandard1.5/Castle.Core.xml", + "readme.txt" + ] + }, + "Google.Protobuf/3.19.4": { + "sha512": "fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "type": "package", + "path": "google.protobuf/3.19.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "google.protobuf.3.19.4.nupkg.sha512", + "google.protobuf.nuspec", + "lib/net45/Google.Protobuf.dll", + "lib/net45/Google.Protobuf.pdb", + "lib/net45/Google.Protobuf.xml", + "lib/net5.0/Google.Protobuf.dll", + "lib/net5.0/Google.Protobuf.pdb", + "lib/net5.0/Google.Protobuf.xml", + "lib/netstandard1.1/Google.Protobuf.dll", + "lib/netstandard1.1/Google.Protobuf.pdb", + "lib/netstandard1.1/Google.Protobuf.xml", + "lib/netstandard2.0/Google.Protobuf.dll", + "lib/netstandard2.0/Google.Protobuf.pdb", + "lib/netstandard2.0/Google.Protobuf.xml" + ] + }, + "HslCommunication/7.0.1": { + "sha512": "0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "type": "package", + "path": "hslcommunication/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "hslcommunication.7.0.1.nupkg.sha512", + "hslcommunication.nuspec", + "lib/net35/HslCommunication.dll", + "lib/net35/HslCommunication.xml", + "lib/net451/HslCommunication.dll", + "lib/net451/HslCommunication.xml", + "lib/netstandard2.0/HslCommunication.dll", + "lib/netstandard2.0/HslCommunication.xml" + ] + }, + "K4os.Compression.LZ4/1.2.6": { + "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "type": "package", + "path": "k4os.compression.lz4/1.2.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.1.2.6.nupkg.sha512", + "k4os.compression.lz4.nuspec", + "lib/net45/K4os.Compression.LZ4.dll", + "lib/net45/K4os.Compression.LZ4.xml", + "lib/net46/K4os.Compression.LZ4.dll", + "lib/net46/K4os.Compression.LZ4.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.xml" + ] + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "type": "package", + "path": "k4os.compression.lz4.streams/1.2.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.streams.1.2.6.nupkg.sha512", + "k4os.compression.lz4.streams.nuspec", + "lib/net45/K4os.Compression.LZ4.Streams.dll", + "lib/net45/K4os.Compression.LZ4.Streams.xml", + "lib/net46/K4os.Compression.LZ4.Streams.dll", + "lib/net46/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml" + ] + }, + "K4os.Hash.xxHash/1.0.6": { + "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "type": "package", + "path": "k4os.hash.xxhash/1.0.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.hash.xxhash.1.0.6.nupkg.sha512", + "k4os.hash.xxhash.nuspec", + "lib/net45/K4os.Hash.xxHash.dll", + "lib/net45/K4os.Hash.xxHash.xml", + "lib/net46/K4os.Hash.xxHash.dll", + "lib/net46/K4os.Hash.xxHash.xml", + "lib/netstandard1.6/K4os.Hash.xxHash.dll", + "lib/netstandard1.6/K4os.Hash.xxHash.xml", + "lib/netstandard2.0/K4os.Hash.xxHash.dll", + "lib/netstandard2.0/K4os.Hash.xxHash.xml" + ] + }, + "log4net/2.0.14": { + "sha512": "KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "type": "package", + "path": "log4net/2.0.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/log4net.dll", + "lib/net20/log4net.xml", + "lib/net35-client/log4net.dll", + "lib/net35-client/log4net.xml", + "lib/net35/log4net.dll", + "lib/net35/log4net.xml", + "lib/net40-client/log4net.dll", + "lib/net40-client/log4net.xml", + "lib/net40/log4net.dll", + "lib/net40/log4net.xml", + "lib/net45/log4net.dll", + "lib/net45/log4net.xml", + "lib/netstandard1.3/log4net.dll", + "lib/netstandard1.3/log4net.xml", + "lib/netstandard2.0/log4net.dll", + "lib/netstandard2.0/log4net.xml", + "log4net.2.0.14.nupkg.sha512", + "log4net.nuspec", + "package-icon.png" + ] + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml", + "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "type": "package", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml", + "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.policy.nuspec" + ] + }, + "Microsoft.AspNetCore.Connections.Abstractions/6.0.5": { + "sha512": "OBbGvih5/CLHTbJVDiJ203TmKXCx8z539O2YGnfHmExbNtMwyQ9rgpqoxyYEVvQrVsqxRhXfh57DOCQYhxcOBQ==", + "type": "package", + "path": "microsoft.aspnetcore.connections.abstractions/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/net461/Microsoft.AspNetCore.Connections.Abstractions.xml", + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/net6.0/Microsoft.AspNetCore.Connections.Abstractions.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml", + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.xml", + "microsoft.aspnetcore.connections.abstractions.6.0.5.nupkg.sha512", + "microsoft.aspnetcore.connections.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.server.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "sha512": "BAibpoItxI5puk7YJbIGj95arZueM8B8M5xT1fXBn3hb3L2G3ucrZcYXv1gXdaroLbntUs8qeV8iuBrpjQsrKw==", + "type": "package", + "path": "microsoft.aspnetcore.http/2.2.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml", + "microsoft.aspnetcore.http.2.2.2.nupkg.sha512", + "microsoft.aspnetcore.http.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "type": "package", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", + "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "sha512": "ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==", + "type": "package", + "path": "microsoft.aspnetcore.http.connections/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Http.Connections.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.xml", + "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.http.connections.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "sha512": "mYk5QUUjyXQmlyDHWDjkLYDArt97plwe6KsDsNVhDEQ+HgZMKGjISyM6YSA7BERQNR25kXBTbIYfSy1vePGQgg==", + "type": "package", + "path": "microsoft.aspnetcore.http.connections.common/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.xml", + "microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.http.connections.common.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "type": "package", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", + "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.JsonPatch/6.0.0-rc.1.21452.15": { + "sha512": "+27ce/d0w7jyEmCCMrzwFRg6PHZxQ37Fmnf+es1qQudbip2rryxPdM8TRoXT6wNtdlzqHnIyXTtLjSs0uIDhxA==", + "type": "package", + "path": "microsoft.aspnetcore.jsonpatch/6.0.0-rc.1.21452.15", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net461/Microsoft.AspNetCore.JsonPatch.xml", + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net6.0/Microsoft.AspNetCore.JsonPatch.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml", + "microsoft.aspnetcore.jsonpatch.6.0.0-rc.1.21452.15.nupkg.sha512", + "microsoft.aspnetcore.jsonpatch.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.0-rc.1.21452.15": { + "sha512": "/dspuIknGgOdBygH3bmjsIH5neuuJ7DHILXrKVPAoCykPARAIUBckZlIW6RrYqmbGTZYT/YFCzr/xDR5f0YiAA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.0-rc.1.21452.15", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll", + "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml", + "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.0-rc.1.21452.15.nupkg.sha512", + "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml", + "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml", + "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "sha512": "V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==", + "type": "package", + "path": "microsoft.aspnetcore.signalr/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.xml", + "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Common/6.0.5": { + "sha512": "N+MF6rs64kDDJ4zroD/NqRgXVSEkj/ppTX36AB2S43qm1y64YqWMCFCzLshkmi7SwWwQQPIByTNZDJfz4x7GjQ==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.common/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/net461/Microsoft.AspNetCore.SignalR.Common.xml", + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/net6.0/Microsoft.AspNetCore.SignalR.Common.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.xml", + "microsoft.aspnetcore.signalr.common.6.0.5.nupkg.sha512", + "microsoft.aspnetcore.signalr.common.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "sha512": "mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.xml", + "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.core.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "sha512": "BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml", + "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.protocols.json.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson/6.0.5": { + "sha512": "/7VUbkomGE7ph6R1JTtMji5QPGqesyCSeELFmfylaqFM+SdWf9EmbU3SCQPcIWhfv+RgbUWmTNfWWPzmVDTggw==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.protocols.newtonsoftjson/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll", + "lib/net461/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.xml", + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll", + "lib/net6.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson.xml", + "microsoft.aspnetcore.signalr.protocols.newtonsoftjson.6.0.5.nupkg.sha512", + "microsoft.aspnetcore.signalr.protocols.newtonsoftjson.nuspec" + ] + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "sha512": "ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==", + "type": "package", + "path": "microsoft.aspnetcore.websockets/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.xml", + "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.websockets.nuspec" + ] + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "type": "package", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml", + "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.webutilities.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/2.1.1": { + "sha512": "qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "type": "package", + "path": "microsoft.data.sqlclient/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.Data.SqlClient.dll", + "lib/net46/Microsoft.Data.SqlClient.pdb", + "lib/net46/Microsoft.Data.SqlClient.xml", + "lib/net46/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "microsoft.data.sqlclient.2.1.1.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net46/Microsoft.Data.SqlClient.dll", + "ref/net46/Microsoft.Data.SqlClient.pdb", + "ref/net46/Microsoft.Data.SqlClient.xml", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.Data.Sqlite/5.0.5": { + "sha512": "zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "type": "package", + "path": "microsoft.data.sqlite/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/_._", + "microsoft.data.sqlite.5.0.5.nupkg.sha512", + "microsoft.data.sqlite.nuspec" + ] + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "sha512": "tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "type": "package", + "path": "microsoft.data.sqlite.core/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.5.0.5.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Extensions.ApiDescription.Server.props", + "build/Microsoft.Extensions.ApiDescription.Server.targets", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", + "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "microsoft.extensions.apidescription.server.nuspec", + "tools/Newtonsoft.Json.dll", + "tools/dotnet-getdocument.deps.json", + "tools/dotnet-getdocument.dll", + "tools/dotnet-getdocument.runtimeconfig.json", + "tools/net461-x86/GetDocument.Insider.exe", + "tools/net461-x86/GetDocument.Insider.exe.config", + "tools/net461/GetDocument.Insider.exe", + "tools/net461/GetDocument.Insider.exe.config", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json" + ] + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "sha512": "BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "type": "package", + "path": "microsoft.extensions.configuration/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.dll", + "lib/net461/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.6.0.1.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net461/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "type": "package", + "path": "microsoft.extensions.configuration.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Json.dll", + "lib/net461/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/3.1.6": { + "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/3.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec" + ] + }, + "Microsoft.Extensions.Features/6.0.5": { + "sha512": "y7KLF1jRFQjSttfoilwHU86cU9ZgxN4ABfQR8tQ9qEC5AzTGYIX+K5RDwGFVK320eTiBwWuutV24ecmxBxo7Eg==", + "type": "package", + "path": "microsoft.extensions.features/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Features.dll", + "lib/net461/Microsoft.Extensions.Features.xml", + "lib/net6.0/Microsoft.Extensions.Features.dll", + "lib/net6.0/Microsoft.Extensions.Features.xml", + "lib/netstandard2.0/Microsoft.Extensions.Features.dll", + "lib/netstandard2.0/Microsoft.Extensions.Features.xml", + "microsoft.extensions.features.6.0.5.nupkg.sha512", + "microsoft.extensions.features.nuspec" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "sha512": "GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/6.0.0": { + "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "type": "package", + "path": "microsoft.extensions.logging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "build/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventLog/6.0.0": { + "sha512": "rlo0RxlMd0WtLG3CHI0qOTp6fFn7MvQjlrCjucA31RqmiMFCZkF8CHNbe8O7tbBIyyoLGWB1he9CbaA5iyHthg==", + "type": "package", + "path": "microsoft.extensions.logging.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net461/Microsoft.Extensions.Logging.EventLog.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml", + "microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore/6.1.0": { + "sha512": "qHb3GudscgrgEVByh86kAq3FMmjOdPIVoqvff3eokEP+QkZHzr42l4PlgxBsqhhlIX02SazC7ZdbfiFGDPRv9A==", + "type": "package", + "path": "microsoft.extensions.logging.log4net.aspnetcore/6.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "lib/net5.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.Log4Net.AspNetCore.dll", + "microsoft.extensions.logging.log4net.aspnetcore.6.1.0.nupkg.sha512", + "microsoft.extensions.logging.log4net.aspnetcore.nuspec" + ] + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "type": "package", + "path": "microsoft.extensions.objectpool/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "type": "package", + "path": "microsoft.extensions.options/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.21.1": { + "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "type": "package", + "path": "microsoft.identity.client/4.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid10.0/Microsoft.Identity.Client.dll", + "lib/monoandroid10.0/Microsoft.Identity.Client.xml", + "lib/monoandroid90/Microsoft.Identity.Client.dll", + "lib/monoandroid90/Microsoft.Identity.Client.xml", + "lib/net45/Microsoft.Identity.Client.dll", + "lib/net45/Microsoft.Identity.Client.xml", + "lib/net461/Microsoft.Identity.Client.dll", + "lib/net461/Microsoft.Identity.Client.xml", + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll", + "lib/netcoreapp2.1/Microsoft.Identity.Client.xml", + "lib/netstandard1.3/Microsoft.Identity.Client.dll", + "lib/netstandard1.3/Microsoft.Identity.Client.xml", + "lib/uap10.0/Microsoft.Identity.Client.dll", + "lib/uap10.0/Microsoft.Identity.Client.pri", + "lib/uap10.0/Microsoft.Identity.Client.xml", + "lib/xamarinios10/Microsoft.Identity.Client.dll", + "lib/xamarinios10/Microsoft.Identity.Client.xml", + "lib/xamarinmac20/Microsoft.Identity.Client.dll", + "lib/xamarinmac20/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.21.1.nupkg.sha512", + "microsoft.identity.client.nuspec", + "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll", + "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml", + "ref/net45/Microsoft.Identity.Client.dll", + "ref/net45/Microsoft.Identity.Client.xml", + "ref/net461/Microsoft.Identity.Client.dll", + "ref/net461/Microsoft.Identity.Client.xml", + "ref/netcoreapp2.1/Microsoft.Identity.Client.dll", + "ref/netcoreapp2.1/Microsoft.Identity.Client.xml", + "ref/netstandard1.3/Microsoft.Identity.Client.dll", + "ref/netstandard1.3/Microsoft.Identity.Client.xml", + "ref/uap10.0/Microsoft.Identity.Client.dll", + "ref/uap10.0/Microsoft.Identity.Client.xml", + "ref/xamarinmac20/Microsoft.Identity.Client.dll", + "ref/xamarinmac20/Microsoft.Identity.Client.xml" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "sha512": "+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "sha512": "Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "sha512": "OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "sha512": "X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "sha512": "gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "type": "package", + "path": "microsoft.net.http.headers/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.2.0.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.OpenApi/1.2.3": { + "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "type": "package", + "path": "microsoft.openapi/1.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.OpenApi.dll", + "lib/net46/Microsoft.OpenApi.pdb", + "lib/net46/Microsoft.OpenApi.xml", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.2.3.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "2FpFllO0wFJmfIXY9NXr33jWgr88b7E4gAuPHSNYzNr5o2XIouynxAoLA+SShuDI2ySSsvnBHURiXRX7tz59YA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "type": "package", + "path": "microsoft.win32.systemevents/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/net472/Microsoft.Win32.SystemEvents.dll", + "ref/net472/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MiniProfiler.AspNetCore/4.2.22": { + "sha512": "bBirB5d4Q0Bgx05Zg4yzXSmOHZQV4ZJhmxU3DGya4FZxNBwjaVHchqEKY0MJW5XLZo8axMAQm4yywgCvUlTymA==", + "type": "package", + "path": "miniprofiler.aspnetcore/4.2.22", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/net461/MiniProfiler.AspNetCore.dll", + "lib/net461/MiniProfiler.AspNetCore.xml", + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll", + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.xml", + "lib/netstandard2.0/MiniProfiler.AspNetCore.dll", + "lib/netstandard2.0/MiniProfiler.AspNetCore.xml", + "miniprofiler.aspnetcore.4.2.22.nupkg.sha512", + "miniprofiler.aspnetcore.nuspec" + ] + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "sha512": "nzCEaZnh77U9jw+c/qu4CtwYUpHEf+FH1ZMbYKMzIXr8CNNPlypSR6AJEAwjo3bq9TIJIpBMZIaK3inRLUCg4g==", + "type": "package", + "path": "miniprofiler.aspnetcore.mvc/4.2.22", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/net461/MiniProfiler.AspNetCore.Mvc.dll", + "lib/net461/MiniProfiler.AspNetCore.Mvc.xml", + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll", + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.xml", + "lib/netstandard2.0/MiniProfiler.AspNetCore.Mvc.dll", + "lib/netstandard2.0/MiniProfiler.AspNetCore.Mvc.xml", + "miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512", + "miniprofiler.aspnetcore.mvc.nuspec" + ] + }, + "MiniProfiler.Shared/4.2.22": { + "sha512": "OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==", + "type": "package", + "path": "miniprofiler.shared/4.2.22", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/net461/MiniProfiler.Shared.dll", + "lib/net461/MiniProfiler.Shared.xml", + "lib/netstandard2.0/MiniProfiler.Shared.dll", + "lib/netstandard2.0/MiniProfiler.Shared.xml", + "miniprofiler.shared.4.2.22.nupkg.sha512", + "miniprofiler.shared.nuspec" + ] + }, + "MySql.Data/8.0.29": { + "sha512": "3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "type": "package", + "path": "mysql.data/8.0.29", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/MySql.Data.dll", + "lib/net452/MySql.Data.xml", + "lib/net452/Ubiety.Dns.Core.dll", + "lib/net452/ZstdNet.dll", + "lib/net48/MySql.Data.dll", + "lib/net48/MySql.Data.xml", + "lib/net48/Ubiety.Dns.Core.dll", + "lib/net48/ZstdNet.dll", + "lib/net5.0/MySql.Data.dll", + "lib/net5.0/MySql.Data.xml", + "lib/net5.0/Ubiety.Dns.Core.dll", + "lib/net5.0/ZstdNet.dll", + "lib/net6.0/MySql.Data.dll", + "lib/net6.0/MySql.Data.xml", + "lib/net6.0/Ubiety.Dns.Core.dll", + "lib/net6.0/ZstdNet.dll", + "lib/netstandard2.0/MySql.Data.dll", + "lib/netstandard2.0/MySql.Data.xml", + "lib/netstandard2.0/Ubiety.Dns.Core.dll", + "lib/netstandard2.0/ZstdNet.dll", + "lib/netstandard2.1/MySql.Data.dll", + "lib/netstandard2.1/MySql.Data.xml", + "lib/netstandard2.1/Ubiety.Dns.Core.dll", + "lib/netstandard2.1/ZstdNet.dll", + "mysql.data.8.0.29.nupkg.sha512", + "mysql.data.nuspec" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "/6XtTu0ZHzge7tzZZN8UXpwG1K0Vgxi7C7R0QiTgxMtN4gkzNl4xNVUI4X3tymMwKWUdwqXvzkrJqt3MdMFXig==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Newtonsoft.Json.Bson/1.0.2": { + "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "type": "package", + "path": "newtonsoft.json.bson/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net45/Newtonsoft.Json.Bson.dll", + "lib/net45/Newtonsoft.Json.Bson.pdb", + "lib/net45/Newtonsoft.Json.Bson.xml", + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", + "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb", + "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll", + "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb", + "lib/netstandard2.0/Newtonsoft.Json.Bson.xml", + "newtonsoft.json.bson.1.0.2.nupkg.sha512", + "newtonsoft.json.bson.nuspec" + ] + }, + "Npgsql/5.0.7": { + "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "type": "package", + "path": "npgsql/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Npgsql.dll", + "lib/net5.0/Npgsql.xml", + "lib/netcoreapp3.1/Npgsql.dll", + "lib/netcoreapp3.1/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.5.0.7.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "sha512": "SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "type": "package", + "path": "oracle.manageddataaccess.core/3.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PerfCounters/register_odpc_perfmon_counters.ps1", + "PerfCounters/unregister_odpc_perfmon_counters.ps1", + "info.txt", + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll", + "oracle.manageddataaccess.core.3.21.1.nupkg.sha512", + "oracle.manageddataaccess.core.nuspec", + "readme.txt" + ] + }, + "Quartz/3.4.0": { + "sha512": "N8350OAlQhd8zKg0ARFikGjh3bfAW/CF/KVxu2fTIlAALB/oC1eg54n/QAPYR5ryHuYyDr5G8/Qa4k+D/7OFRQ==", + "type": "package", + "path": "quartz/3.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Quartz.dll", + "lib/net462/Quartz.xml", + "lib/net472/Quartz.dll", + "lib/net472/Quartz.xml", + "lib/netstandard2.0/Quartz.dll", + "lib/netstandard2.0/Quartz.xml", + "quartz-logo-small.png", + "quartz.3.4.0.nupkg.sha512", + "quartz.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "kuvqViO3OnqjWcNSQfanREtHgqJx6UK5UHPeIl7M666izpBErP4TDZctWnYvuz7l/hpWPkS3DsUAUPAyVS/zBA==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "QnpBRH8jHD/TtGA5fjrdK/BRf+Oslt/M/X+r487ByPS2q+EZUNwEiaoPUuZcqFcLwqAY2Fw7SciCHTPiK2GTqg==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "i/u0Svwgj6JM9SpaoJAqTiMU3B0UZEUC35JadEBgkihBi+RzyRe2VlGwhZ6B63r78CmzZ/VAYNXvLAnoIaRG/A==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "qOKLiiK96F+8pPB+ALL20VFsTDBolLfysxlBZDGlFXDEBEZfdfm4OYuInLtxYHCUSxpJpPivIYm9jasMzfgzEQ==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "KSKGjRiQWUHf2zpiRD3+q8lzjL89HhiR74cevVqShwVHtDEHjAhDU75w6mPdeFg9QSyqI32Ud3Qskr5WHNCw+g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "Scrutor/3.3.0": { + "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==", + "type": "package", + "path": "scrutor/3.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Scrutor.dll", + "lib/net461/Scrutor.pdb", + "lib/net461/Scrutor.xml", + "lib/netcoreapp3.1/Scrutor.dll", + "lib/netcoreapp3.1/Scrutor.pdb", + "lib/netcoreapp3.1/Scrutor.xml", + "lib/netstandard2.0/Scrutor.dll", + "lib/netstandard2.0/Scrutor.pdb", + "lib/netstandard2.0/Scrutor.xml", + "scrutor.3.3.0.nupkg.sha512", + "scrutor.nuspec" + ] + }, + "Serilog/2.11.0": { + "sha512": "ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "type": "package", + "path": "serilog/2.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.dll", + "lib/net45/Serilog.xml", + "lib/net46/Serilog.dll", + "lib/net46/Serilog.xml", + "lib/net5.0/Serilog.dll", + "lib/net5.0/Serilog.xml", + "lib/netstandard1.0/Serilog.dll", + "lib/netstandard1.0/Serilog.xml", + "lib/netstandard1.3/Serilog.dll", + "lib/netstandard1.3/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.2.11.0.nupkg.sha512", + "serilog.nuspec" + ] + }, + "Serilog.Sinks.File/5.0.0": { + "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "type": "package", + "path": "serilog.sinks.file/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "images/icon.png", + "lib/net45/Serilog.Sinks.File.dll", + "lib/net45/Serilog.Sinks.File.pdb", + "lib/net45/Serilog.Sinks.File.xml", + "lib/net5.0/Serilog.Sinks.File.dll", + "lib/net5.0/Serilog.Sinks.File.pdb", + "lib/net5.0/Serilog.Sinks.File.xml", + "lib/netstandard1.3/Serilog.Sinks.File.dll", + "lib/netstandard1.3/Serilog.Sinks.File.pdb", + "lib/netstandard1.3/Serilog.Sinks.File.xml", + "lib/netstandard2.0/Serilog.Sinks.File.dll", + "lib/netstandard2.0/Serilog.Sinks.File.pdb", + "lib/netstandard2.0/Serilog.Sinks.File.xml", + "lib/netstandard2.1/Serilog.Sinks.File.dll", + "lib/netstandard2.1/Serilog.Sinks.File.pdb", + "lib/netstandard2.1/Serilog.Sinks.File.xml", + "serilog.sinks.file.5.0.0.nupkg.sha512", + "serilog.sinks.file.nuspec" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "sha512": "f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.nativelibrary.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.0.4": { + "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "type": "package", + "path": "sqlitepclraw.core/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.0.4.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/alpine-x64/native/libe_sqlite3.so", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "type": "package", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll", + "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "sqlitepclraw.provider.dynamic_cdecl.nuspec" + ] + }, + "SqlSugarCore/5.0.8": { + "sha512": "20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "type": "package", + "path": "sqlsugarcore/5.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.1/SqlSugar.dll", + "sqlsugarcore.5.0.8.nupkg.sha512", + "sqlsugarcore.nuspec" + ] + }, + "SqlSugarCore.Dm/1.0.0": { + "sha512": "TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "type": "package", + "path": "sqlsugarcore.dm/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/DmProvider.dll", + "sqlsugarcore.dm.1.0.0.nupkg.sha512", + "sqlsugarcore.dm.nuspec" + ] + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "sha512": "xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "type": "package", + "path": "sqlsugarcore.kdbndp/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Kdbndp.dll", + "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512", + "sqlsugarcore.kdbndp.nuspec" + ] + }, + "Swashbuckle.AspNetCore/6.2.3": { + "sha512": "cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "type": "package", + "path": "swashbuckle.aspnetcore/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Filters/7.0.2": { + "sha512": "pjj/BdKFcXX1tdUrVjfW6SiRSiHC4dOnqszhU2PuS0RBXZUnGM18tXUrNU2pgPkSjWUnCiyvbjd3GBkEuNTBYA==", + "type": "package", + "path": "swashbuckle.aspnetcore.filters/7.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll", + "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.dll", + "swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512", + "swashbuckle.aspnetcore.filters.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Filters.Abstractions/7.0.2": { + "sha512": "RqZ+P+m2cw1TVsU9LUHNdLf4Ww7YSqDRt7UHRzauZJnRztDlNR4doOGzXLmWZzq+3CfZyS7NEsQyJmf4Y+7GMQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.filters.abstractions/7.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll", + "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll", + "swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512", + "swashbuckle.aspnetcore.filters.abstractions.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Newtonsoft/6.3.1": { + "sha512": "oy6BwAX+tcKO13n9bw3nPtITBvD03bAHDN2+lTaOY/cUNcQE/liu3xWjbkdhLeNTUiC+7h+lJvR7KUdI7CXz0w==", + "type": "package", + "path": "swashbuckle.aspnetcore.newtonsoft/6.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Newtonsoft.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Newtonsoft.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Newtonsoft.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Newtonsoft.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Newtonsoft.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Newtonsoft.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Newtonsoft.pdb", + "swashbuckle.aspnetcore.newtonsoft.6.3.1.nupkg.sha512", + "swashbuckle.aspnetcore.newtonsoft.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.3.1": { + "sha512": "idAFh4xhyJHYHfdLVOOn+BmscBul1OQbWsnL6YPJE8tO/0y6S79hDCvs6OY5VI093/9+1pYY3j31Zet9yaDZjA==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/6.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", + "swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.3.1": { + "sha512": "+uoBV4h/6NhCPLoTofSmuOnZ+usu4PW1jP6l4OHwPyu2frbYXGNpJsHs5uUXXn929OiVQkT8wo3Lj/o+P99Ejg==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/6.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "sha512": "bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "wvyiJIm0HlaoN+AlJXhTpDrhYkN28OC/nEun5QpbPkZvbpgWSYvZ8Hr9/G4Bd1I0WSmFW18KQuE5DOA05Uubrw==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.5.1": { + "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "type": "package", + "path": "system.buffers/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Buffers.dll", + "lib/net461/System.Buffers.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.1.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "wAdmaCgCSe298gCNvAf6vlVPfQUR7h43Qr2tTtJFYeto/OvttRLyG4ch6/R2FpuWRMfxHBsAeHYrzjvEk1UM+Q==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.3.0": { + "sha512": "Un05L1TLTGqBBRKAFngtzovaNeFL1EGzuUwW0AiTotM/GUWVE0c0xH4owZgdJ6nf6DuK866gbLqD3c/Ms7KSOg==", + "type": "package", + "path": "system.collections.immutable/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.3.0.nupkg.sha512", + "system.collections.immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "sRo7MpbD5VnFdLZA/uVuR5YJdDV4i+DyJTpQ1rk92wCzLE4cXJ+q7tzGr2HwkL/ujeFNcPo/fOs7LKdDyeyupA==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "type": "package", + "path": "system.configuration.configurationmanager/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "wJLrK/MQdlF3TmfNouxSsgtCRhsgx4tz2KdY/mpvirOcgMc2W4DDK7vR6RcSc6XRV4P6rzrLFXd9wUzp/iWp0g==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Data.Common/4.3.0": { + "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "type": "package", + "path": "system.data.common/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.Common.dll", + "lib/netstandard1.2/System.Data.Common.dll", + "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.xml", + "ref/netstandard1.2/de/System.Data.Common.xml", + "ref/netstandard1.2/es/System.Data.Common.xml", + "ref/netstandard1.2/fr/System.Data.Common.xml", + "ref/netstandard1.2/it/System.Data.Common.xml", + "ref/netstandard1.2/ja/System.Data.Common.xml", + "ref/netstandard1.2/ko/System.Data.Common.xml", + "ref/netstandard1.2/ru/System.Data.Common.xml", + "ref/netstandard1.2/zh-hans/System.Data.Common.xml", + "ref/netstandard1.2/zh-hant/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.data.common.4.3.0.nupkg.sha512", + "system.data.common.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "aX7O7aytoclkwEvOv4vCDBP2hDVsrAbQVAOJXUka7qCXbbZcqtv8CKrX646dSERl9aO/tY0/g2ezsa4jBAMQOg==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.DiagnosticSource.dll", + "lib/net461/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/6.0.0": { + "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "type": "package", + "path": "system.diagnostics.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "sha512": "kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "type": "package", + "path": "system.diagnostics.performancecounter/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Diagnostics.PerformanceCounter.dll", + "ref/net461/System.Diagnostics.PerformanceCounter.xml", + "ref/net472/System.Diagnostics.PerformanceCounter.dll", + "ref/net472/System.Diagnostics.PerformanceCounter.xml", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.4.7.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.StackTrace/4.3.0": { + "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "type": "package", + "path": "system.diagnostics.stacktrace/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.StackTrace.dll", + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.StackTrace.dll", + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll", + "ref/netstandard1.3/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll", + "system.diagnostics.stacktrace.4.3.0.nupkg.sha512", + "system.diagnostics.stacktrace.nuspec" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "6jD8gKBZvTfp1PEuqAkpMZvG9hF+gzGIvhvRh0K2qDApsiEpRZ9ZUlWE2nACpPdWP8w3DaL0TQAHuA7gXDSupA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.3.0": { + "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "type": "package", + "path": "system.diagnostics.tracesource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "system.diagnostics.tracesource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "ChcZW/eQtXpPDW7qMqlqK7xGW4A8hhz7/iY4J5hsvhzPsza7Cml+hdBhm5vAh6KhHcXzMvjfLcbChmZsYPlJsA==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.DirectoryServices/4.7.0": { + "sha512": "NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "type": "package", + "path": "system.directoryservices/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.DirectoryServices.dll", + "ref/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml", + "system.directoryservices.4.7.0.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.DirectoryServices.Protocols/4.7.0": { + "sha512": "yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "type": "package", + "path": "system.directoryservices.protocols/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.DirectoryServices.Protocols.dll", + "ref/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.4.7.0.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/4.7.0": { + "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "type": "package", + "path": "system.drawing.common/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.4.7.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "Zf/fX6NjK+eL01E0a5+pZb2NaitHwaVPlh7Wc62+wpnAtn1hA0ye8WAMV4r8DJv+AghKZYBwQwGqZJ9ikWLLkw==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "ttt2PGgBfejL4xBEdMMd2E+Mqn/wC47jhMBtqRNJeH6uYa2j3fTDi1Jj1hAY5sfgbJcrvfSO46G1pufONMmfmA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "kzMaA/htO8n7p5FQvyVXA9Q66+LntW+m0vp+Vnl5gSWsc6btlIYIC3aXs3DvtvdV0ue1tX/Mslkiei1vLgh3WA==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "sha512": "5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "Yn4CfuDOHBxI0b6JNSQJGqCIsuEqcjxQIAxktq316Jhz9Q0aRKqqGN7QNwd5fyNqz7mNMXfKDt1bJrtggkt8/g==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "kRj3owqKUOxPcvQpK0VItuLGg/aXPjUxzT5ujrfMW0RrAQ7FJYB+mFiCawtGQVQatVCKr78TX39cJueK9ic8wA==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "1d5+nGi+bWLgg0/wPO1IKJGSIe8Gy+WsMoT11T472mWHryC/qCISRl/v9w4rmk+72uX/1DFgBjBljUXyAK4jNg==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "sha512": "vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "BnZgb92GKxi/DjV7WbZo2Sm7G8pImuLocQAHIkuFrRExeBMyjX0sIRY039HbnBObE7t5ihxRP3wYPSJ0Zt/apQ==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.Pipelines/6.0.3": { + "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "type": "package", + "path": "system.io.pipelines/6.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Pipelines.dll", + "lib/net461/System.IO.Pipelines.xml", + "lib/net6.0/System.IO.Pipelines.dll", + "lib/net6.0/System.IO.Pipelines.xml", + "lib/netcoreapp3.1/System.IO.Pipelines.dll", + "lib/netcoreapp3.1/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.6.0.3.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Linq/4.3.0": { + "sha512": "dGfhVR2KQhRwrl0D8yb8gJLpr2iX4Hnud1oNRwUbafrqskstG2kC3NMNp/t7QRzdb1mlNqc99F2OjXYKyHzdnA==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "MHtkLrHBt/UkTMLaBYgCgrm2WBogOkEjDRlNJSxy18uQWEMN4ymSywGNwNHS8ATNyaGJzddvmdWI/UjLaLyskg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "6sVcH1+qeVKf7xD/7k0ouAA7830LIw7Ltwo4bEl9ExyRVN/YNUhka9CBcd2Pp4Ugn14/cIY/i39bSTMUOmftFw==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "S70uFEyXRAuRBxWsQWyVciioHMGOYxpob7a/TNchHKF9ceQPktdtcdl3/vktvUJU8B5ES7lG1wkglSWXYKHjcA==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "sha512": "FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==", + "type": "package", + "path": "system.net.websockets.websocketprotocol/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll", + "lib/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll", + "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll", + "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512", + "system.net.websockets.websocketprotocol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "TqRGJ6R6S9VpsXm2GpRy87TFXMxVqtYMrZtQFZHNJadQ1njAlpp0F5PfsWH04UNZWeY9X1jK+Kr8faJREA1kfg==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "13ihEbKKWpJYwZpo1kcDv2kW8eCK9twslQXpuqW/ulpHFhB2vuxbCuQgllNLjiSuL3uEKSPz34wC0xRb5hY9OA==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.4.1": { + "sha512": "cYyPyIPBNlROATH5CjGQpvFhPdCrkDyVpChahZmpZlpXE4wQS+f6fUl+A/16U8/IShAiS3ofjX6bHuwRyHHWbQ==", + "type": "package", + "path": "system.reflection.metadata/1.4.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.4.1.nupkg.sha512", + "system.reflection.metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "lJGsxoZ+9PXn+Qdjc5Nk6yJVqLk8lRR3k3uEGja59sC1EbkzMbVMqPFNOQmYxaO5Fbid8Bm29o+rB/PdDCDXNw==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/4.7.0": { + "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "type": "package", + "path": "system.runtime.caching/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard2.0/System.Runtime.Caching.dll", + "ref/netstandard2.0/System.Runtime.Caching.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", + "system.runtime.caching.4.7.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "yhyMfLA28dYAFahmTy+lM6rDrrca84R76fk8J0GH9gdtcZe6NuA7bWhLOCcWOEi74jZOIjtjtRPzkdSv6KlATQ==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "djZnX43T2YuLt526S/mq2pBiHQS8WfAUAg/nOt+oz6MkTo6HKAANCytQEFXmv6jyrumb8ohYe3ht2sEUMi9LMQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "Jw3ielASDELVDT+VPsL6PGRHp50mytxUnVp7UlKZWS3l5cxWAhZIWfTiunuqyy90WKcEIehjHkfpRqyzO5eFmw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "sPdBt8ZxEzxDYhPnWz+eegZMhyYBzea/Oi7AuuqwtyCATswlsMdA3tiw/U/rMP+MvDa4DIhI1inEwEDYArfuJg==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.AccessControl/4.7.0": { + "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "type": "package", + "path": "system.security.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.7.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "DG7gpkRnHPaofkkKx5jWKqI9gjcHhDOt3BeCMKRTImnngZvP1jlgYMXYXxY+S8XWyOoyU8KF5Tv0ZrG9FYREvQ==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "xFN3KCCvtAdfdy+AngirK0Tku73Ne9i5NmV995PGnHOn6OvNx5j/f2Aa6FuEoZT1YshMjOlWfEKI8WAjnaxtRg==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Permissions/4.7.0": { + "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "type": "package", + "path": "system.security.permissions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.7.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.7.0": { + "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "type": "package", + "path": "system.text.encoding.codepages/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.4.7.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "iwhUBeB6oQ10iH2CRQeLNTHyQX9lxiMNZuC9nMY0IhiQlRaDtcwTVaGWSTShduj0V8o07kOgI53QayLnHt6i0A==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/6.0.0": { + "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "type": "package", + "path": "system.text.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "build/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/netcoreapp3.1/System.Text.Json.dll", + "lib/netcoreapp3.1/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.6.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "6hQ2W40ImHD8OSBL8zWYSwdae6iryMpeEThocf8u1m/0LFZUmnRtKyXZtXNNqwkbha/mDcjS+GbbCk+whXz0sA==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Channels/4.5.0": { + "sha512": "MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "type": "package", + "path": "system.threading.channels/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/System.Threading.Channels.dll", + "lib/netcoreapp2.1/System.Threading.Channels.xml", + "lib/netstandard1.3/System.Threading.Channels.dll", + "lib/netstandard1.3/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "system.threading.channels.4.5.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "sha512": "aUDiT8Qv4rbc1YwvWhBM76PzeoHLQLook/5PiXhFsBur7cniIsd2K0MhGDZ1M1IN9j7y6HdC7lnk+TS37lJEZA==", + "type": "package", + "path": "system.threading.tasks.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "sha512": "3h7hlVK5u8nzCUQFFYj6yw6NKYgnrUySo0oaXN21LyrOQpr052u5rvnSxUGuIKO7M9jRv1FaLZOGVI/+7olf9A==", + "type": "package", + "path": "system.threading.tasks.parallel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/netcore50/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.parallel.4.3.0.nupkg.sha512", + "system.threading.tasks.parallel.nuspec" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "IKcG64NTLVkZVHawu61/TldF/J/Vb7phwiECTLwB30N7NoUkXs1BquSuCJHyHCLUC0vEmEU0vqnQZY7T21Gc1Q==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Windows.Extensions/4.7.0": { + "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "type": "package", + "path": "system.windows.extensions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.4.7.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "EyRjbRA4pD4dG4O4XEzITKvzLRpauU4LhvS1UhiWUlvk5bUcfhFDMw1obsrvfpfD3zvqJ6PXm6Y4r2tUFf1yCQ==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "MOrSyJ8eyHXyB4xMFN7AIZ5/B9ODYQxmspxxD2r5Zd8Os6hUAmVRUgl6s6Qml/j4nJGcsOHgonpDYmEAeuADMw==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "sha512": "YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "type": "package", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.xml", + "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512", + "webapiclient.extensions.dependencyinjection.nuspec" + ] + }, + "WebApiClient.JIT/1.0.3": { + "sha512": "mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "type": "package", + "path": "webapiclient.jit/1.0.3", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/WebApiClient.Analyzers.deps.json", + "analyzers/dotnet/cs/WebApiClient.Analyzers.dll", + "lib/net45/WebApiClient.JIT.dll", + "lib/net45/WebApiClient.JIT.xml", + "lib/netcoreapp2.1/WebApiClient.JIT.dll", + "lib/netcoreapp2.1/WebApiClient.JIT.xml", + "lib/netstandard1.3/WebApiClient.JIT.dll", + "lib/netstandard1.3/WebApiClient.JIT.xml", + "lib/netstandard2.0/WebApiClient.JIT.dll", + "lib/netstandard2.0/WebApiClient.JIT.xml", + "tools/install.ps1", + "tools/uninstall.ps1", + "webapiclient.jit.1.0.3.nupkg.sha512", + "webapiclient.jit.nuspec" + ] + }, + "Yitter.IdGenerator/1.0.12": { + "sha512": "hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "type": "package", + "path": "yitter.idgenerator/1.0.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Yitter.IdGenerator.dll", + "yitter.idgenerator.1.0.12.nupkg.sha512", + "yitter.idgenerator.nuspec" + ] + }, + "zzz.Common/1.0.0": { + "type": "project", + "path": "../zzz.Common/zzz.Common.csproj", + "msbuildProject": "../zzz.Common/zzz.Common.csproj" + }, + "zzz.Model/1.0.0": { + "type": "project", + "path": "../zzz.model/zzz.Model.csproj", + "msbuildProject": "../zzz.model/zzz.Model.csproj" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "path": "../zzz.Repository/zzz.Repository.csproj", + "msbuildProject": "../zzz.Repository/zzz.Repository.csproj" + }, + "zzz.Services/1.0.0": { + "type": "project", + "path": "../zzz.Services/zzz.Services.csproj", + "msbuildProject": "../zzz.Services/zzz.Services.csproj" + }, + "zzz.Tasks/1.0.0": { + "type": "project", + "path": "../zzz.Tasks/zzz.Tasks.csproj", + "msbuildProject": "../zzz.Tasks/zzz.Tasks.csproj" + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "Autofac >= 6.3.0", + "Autofac.Extras.DynamicProxy >= 6.0.1", + "Microsoft.AspNetCore.Http >= 2.2.2", + "Microsoft.AspNetCore.Http.Abstractions >= 2.2.0", + "Microsoft.AspNetCore.SignalR >= 1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson >= 6.0.5", + "Microsoft.Extensions.Logging >= 6.0.0", + "Microsoft.Extensions.Logging.EventLog >= 6.0.0", + "Microsoft.Extensions.Logging.Log4Net.AspNetCore >= 6.1.0", + "MiniProfiler.AspNetCore.Mvc >= 4.2.22", + "Swashbuckle.AspNetCore >= 6.2.3", + "Swashbuckle.AspNetCore.Filters >= 7.0.2", + "Swashbuckle.AspNetCore.Newtonsoft >= 6.3.1", + "log4net >= 2.0.14", + "zzz.Services >= 1.0.0", + "zzz.Tasks >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\Administrator\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Extensions\\zzz.Extensions.csproj", + "projectName": "zzz.Extensions", + "projectPath": "F:\\yuhong_plc\\zzz.Extensions\\zzz.Extensions.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Extensions\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj" + }, + "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[6.3.0, )" + }, + "Autofac.Extras.DynamicProxy": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.AspNetCore.Http": { + "target": "Package", + "version": "[2.2.2, )" + }, + "Microsoft.AspNetCore.Http.Abstractions": { + "target": "Package", + "version": "[2.2.0, )" + }, + "Microsoft.AspNetCore.SignalR": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson": { + "target": "Package", + "version": "[6.0.5, )" + }, + "Microsoft.Extensions.Logging": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Logging.EventLog": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore": { + "target": "Package", + "version": "[6.1.0, )" + }, + "MiniProfiler.AspNetCore.Mvc": { + "target": "Package", + "version": "[4.2.22, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.2.3, )" + }, + "Swashbuckle.AspNetCore.Filters": { + "target": "Package", + "version": "[7.0.2, )" + }, + "Swashbuckle.AspNetCore.Newtonsoft": { + "target": "Package", + "version": "[6.3.1, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Extensions/obj/project.nuget.cache b/yuhong_plc/zzz.Extensions/obj/project.nuget.cache new file mode 100644 index 0000000..33e35c2 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/project.nuget.cache @@ -0,0 +1,218 @@ +{ + "version": 2, + "dgSpecHash": "OM8MCExhp/TWLSngOEfNPjgdNnDAJ97GsTmrAg8MG4p4JjnUQtlm5vXT/c2j5OVtXLEmJQGt4eKHeXzBHkD/6g==", + "success": true, + "projectFilePath": "F:\\yuhong_plc\\zzz.Extensions\\zzz.Extensions.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Administrator\\.nuget\\packages\\autofac\\6.3.0\\autofac.6.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\autofac.extras.dynamicproxy\\6.0.1\\autofac.extras.dynamicproxy.6.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\automapper\\11.0.1\\automapper.11.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\11.0.0\\automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\bouncycastle.netcore\\1.8.5\\bouncycastle.netcore.1.8.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\castle.core\\4.4.0\\castle.core.4.4.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\google.protobuf\\3.19.4\\google.protobuf.3.19.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\hslcommunication\\7.0.1\\hslcommunication.7.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4\\1.2.6\\k4os.compression.lz4.1.2.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4.streams\\1.2.6\\k4os.compression.lz4.streams.1.2.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.hash.xxhash\\1.0.6\\k4os.hash.xxhash.1.0.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\log4net\\2.0.14\\log4net.2.0.14.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.connections.abstractions\\6.0.5\\microsoft.aspnetcore.connections.abstractions.6.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.2\\microsoft.aspnetcore.http.2.2.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http.connections\\1.1.0\\microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http.connections.common\\1.1.0\\microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\6.0.0-rc.1.21452.15\\microsoft.aspnetcore.jsonpatch.6.0.0-rc.1.21452.15.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.mvc.newtonsoftjson\\6.0.0-rc.1.21452.15\\microsoft.aspnetcore.mvc.newtonsoftjson.6.0.0-rc.1.21452.15.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr\\1.1.0\\microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.common\\6.0.5\\microsoft.aspnetcore.signalr.common.6.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.core\\1.1.0\\microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.protocols.json\\1.1.0\\microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.protocols.newtonsoftjson\\6.0.5\\microsoft.aspnetcore.signalr.protocols.newtonsoftjson.6.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.websockets\\2.2.0\\microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlclient\\2.1.1\\microsoft.data.sqlclient.2.1.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.1.1\\microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlite\\5.0.5\\microsoft.data.sqlite.5.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlite.core\\5.0.5\\microsoft.data.sqlite.core.5.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration\\6.0.1\\microsoft.extensions.configuration.6.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0\\microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.binder\\6.0.0\\microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\6.0.0\\microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.json\\6.0.0\\microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencymodel\\3.1.6\\microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.features\\6.0.5\\microsoft.extensions.features.6.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\6.0.0\\microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\6.0.0\\microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\6.0.0\\microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\6.0.0\\microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.eventlog\\6.0.0\\microsoft.extensions.logging.eventlog.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.log4net.aspnetcore\\6.1.0\\microsoft.extensions.logging.log4net.aspnetcore.6.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identity.client\\4.21.1\\microsoft.identity.client.4.21.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.8.0\\microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.logging\\6.8.0\\microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.8.0\\microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.8.0\\microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.8.0\\microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\miniprofiler.aspnetcore\\4.2.22\\miniprofiler.aspnetcore.4.2.22.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\miniprofiler.aspnetcore.mvc\\4.2.22\\miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\miniprofiler.shared\\4.2.22\\miniprofiler.shared.4.2.22.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\mysql.data\\8.0.29\\mysql.data.8.0.29.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\npgsql\\5.0.7\\npgsql.5.0.7.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\oracle.manageddataaccess.core\\3.21.1\\oracle.manageddataaccess.core.3.21.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\quartz\\3.4.0\\quartz.3.4.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\scrutor\\3.3.0\\scrutor.3.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\serilog\\2.11.0\\serilog.2.11.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\serilog.sinks.file\\5.0.0\\serilog.sinks.file.5.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.0.4\\sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.core\\2.0.4\\sqlitepclraw.core.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.0.4\\sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.provider.dynamic_cdecl\\2.0.4\\sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore\\5.0.8\\sqlsugarcore.5.0.8.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore.dm\\1.0.0\\sqlsugarcore.dm.1.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore.kdbndp\\1.0.0\\sqlsugarcore.kdbndp.1.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore\\6.2.3\\swashbuckle.aspnetcore.6.2.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore.filters\\7.0.2\\swashbuckle.aspnetcore.filters.7.0.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore.filters.abstractions\\7.0.2\\swashbuckle.aspnetcore.filters.abstractions.7.0.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore.newtonsoft\\6.3.1\\swashbuckle.aspnetcore.newtonsoft.6.3.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.3.1\\swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.3.1\\swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.2.3\\swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.collections.immutable\\1.3.0\\system.collections.immutable.1.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.performancecounter\\4.7.0\\system.diagnostics.performancecounter.4.7.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.stacktrace\\4.3.0\\system.diagnostics.stacktrace.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.directoryservices\\4.7.0\\system.directoryservices.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.directoryservices.protocols\\4.7.0\\system.directoryservices.protocols.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.8.0\\system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem.accesscontrol\\4.7.0\\system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.websockets.websocketprotocol\\4.5.1\\system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.metadata\\1.4.1\\system.reflection.metadata.1.4.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.json\\6.0.0\\system.text.json.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.channels\\4.5.0\\system.threading.channels.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks.parallel\\4.3.0\\system.threading.tasks.parallel.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\webapiclient.extensions.dependencyinjection\\2.0.3\\webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\webapiclient.jit\\1.0.3\\webapiclient.jit.1.0.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\yitter.idgenerator\\1.0.12\\yitter.idgenerator.1.0.12.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Extensions/obj/zzz.Extensions.csproj.nuget.dgspec.json b/yuhong_plc/zzz.Extensions/obj/zzz.Extensions.csproj.nuget.dgspec.json new file mode 100644 index 0000000..a6842f9 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/zzz.Extensions.csproj.nuget.dgspec.json @@ -0,0 +1,506 @@ +{ + "format": 1, + "restore": { + "F:\\yuhong_plc\\zzz.Extensions\\zzz.Extensions.csproj": {} + }, + "projects": { + "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj", + "projectName": "zzz.Common", + "projectPath": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Common\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "Microsoft.AspNetCore.SignalR.Core": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.Extensions.Configuration": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.Extensions.Configuration.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Binder": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Json": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Hosting.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.11.0, )" + }, + "Serilog.Sinks.File": { + "target": "Package", + "version": "[5.0.0, )" + }, + "WebApiClient.Extensions.DependencyInjection": { + "target": "Package", + "version": "[2.0.3, )" + }, + "Yitter.IdGenerator": { + "target": "Package", + "version": "[1.0.12, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.Extensions\\zzz.Extensions.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Extensions\\zzz.Extensions.csproj", + "projectName": "zzz.Extensions", + "projectPath": "F:\\yuhong_plc\\zzz.Extensions\\zzz.Extensions.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Extensions\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj" + }, + "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[6.3.0, )" + }, + "Autofac.Extras.DynamicProxy": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.AspNetCore.Http": { + "target": "Package", + "version": "[2.2.2, )" + }, + "Microsoft.AspNetCore.Http.Abstractions": { + "target": "Package", + "version": "[2.2.0, )" + }, + "Microsoft.AspNetCore.SignalR": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson": { + "target": "Package", + "version": "[6.0.5, )" + }, + "Microsoft.Extensions.Logging": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Logging.EventLog": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Logging.Log4Net.AspNetCore": { + "target": "Package", + "version": "[6.1.0, )" + }, + "MiniProfiler.AspNetCore.Mvc": { + "target": "Package", + "version": "[4.2.22, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.2.3, )" + }, + "Swashbuckle.AspNetCore.Filters": { + "target": "Package", + "version": "[7.0.2, )" + }, + "Swashbuckle.AspNetCore.Newtonsoft": { + "target": "Package", + "version": "[6.3.1, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj", + "projectName": "zzz.Model", + "projectPath": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.model\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.0.0, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.0.8, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj", + "projectName": "zzz.Repository", + "projectPath": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Repository\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj" + }, + "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj", + "projectName": "zzz.Services", + "projectPath": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Services\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "HslCommunication": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj", + "projectName": "zzz.Tasks", + "projectPath": "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Tasks\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Quartz": { + "target": "Package", + "version": "[3.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Extensions/obj/zzz.Extensions.csproj.nuget.g.props b/yuhong_plc/zzz.Extensions/obj/zzz.Extensions.csproj.nuget.g.props new file mode 100644 index 0000000..d1bf36e --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/zzz.Extensions.csproj.nuget.g.props @@ -0,0 +1,24 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Administrator\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.2.1 + + + + + + + + + + + C:\Users\Administrator\.nuget\packages\webapiclient.jit\1.0.3 + C:\Users\Administrator\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Extensions/obj/zzz.Extensions.csproj.nuget.g.targets b/yuhong_plc/zzz.Extensions/obj/zzz.Extensions.csproj.nuget.g.targets new file mode 100644 index 0000000..a03b337 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/obj/zzz.Extensions.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Extensions/zzz.Extensions.csproj b/yuhong_plc/zzz.Extensions/zzz.Extensions.csproj new file mode 100644 index 0000000..48b8f49 --- /dev/null +++ b/yuhong_plc/zzz.Extensions/zzz.Extensions.csproj @@ -0,0 +1,30 @@ + + + + net6.0 + enable + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Repository/Base/BaseRepository.cs b/yuhong_plc/zzz.Repository/Base/BaseRepository.cs new file mode 100644 index 0000000..bb930fc --- /dev/null +++ b/yuhong_plc/zzz.Repository/Base/BaseRepository.cs @@ -0,0 +1,543 @@ +using zzz.Model; +using zzz.Repository.UnitOfWork; +using Microsoft.Extensions.DependencyInjection; +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Data; +using System.Linq; +using System.Linq.Expressions; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Repository +{ + /// + /// + /// + /// + public class BaseRepository : IBaseRepository where TEntity : class, new() + { + /// + /// 服务提供器 + /// + private readonly IServiceProvider _serviceProvider; + private readonly IUnitOfWork _unitOfWork; + private readonly SqlSugarScope _dbBase; + private ISqlSugarClient _db { get { return _dbBase; } } + public BaseRepository(IUnitOfWork unitOfWork, IServiceProvider serviceProvider) + { + _unitOfWork = unitOfWork; + _dbBase = unitOfWork.GetDbClient(); + _serviceProvider = serviceProvider; + Ado = unitOfWork.GetDbClient().Ado; + } + public ISqlSugarClient Db => _db; + + /// + /// 实体集合 + /// + public ISugarQueryable Entities => _db.Queryable(); + + /// + /// 原生 Ado 对象 + /// + public IAdo Ado { get; } + + /// + /// 切换仓储 + /// + /// 实体类型 + /// 仓储 + public IBaseRepository ChangeRepository() where NewEntity : class, new() + { + return _serviceProvider.GetService>(); + } + + /// + /// 获取总数 + /// + /// + /// + public async Task CountAsync(Expression> whereExpression) + { + return await Entities.CountAsync(whereExpression); + } + + /// + /// 检查是否存在 + /// + /// + /// + public async Task AnyAsync(Expression> whereExpression) + { + return await Entities.AnyAsync(whereExpression); + } + + /// + /// 获取一个实体 + /// + /// + /// + public async Task SingleAsync(Expression> whereExpression) + { + return await Entities.SingleAsync(whereExpression); + } + + /// + /// 获取一个实体 + /// + /// + /// + public async Task SingleByIdAsync(object objId) + { + return await Entities.In(objId).SingleAsync(); + } + + /// + /// 获取一个实体 + /// + /// + /// + public async Task FirstOrDefaultAsync(Expression> whereExpression) + { + return await Entities.FirstAsync(whereExpression); + } + + /// + /// 获取一个实体 主键 + /// + /// + /// + public async Task FirstOrDefaultByIdAsync(object id) + { + return await Entities.In(id).FirstAsync(); + } + + /// + /// 检查存在 + /// + /// + /// + public async Task IsExistsByIdAsync(object id) + { + return await Entities.In(id).AnyAsync(); + } + + /// + /// 检查存在 + /// + /// + /// + public async Task IsExistsAsync(Expression> whereExpression) + { + return await Entities.AnyAsync(whereExpression); + } + + + /// + /// 新增一条记录 + /// + /// + /// + public async Task InsertAsync(TEntity entity) + { + return await _db.Insertable(entity).ExecuteCommandAsync(); + } + + /// + /// 新增多条记录 + /// + /// + /// + public async Task InsertAsync(params TEntity[] entities) + { + return await _db.Insertable(entities).ExecuteCommandAsync(); + } + + /// + /// 新增多条记录 + /// + /// + /// + public async Task InsertAsync(IEnumerable entities) + { + if (entities != null && entities.Any()) + { + return await _db.Insertable(entities.ToArray()).ExecuteCommandAsync(); + } + return await Task.FromResult(0); + } + + /// + /// 新增一条记录返回自增Id + /// + /// + /// + public async Task InsertReturnIdentityAsync(TEntity entity) + { + return await _db.Insertable(entity).ExecuteReturnBigIdentityAsync(); + } + + /// + /// 更新一条记录 + /// + /// + /// + public async Task UpdateAsync(TEntity entity) + { + return await _db.Updateable(entity).ExecuteCommandHasChangeAsync(); + } + + /// + /// 无主键更新一条记录 + /// + /// 更新的实体 + /// 根据那些字段更新 + /// + public async Task UpdateNoPrimaryKeyAsync(TEntity entity, Expression> columns) + { + return await _db.Updateable(entity).WhereColumns(columns).ExecuteCommandHasChangeAsync(); + } + + /// + /// 无主键更新多条记录 + /// + /// 更新的实体 + /// 根据那些字段更新 + /// + public async Task UpdateNoPrimaryKeyAsync(List entitys, Expression> columns) + { + return await _db.Updateable(entitys).WhereColumns(columns).ExecuteCommandHasChangeAsync(); + } + + /// + /// 更新多条记录 + /// + /// + /// + public async Task UpdateAsync(params TEntity[] entities) + { + return await _db.Updateable(entities).ExecuteCommandHasChangeAsync(); + } + + /// + /// 更新多条记录 + /// + /// + /// + public async Task UpdateAsync(IEnumerable entities) + { + return await _db.Updateable(entities.ToArray()).ExecuteCommandHasChangeAsync(); + } + + /// + /// 删除一条记录 + /// + /// + /// + public async Task DeleteAsync(TEntity entity) + { + return await _db.Deleteable(entity).ExecuteCommandHasChangeAsync(); + } + + /// + /// 删除一条记录 + /// + /// + /// + public async Task DeleteAsync(object key) + { + return await _db.Deleteable().In(key).ExecuteCommandHasChangeAsync(); + } + + /// + /// 删除多条记录 + /// + /// + /// + public async Task DeleteAsync(params object[] keys) + { + return await _db.Deleteable().In(keys).ExecuteCommandHasChangeAsync(); + } + + /// + /// 自定义条件删除记录 + /// + /// + /// + public async Task DeleteAsync(Expression> whereExpression) + { + return await _db.Deleteable().Where(whereExpression).ExecuteCommandHasChangeAsync(); + } + + + + + + + /// + /// 通过主键查询 + /// + /// + /// + public async Task> QueryByIDsAsync(object[] lstIds) + { + return await Entities.In(lstIds).ToListAsync(); + } + + /// + /// 获取列表 + /// + /// + public async Task> QueryAsync() + { + return await Entities.ToListAsync(); + } + + /// + /// 获取列表 + /// + /// + /// + public async Task> QueryAsync(Expression> whereExpression) + { + return await Entities.Where(whereExpression).ToListAsync(); + } + + /// + /// 获取列表 带排序 + /// + /// + /// + /// + public async Task> QueryAsync(Expression> whereExpression, string orderByFields) + { + return await Entities.WhereIF(whereExpression != null, whereExpression).OrderByIF(orderByFields != null, orderByFields).ToListAsync(); + } + + /// + /// 获取列表 带排序 + /// + /// + /// + /// + /// + public async Task> QueryAsync(Expression> whereExpression, Expression> orderByExpression = null, OrderByType orderByType = OrderByType.Asc) + { + return await Entities.OrderByIF(orderByExpression != null, orderByExpression, orderByType).Where(whereExpression).ToListAsync(); + } + + /// + /// 查询数据列表 带条件 + /// + /// 条件 + /// 数据列表 + public async Task> QueryAsync(string where) + { + return await Entities.WhereIF(!string.IsNullOrEmpty(where), where).ToListAsync(); + } + + /// + /// 查询数据列表 带条件 带排序 + /// + /// + /// + /// + public async Task> QueryAsync(string where, string orderByFields) + { + return await Entities.OrderByIF(!string.IsNullOrEmpty(orderByFields), orderByFields).WhereIF(!string.IsNullOrEmpty(where), where).ToListAsync(); + } + + /// + /// 查询数据列表 返回指定列 + /// + /// + /// + /// + public async Task> QueryAsync(Expression> expression) + { + return await Entities.Select(expression).ToListAsync(); + } + + /// + /// 查询数据列表 返回指定列 带条件 带排序 + /// + /// + /// + /// + /// + /// + public async Task> QueryAsync(Expression> expression, Expression> whereExpression, string orderByFields) + { + return await Entities.OrderByIF(!string.IsNullOrEmpty(orderByFields), orderByFields).WhereIF(whereExpression != null, whereExpression).Select(expression).ToListAsync(); + } + + /// + /// 根据sql语句查询 + /// + /// 完整的sql语句 + /// 参数 + /// 泛型集合 + public async Task> QuerySqlAsync(string sql, SugarParameter[] parameters = null) + { + return await _db.Ado.SqlQueryAsync(sql, parameters); + } + + /// + /// 分页查询数据列表 + /// + /// + /// + /// + /// + /// + public async Task> QueryAsync( + Expression> whereExpression, + int pageIndex, + int pageSize, + string orderByFields) + { + return await Entities.OrderByIF(!string.IsNullOrEmpty(orderByFields), orderByFields) + .WhereIF(whereExpression != null, whereExpression).ToPageListAsync(pageIndex, pageSize); + } + + /// + /// 分页查询数据列表 + /// + /// + /// + /// + /// + /// + public async Task> QueryAsync( + string where, + int pageIndex, + int pageSize, + string orderByFields) + { + return await Entities.OrderByIF(!string.IsNullOrEmpty(orderByFields), orderByFields) + .WhereIF(!string.IsNullOrEmpty(where), where).ToPageListAsync(pageIndex, pageSize); + } + + /// + /// 分页查询数据列表 + /// + /// + /// + /// + /// + /// + public async Task> QueryPageAsync( + Expression> whereExpression, + int pageIndex = 1, + int pageSize = 20, + string orderByFields = null + ) + { + + RefAsync totalCount = 0; + var list = await Entities + .OrderByIF(!string.IsNullOrEmpty(orderByFields), orderByFields) + .WhereIF(whereExpression != null, whereExpression) + .ToPageListAsync(pageIndex, pageSize, totalCount); + + return new PageModel(pageIndex, totalCount, pageSize, list); + } + + /// + ///查询-多表查询 + /// + /// 实体1 + /// 实体2 + /// 实体3 + /// 返回对象 + /// 关联表达式 (join1,join2) => new object[] {JoinType.Left,join1.UserNo==join2.UserNo} + /// 返回表达式 (s1, s2) => new { Id =s1.UserNo, Id1 = s2.UserNo} + /// 查询表达式 (w1, w2) =>w1.UserNo == "") + /// + public async Task> QueryMuch( + Expression> joinExpression, + Expression> selectExpression, + Expression> whereLambda = null) where T : class, new() + { + if (whereLambda == null) + { + return await _db.Queryable(joinExpression).Select(selectExpression).ToListAsync(); + } + return await _db.Queryable(joinExpression).Where(whereLambda).Select(selectExpression).ToListAsync(); + } + + /// + /// 两表联合查询-分页 + /// + /// 实体1 + /// 实体1 + /// 返回对象 + /// 关联表达式 + /// 返回表达式 + /// 查询表达式 + /// 页码 + /// 页大小 + /// 排序字段 + /// + public async Task> QueryTabsPage( + Expression> joinExpression, + Expression> selectExpression, + Expression> whereExpression, + int pageIndex = 1, + int pageSize = 20, + string orderByFields = null) + { + + RefAsync totalCount = 0; + var list = await _db.Queryable(joinExpression) + .Select(selectExpression) + .OrderByIF(!string.IsNullOrEmpty(orderByFields), orderByFields) + .WhereIF(whereExpression != null, whereExpression) + .ToPageListAsync(pageIndex, pageSize, totalCount); + return new PageModel(pageIndex, totalCount, pageSize, list); + } + + /// + /// 两表联合查询-分页-分组 + /// + /// 实体1 + /// 实体1 + /// 返回对象 + /// 关联表达式 + /// 返回表达式 + /// 查询表达式 + /// group表达式 + /// 页码 + /// 页大小 + /// 排序字段 + /// + public async Task> QueryTabsPage( + Expression> joinExpression, + Expression> selectExpression, + Expression> whereExpression, + Expression> groupExpression, + int pageIndex = 1, + int pageSize = 20, + string orderByFields = null) + { + RefAsync totalCount = 0; + var list = await _db.Queryable(joinExpression).GroupBy(groupExpression) + .Select(selectExpression) + .OrderByIF(!string.IsNullOrEmpty(orderByFields), orderByFields) + .WhereIF(whereExpression != null, whereExpression) + .ToPageListAsync(pageIndex, pageSize, totalCount); + return new PageModel(pageIndex, totalCount, pageSize, list); + } + + + + + + + + + + } +} diff --git a/yuhong_plc/zzz.Repository/Base/IBaseRepository.cs b/yuhong_plc/zzz.Repository/Base/IBaseRepository.cs new file mode 100644 index 0000000..a364267 --- /dev/null +++ b/yuhong_plc/zzz.Repository/Base/IBaseRepository.cs @@ -0,0 +1,370 @@ +using zzz.Model; +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Data; +using System.Linq; +using System.Linq.Expressions; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Repository +{ + public interface IBaseRepository where TEntity : class + { + /// + /// SqlsugarClient实体 + /// + ISqlSugarClient Db { get; } + + /// + /// 实体集合 + /// + ISugarQueryable Entities { get; } + + /// + /// 原生 Ado 对象 + /// + IAdo Ado { get; } + + IBaseRepository ChangeRepository() where NewEntity : class, new(); + + /// + /// 获取总数 + /// + /// + /// + Task CountAsync(Expression> whereExpression); + + /// + /// 检查是否存在 + /// + /// + /// + Task AnyAsync(Expression> whereExpression); + + /// + /// 获取一个实体 + /// + /// + /// + Task SingleAsync(Expression> whereExpression); + + /// + /// 获取一个实体 + /// + /// + /// + Task SingleByIdAsync(object objId); + + /// + /// 获取一个实体 + /// + /// + /// + Task FirstOrDefaultAsync(Expression> whereExpression); + + /// + /// 获取一个实体 主键 + /// + /// + /// + Task FirstOrDefaultByIdAsync(object id); + + /// + /// 检查存在 + /// + /// + /// + Task IsExistsByIdAsync(object id); + + /// + /// 检查存在 + /// + /// + /// + Task IsExistsAsync(Expression> whereExpression); + + + /// + /// 新增一条记录 + /// + /// + /// + Task InsertAsync(TEntity entity); + + /// + /// 新增多条记录 + /// + /// + /// + Task InsertAsync(params TEntity[] entities); + + /// + /// 新增多条记录 + /// + /// + /// + Task InsertAsync(IEnumerable entities); + + /// + /// 新增一条记录返回自增Id + /// + /// + /// + Task InsertReturnIdentityAsync(TEntity entity); + + /// + /// 更新一条记录 + /// + /// + /// + Task UpdateAsync(TEntity entity); + + /// + /// 无主键更新一条记录 + /// + /// 更新的实体 + /// 根据那些字段更新 + /// + Task UpdateNoPrimaryKeyAsync(TEntity entity, Expression> columns); + + /// + /// 无主键更新多条记录 + /// + /// 更新的实体 + /// 根据那些字段更新 + /// + Task UpdateNoPrimaryKeyAsync(List entitys, Expression> columns); + + /// + /// 更新多条记录 + /// + /// + /// + Task UpdateAsync(params TEntity[] entities); + + /// + /// 更新多条记录 + /// + /// + /// + Task UpdateAsync(IEnumerable entities); + + /// + /// 删除一条记录 + /// + /// + /// + Task DeleteAsync(TEntity entity); + + /// + /// 删除一条记录 + /// + /// + /// + Task DeleteAsync(object key); + + /// + /// 删除多条记录 + /// + /// + /// + Task DeleteAsync(params object[] keys); + + /// + /// 自定义条件删除记录 + /// + /// + /// + Task DeleteAsync(Expression> whereExpression); + + + + + + + /// + /// 通过主键查询 + /// + /// + /// + Task> QueryByIDsAsync(object[] lstIds); + + /// + /// 获取列表 + /// + /// + Task> QueryAsync(); + + /// + /// 获取列表 + /// + /// + /// + Task> QueryAsync(Expression> whereExpression); + + /// + /// 获取列表 带排序 + /// + /// + /// + /// + Task> QueryAsync(Expression> whereExpression, string orderByFields); + + /// + /// 获取列表 带排序 + /// + /// + /// + /// + /// + Task> QueryAsync(Expression> whereExpression, Expression> orderByExpression = null, OrderByType orderByType = OrderByType.Asc); + + /// + /// 查询数据列表 带条件 + /// + /// 条件 + /// 数据列表 + Task> QueryAsync(string where); + + /// + /// 查询数据列表 带条件 带排序 + /// + /// + /// + /// + Task> QueryAsync(string where, string orderByFields); + + /// + /// 查询数据列表 返回指定列 + /// + /// + /// + /// + Task> QueryAsync(Expression> expression); + + /// + /// 查询数据列表 返回指定列 带条件 带排序 + /// + /// + /// + /// + /// + /// + Task> QueryAsync(Expression> expression, Expression> whereExpression, string orderByFields); + + /// + /// 根据sql语句查询 + /// + /// 完整的sql语句 + /// 参数 + /// 泛型集合 + Task> QuerySqlAsync(string sql, SugarParameter[] parameters = null); + + /// + /// 分页查询数据列表 + /// + /// + /// + /// + /// + /// + Task> QueryAsync( + Expression> whereExpression, + int pageIndex, + int pageSize, + string orderByFields); + + /// + /// 分页查询数据列表 + /// + /// + /// + /// + /// + /// + Task> QueryAsync( + string where, + int pageIndex, + int pageSize, + string orderByFields); + + /// + /// 分页查询数据列表 + /// + /// + /// + /// + /// + /// + Task> QueryPageAsync( + Expression> whereExpression, + int pageIndex = 1, + int pageSize = 20, + string orderByFields = null + ); + + /// + ///查询-多表查询 + /// + /// 实体1 + /// 实体2 + /// 实体3 + /// 返回对象 + /// 关联表达式 (join1,join2) => new object[] {JoinType.Left,join1.UserNo==join2.UserNo} + /// 返回表达式 (s1, s2) => new { Id =s1.UserNo, Id1 = s2.UserNo} + /// 查询表达式 (w1, w2) =>w1.UserNo == "") + /// + Task> QueryMuch( + Expression> joinExpression, + Expression> selectExpression, + Expression> whereLambda = null) where T : class, new(); + + /// + /// 两表联合查询-分页 + /// + /// 实体1 + /// 实体1 + /// 返回对象 + /// 关联表达式 + /// 返回表达式 + /// 查询表达式 + /// 页码 + /// 页大小 + /// 排序字段 + /// + Task> QueryTabsPage( + Expression> joinExpression, + Expression> selectExpression, + Expression> whereExpression, + int pageIndex = 1, + int pageSize = 20, + string orderByFields = null); + + + /// + /// 两表联合查询-分页-分组 + /// + /// 实体1 + /// 实体1 + /// 返回对象 + /// 关联表达式 + /// 返回表达式 + /// 查询表达式 + /// group表达式 + /// 页码 + /// 页大小 + /// 排序字段 + /// + Task> QueryTabsPage( + Expression> joinExpression, + Expression> selectExpression, + Expression> whereExpression, + Expression> groupExpression, + int pageIndex = 1, + int pageSize = 20, + string orderByFields = null); + + } +} diff --git a/yuhong_plc/zzz.Repository/UnitOfWork/IUnitOfWork.cs b/yuhong_plc/zzz.Repository/UnitOfWork/IUnitOfWork.cs new file mode 100644 index 0000000..5f2623d --- /dev/null +++ b/yuhong_plc/zzz.Repository/UnitOfWork/IUnitOfWork.cs @@ -0,0 +1,18 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Repository.UnitOfWork +{ + public interface IUnitOfWork + { + SqlSugarScope GetDbClient(); + + void BeginTran(); + void CommitTran(); + void RollbackTran(); + } +} diff --git a/yuhong_plc/zzz.Repository/UnitOfWork/UnitOfWork.cs b/yuhong_plc/zzz.Repository/UnitOfWork/UnitOfWork.cs new file mode 100644 index 0000000..4ed7763 --- /dev/null +++ b/yuhong_plc/zzz.Repository/UnitOfWork/UnitOfWork.cs @@ -0,0 +1,72 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Repository.UnitOfWork +{ + public class UnitOfWork: IUnitOfWork + { + private readonly ISqlSugarClient _sqlSugarClient; + + private int _tranCount { get; set; } + + public UnitOfWork(ISqlSugarClient sqlSugarClient) + { + _sqlSugarClient = sqlSugarClient; + _tranCount = 0; + } + + /// + /// 获取DB,保证唯一性 + /// + /// + public SqlSugarScope GetDbClient() + { + // 必须要as,后边会用到切换数据库操作 + // 因为注入的是 SqlSugarScope 所以这里可以转化成功 + return _sqlSugarClient as SqlSugarScope; + } + + public void BeginTran() + { + lock (this) + { + _tranCount++; + GetDbClient().BeginTran(); + } + } + + public void CommitTran() + { + lock (this) + { + _tranCount--; + if (_tranCount == 0) + { + try + { + GetDbClient().CommitTran(); + } + catch (Exception ex) + { + Console.WriteLine(ex.Message); + GetDbClient().RollbackTran(); + } + } + } + } + + public void RollbackTran() + { + lock (this) + { + _tranCount--; + GetDbClient().RollbackTran(); + } + } + + } +} diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Common.dll b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Common.dll new file mode 100644 index 0000000..993149d Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Common.dll differ diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Common.pdb b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Common.pdb new file mode 100644 index 0000000..c259918 Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Common.pdb differ diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Model.dll b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Model.dll new file mode 100644 index 0000000..0c5d675 Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Model.dll differ diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Model.pdb b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Model.pdb new file mode 100644 index 0000000..1747c5c Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Model.pdb differ diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Model.xml b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Model.xml new file mode 100644 index 0000000..5c555d6 --- /dev/null +++ b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Model.xml @@ -0,0 +1,495 @@ + + + + cjyx.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 角色表 + + + + + 角色名 + + + + + 描述 + + + + + 排序 + + + + + 用户表 + + + + + 账号 + + + + + 密码(默认MD5加密) + + + + + 昵称 + + + + + 姓名 + + + + + 头像 + + + + + 生日 + + + + + 性别-男_1、女_2 CD08 + + + + + 邮箱 + + + + + 手机 + + + + + 最后登录IP + + + + + 最后登录时间 + + + + + 状态-正常_0、停用_1、删除_2 + + + + + 部门 + + + + + 部门 最后个组织 + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Repository.deps.json b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Repository.deps.json new file mode 100644 index 0000000..fe164d4 --- /dev/null +++ b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Repository.deps.json @@ -0,0 +1,1810 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "cjyx.Repository/1.0.0": { + "dependencies": { + "cjyx.Common": "1.0.0", + "cjyx.Model": "1.0.0" + }, + "runtime": { + "cjyx.Repository.dll": {} + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "Newtonsoft.Json/11.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.2.21924" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "11.0.2", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.7.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.Pipelines/4.5.2": { + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "cjyx.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "cjyx.Common.dll": {} + } + }, + "cjyx.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "cjyx.Model.dll": {} + } + } + } + }, + "libraries": { + "cjyx.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "path": "newtonsoft.json/11.0.2", + "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==", + "path": "system.diagnostics.diagnosticsource/4.7.0", + "hashPath": "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "path": "system.io.pipelines/4.5.2", + "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "cjyx.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "cjyx.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Repository.dll b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Repository.dll new file mode 100644 index 0000000..1e7e24e Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Repository.dll differ diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Repository.pdb b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Repository.pdb new file mode 100644 index 0000000..596330b Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/cjyx.Repository.pdb differ diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/ref/cjyx.Repository.dll b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/ref/cjyx.Repository.dll new file mode 100644 index 0000000..55350c9 Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/ref/cjyx.Repository.dll differ diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/ref/zzz.Repository.dll b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/ref/zzz.Repository.dll new file mode 100644 index 0000000..399a685 Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/ref/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Common.dll b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Common.dll new file mode 100644 index 0000000..6d6f1c6 Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Common.pdb b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Common.pdb new file mode 100644 index 0000000..4c5a6d4 Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Model.dll b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Model.dll new file mode 100644 index 0000000..98ddff2 Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Model.pdb b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Model.pdb new file mode 100644 index 0000000..ee6d136 Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Model.xml b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Model.xml new file mode 100644 index 0000000..90ea772 --- /dev/null +++ b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Model.xml @@ -0,0 +1,1543 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 2线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Repository.deps.json b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Repository.deps.json new file mode 100644 index 0000000..e627047 --- /dev/null +++ b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Repository.deps.json @@ -0,0 +1,1810 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Repository/1.0.0": { + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "runtime": { + "zzz.Repository.dll": {} + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "Newtonsoft.Json/11.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.2.21924" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "11.0.2", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.7.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.Pipelines/4.5.2": { + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + } + } + }, + "libraries": { + "zzz.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "path": "newtonsoft.json/11.0.2", + "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==", + "path": "system.diagnostics.diagnosticsource/4.7.0", + "hashPath": "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "path": "system.io.pipelines/4.5.2", + "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Repository.dll b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Repository.dll new file mode 100644 index 0000000..991414c Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Repository.pdb b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Repository.pdb new file mode 100644 index 0000000..b9bcd32 Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Debug/net6.0/zzz.Repository.pdb differ diff --git a/yuhong_plc/zzz.Repository/bin/Release/net6.0/ref/zzz.Repository.dll b/yuhong_plc/zzz.Repository/bin/Release/net6.0/ref/zzz.Repository.dll new file mode 100644 index 0000000..3b8e890 Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Release/net6.0/ref/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Common.dll b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Common.dll new file mode 100644 index 0000000..64d9d86 Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Common.pdb b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Common.pdb new file mode 100644 index 0000000..72c1cc3 Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Model.dll b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Model.dll new file mode 100644 index 0000000..9fb27f0 Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Model.pdb b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Model.pdb new file mode 100644 index 0000000..2d4df51 Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Model.xml b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Model.xml new file mode 100644 index 0000000..90ea772 --- /dev/null +++ b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Model.xml @@ -0,0 +1,1543 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 2线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Repository.deps.json b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Repository.deps.json new file mode 100644 index 0000000..e627047 --- /dev/null +++ b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Repository.deps.json @@ -0,0 +1,1810 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Repository/1.0.0": { + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "runtime": { + "zzz.Repository.dll": {} + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "Newtonsoft.Json/11.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.2.21924" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "11.0.2", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.7.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.Pipelines/4.5.2": { + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + } + } + }, + "libraries": { + "zzz.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "path": "newtonsoft.json/11.0.2", + "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==", + "path": "system.diagnostics.diagnosticsource/4.7.0", + "hashPath": "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "path": "system.io.pipelines/4.5.2", + "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Repository.dll b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Repository.dll new file mode 100644 index 0000000..7d79fb4 Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Repository.pdb b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Repository.pdb new file mode 100644 index 0000000..b02178a Binary files /dev/null and b/yuhong_plc/zzz.Repository/bin/Release/net6.0/zzz.Repository.pdb differ diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.AssemblyInfo.cs b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.AssemblyInfo.cs new file mode 100644 index 0000000..8ed12cf --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("cjyx.Repository")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("cjyx.Repository")] +[assembly: System.Reflection.AssemblyTitleAttribute("cjyx.Repository")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.AssemblyInfoInputs.cache new file mode 100644 index 0000000..01a342d --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3eb4cd41e4827ddf4c9feb29cc739de02ff4d2f0 diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6d3d774 --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = cjyx.Repository +build_property.ProjectDir = D:\work\长江云息\Src\cjyx\cjyx.Repository\ diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.GlobalUsings.g.cs b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.assets.cache b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.assets.cache new file mode 100644 index 0000000..a24e848 Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.assets.cache differ diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.csproj.AssemblyReference.cache new file mode 100644 index 0000000..204fdef Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.csproj.CopyComplete b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..da610af --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +93d65429cf0b5cbe9d00b774b1901f6f67c300fc diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..aab4204 --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.csproj.FileListAbsolute.txt @@ -0,0 +1,18 @@ +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\cjyx.Repository.deps.json +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\cjyx.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\ref\cjyx.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\cjyx.Repository.pdb +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\cjyx.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\cjyx.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\cjyx.Common.pdb +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\cjyx.Model.pdb +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\cjyx.Repository.csproj.AssemblyReference.cache +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\cjyx.Repository.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\cjyx.Repository.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\cjyx.Repository.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\cjyx.Repository.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\cjyx.Repository.csproj.CopyComplete +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\cjyx.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\ref\cjyx.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\cjyx.Repository.pdb +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\cjyx.Model.xml diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.dll b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.dll new file mode 100644 index 0000000..1e7e24e Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.dll differ diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.pdb b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.pdb new file mode 100644 index 0000000..596330b Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/cjyx.Repository.pdb differ diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/ref/cjyx.Repository.dll b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/ref/cjyx.Repository.dll new file mode 100644 index 0000000..55350c9 Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/ref/cjyx.Repository.dll differ diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/ref/zzz.Repository.dll b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/ref/zzz.Repository.dll new file mode 100644 index 0000000..399a685 Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/ref/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/refint/zzz.Repository.dll b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/refint/zzz.Repository.dll new file mode 100644 index 0000000..399a685 Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/refint/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.AssemblyInfo.cs b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.AssemblyInfo.cs new file mode 100644 index 0000000..fb4e3a6 --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("zzz.Repository")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("zzz.Repository")] +[assembly: System.Reflection.AssemblyTitleAttribute("zzz.Repository")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fcb854a --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7af6893af97385720b8e71ab917ce9f02e06b49f diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..bce2bee --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = zzz.Repository +build_property.ProjectDir = F:\yuhong_plc\zzz.Repository\ diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.GlobalUsings.g.cs b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.assets.cache b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.assets.cache new file mode 100644 index 0000000..1681e65 Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.assets.cache differ diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.csproj.AssemblyReference.cache new file mode 100644 index 0000000..6296231 Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.csproj.CopyComplete b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..92b0d17 --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +544d588eedbd29ef2a8d3122018f70b3e978c63a diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..f199828 --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.csproj.FileListAbsolute.txt @@ -0,0 +1,107 @@ +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\zzz.Repository.deps.json +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\ref\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\Src\cjyx\cjyx.Repository\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\zzz.Repository.csproj.AssemblyReference.cache +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\zzz.Repository.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\zzz.Repository.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\zzz.Repository.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\zzz.Repository.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\zzz.Repository.csproj.CopyComplete +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\ref\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Repository\obj\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.csproj.AssemblyReference.cache +D:\work\长江云息\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\zzz.Repository\obj\Debug\net6.0\ref\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Repository.deps.json +D:\work\长江云息\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\zzz.Repository\bin\Debug\net6.0\ref\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Repository.deps.json +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\bin\Debug\net6.0\ref\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\obj\Debug\net6.0\ref\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Repository\obj\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Repository.deps.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\ref\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\ref\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Repository.deps.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Repository.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Repository.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Debug\net6.0\zzz.Model.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.GeneratedMSBuildEditorConfig.editorconfig +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.AssemblyInfoInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.AssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.csproj.CoreCompileInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.csproj.CopyComplete +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\refint\zzz.Repository.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\zzz.Repository.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Debug\net6.0\ref\zzz.Repository.dll +F:\yuhong_plc\zzz.Repository\bin\Debug\net6.0\zzz.Repository.deps.json +F:\yuhong_plc\zzz.Repository\bin\Debug\net6.0\zzz.Repository.dll +F:\yuhong_plc\zzz.Repository\bin\Debug\net6.0\zzz.Repository.pdb +F:\yuhong_plc\zzz.Repository\bin\Debug\net6.0\zzz.Common.dll +F:\yuhong_plc\zzz.Repository\bin\Debug\net6.0\zzz.Model.dll +F:\yuhong_plc\zzz.Repository\bin\Debug\net6.0\zzz.Common.pdb +F:\yuhong_plc\zzz.Repository\bin\Debug\net6.0\zzz.Model.pdb +F:\yuhong_plc\zzz.Repository\bin\Debug\net6.0\zzz.Model.xml +F:\yuhong_plc\zzz.Repository\obj\Debug\net6.0\zzz.Repository.csproj.AssemblyReference.cache +F:\yuhong_plc\zzz.Repository\obj\Debug\net6.0\zzz.Repository.GeneratedMSBuildEditorConfig.editorconfig +F:\yuhong_plc\zzz.Repository\obj\Debug\net6.0\zzz.Repository.AssemblyInfoInputs.cache +F:\yuhong_plc\zzz.Repository\obj\Debug\net6.0\zzz.Repository.AssemblyInfo.cs +F:\yuhong_plc\zzz.Repository\obj\Debug\net6.0\zzz.Repository.csproj.CoreCompileInputs.cache +F:\yuhong_plc\zzz.Repository\obj\Debug\net6.0\zzz.Repository.csproj.CopyComplete +F:\yuhong_plc\zzz.Repository\obj\Debug\net6.0\zzz.Repository.dll +F:\yuhong_plc\zzz.Repository\obj\Debug\net6.0\refint\zzz.Repository.dll +F:\yuhong_plc\zzz.Repository\obj\Debug\net6.0\zzz.Repository.pdb +F:\yuhong_plc\zzz.Repository\obj\Debug\net6.0\ref\zzz.Repository.dll diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.dll b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.dll new file mode 100644 index 0000000..991414c Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.pdb b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.pdb new file mode 100644 index 0000000..b9bcd32 Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Debug/net6.0/zzz.Repository.pdb differ diff --git a/yuhong_plc/zzz.Repository/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/yuhong_plc/zzz.Repository/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/yuhong_plc/zzz.Repository/obj/Release/net6.0/ref/zzz.Repository.dll b/yuhong_plc/zzz.Repository/obj/Release/net6.0/ref/zzz.Repository.dll new file mode 100644 index 0000000..3b8e890 Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Release/net6.0/ref/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Repository/obj/Release/net6.0/refint/zzz.Repository.dll b/yuhong_plc/zzz.Repository/obj/Release/net6.0/refint/zzz.Repository.dll new file mode 100644 index 0000000..3b8e890 Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Release/net6.0/refint/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.AssemblyInfo.cs b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.AssemblyInfo.cs new file mode 100644 index 0000000..703aaad --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("zzz.Repository")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("zzz.Repository")] +[assembly: System.Reflection.AssemblyTitleAttribute("zzz.Repository")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ba5c364 --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +1d0f08868cd72078308f9b5d52c30b6026f17f8a diff --git a/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..bce2bee --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = zzz.Repository +build_property.ProjectDir = F:\yuhong_plc\zzz.Repository\ diff --git a/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.GlobalUsings.g.cs b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.assets.cache b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.assets.cache new file mode 100644 index 0000000..e34d710 Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.assets.cache differ diff --git a/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.csproj.AssemblyReference.cache new file mode 100644 index 0000000..e2bf231 Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.csproj.BuildWithSkipAnalyzers b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.csproj.CopyComplete b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..13bde85 --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +1e01a2ded5818b4fdb0c5ff43a984a3f876469b8 diff --git a/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..60b4733 --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.csproj.FileListAbsolute.txt @@ -0,0 +1,54 @@ +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Repository.deps.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\ref\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\ref\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Repository.deps.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Repository.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Repository.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\bin\Release\net6.0\zzz.Model.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.GeneratedMSBuildEditorConfig.editorconfig +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.AssemblyInfoInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.AssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.csproj.CoreCompileInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.csproj.CopyComplete +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\refint\zzz.Repository.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\zzz.Repository.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Repository\obj\Release\net6.0\ref\zzz.Repository.dll +F:\yuhong_plc\zzz.Repository\bin\Release\net6.0\zzz.Repository.deps.json +F:\yuhong_plc\zzz.Repository\bin\Release\net6.0\zzz.Repository.dll +F:\yuhong_plc\zzz.Repository\bin\Release\net6.0\zzz.Repository.pdb +F:\yuhong_plc\zzz.Repository\bin\Release\net6.0\zzz.Common.dll +F:\yuhong_plc\zzz.Repository\bin\Release\net6.0\zzz.Model.dll +F:\yuhong_plc\zzz.Repository\bin\Release\net6.0\zzz.Common.pdb +F:\yuhong_plc\zzz.Repository\bin\Release\net6.0\zzz.Model.pdb +F:\yuhong_plc\zzz.Repository\bin\Release\net6.0\zzz.Model.xml +F:\yuhong_plc\zzz.Repository\obj\Release\net6.0\zzz.Repository.csproj.AssemblyReference.cache +F:\yuhong_plc\zzz.Repository\obj\Release\net6.0\zzz.Repository.GeneratedMSBuildEditorConfig.editorconfig +F:\yuhong_plc\zzz.Repository\obj\Release\net6.0\zzz.Repository.AssemblyInfoInputs.cache +F:\yuhong_plc\zzz.Repository\obj\Release\net6.0\zzz.Repository.AssemblyInfo.cs +F:\yuhong_plc\zzz.Repository\obj\Release\net6.0\zzz.Repository.csproj.CoreCompileInputs.cache +F:\yuhong_plc\zzz.Repository\obj\Release\net6.0\zzz.Repository.csproj.CopyComplete +F:\yuhong_plc\zzz.Repository\obj\Release\net6.0\zzz.Repository.dll +F:\yuhong_plc\zzz.Repository\obj\Release\net6.0\refint\zzz.Repository.dll +F:\yuhong_plc\zzz.Repository\obj\Release\net6.0\zzz.Repository.pdb +F:\yuhong_plc\zzz.Repository\obj\Release\net6.0\ref\zzz.Repository.dll diff --git a/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.dll b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.dll new file mode 100644 index 0000000..7d79fb4 Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.pdb b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.pdb new file mode 100644 index 0000000..b02178a Binary files /dev/null and b/yuhong_plc/zzz.Repository/obj/Release/net6.0/zzz.Repository.pdb differ diff --git a/yuhong_plc/zzz.Repository/obj/cjyx.Repository.csproj.nuget.dgspec.json b/yuhong_plc/zzz.Repository/obj/cjyx.Repository.csproj.nuget.dgspec.json new file mode 100644 index 0000000..168b0d6 --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/cjyx.Repository.csproj.nuget.dgspec.json @@ -0,0 +1,253 @@ +{ + "format": 1, + "restore": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj": {} + }, + "projects": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\zzz.Common.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\zzz.Common.csproj", + "projectName": "zzz.Common", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\zzz.Common.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "Microsoft.AspNetCore.SignalR.Core": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.Extensions.Configuration": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.Extensions.Configuration.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Binder": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Json": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Hosting.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.11.0, )" + }, + "Serilog.Sinks.File": { + "target": "Package", + "version": "[5.0.0, )" + }, + "WebApiClient.Extensions.DependencyInjection": { + "target": "Package", + "version": "[2.0.3, )" + }, + "Yitter.IdGenerator": { + "target": "Package", + "version": "[1.0.12, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj", + "projectName": "cjyx.Model", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.0.0, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.0.8, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj", + "projectName": "cjyx.Repository", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\zzz.Common.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\zzz.Common.csproj" + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Repository/obj/cjyx.Repository.csproj.nuget.g.props b/yuhong_plc/zzz.Repository/obj/cjyx.Repository.csproj.nuget.g.props new file mode 100644 index 0000000..2b6b4fc --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/cjyx.Repository.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\BLACK\.nuget\packages\;D:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.0.0 + + + + + + + C:\Users\BLACK\.nuget\packages\webapiclient.jit\1.0.3 + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Repository/obj/cjyx.Repository.csproj.nuget.g.targets b/yuhong_plc/zzz.Repository/obj/cjyx.Repository.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/cjyx.Repository.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Repository/obj/project.assets.json b/yuhong_plc/zzz.Repository/obj/project.assets.json new file mode 100644 index 0000000..4dee6df --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/project.assets.json @@ -0,0 +1,4498 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "AutoMapper/11.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "compile": { + "lib/netstandard2.1/AutoMapper.dll": {} + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": {} + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "dependencies": { + "AutoMapper": "11.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} + } + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + } + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "compile": { + "lib/net5.0/Google.Protobuf.dll": {} + }, + "runtime": { + "lib/net5.0/Google.Protobuf.dll": {} + } + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": {} + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": {} + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "compile": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {} + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {} + } + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": {} + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": {} + } + }, + "log4net/2.0.14": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/log4net.dll": {} + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MySql.Data/8.0.29": { + "type": "package", + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.4.1", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.4.0" + }, + "compile": { + "lib/net6.0/MySql.Data.dll": {}, + "lib/net6.0/Ubiety.Dns.Core.dll": {}, + "lib/net6.0/ZstdNet.dll": {} + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": {}, + "lib/net6.0/Ubiety.Dns.Core.dll": {}, + "lib/net6.0/ZstdNet.dll": {} + } + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Npgsql/5.0.7": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "4.6.0" + }, + "compile": { + "lib/net5.0/Npgsql.dll": {} + }, + "runtime": { + "lib/net5.0/Npgsql.dll": {} + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "4.7.1" + }, + "compile": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + } + }, + "Serilog/2.11.0": { + "type": "package", + "compile": { + "lib/net5.0/Serilog.dll": {} + }, + "runtime": { + "lib/net5.0/Serilog.dll": {} + } + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.File.dll": {} + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "compile": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} + } + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "alpine-x64" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + } + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "10.0.3", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/SqlSugar.dll": {} + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": {} + } + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/DmProvider.dll": {} + }, + "runtime": { + "lib/netstandard2.0/DmProvider.dll": {} + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Kdbndp.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": {} + } + }, + "System.Buffers/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Data.Common/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "type": "package", + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.DirectoryServices.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "compile": { + "ref/netstandard1.3/System.IO.Pipelines.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": {} + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + } + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/System.Threading.Channels.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Threading.Channels.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "compile": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": {} + } + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "System.Runtime.Caching": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": {} + } + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "compile": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": {} + } + }, + "zzz.Common/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "compile": { + "bin/placeholder/zzz.Common.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Common.dll": {} + } + }, + "zzz.Model/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "compile": { + "bin/placeholder/zzz.Model.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Model.dll": {} + } + } + } + }, + "libraries": { + "AutoMapper/11.0.1": { + "sha512": "WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "type": "package", + "path": "automapper/11.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.11.0.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/netstandard2.1/AutoMapper.dll", + "lib/netstandard2.1/AutoMapper.xml" + ] + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "sha512": "0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "type": "package", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", + "automapper.extensions.microsoft.dependencyinjection.nuspec", + "icon.png", + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll" + ] + }, + "BouncyCastle.NetCore/1.8.5": { + "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "type": "package", + "path": "bouncycastle.netcore/1.8.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bouncycastle.netcore.1.8.5.nupkg.sha512", + "bouncycastle.netcore.nuspec", + "lib/Mono/BouncyCastle.Crypto.dll", + "lib/Mono/BouncyCastle.Crypto.xml", + "lib/MonoAndroid/BouncyCastle.Crypto.dll", + "lib/MonoAndroid/BouncyCastle.Crypto.xml", + "lib/MonoMac/BouncyCastle.Crypto.dll", + "lib/MonoMac/BouncyCastle.Crypto.xml", + "lib/MonoTouch/BouncyCastle.Crypto.dll", + "lib/MonoTouch/BouncyCastle.Crypto.xml", + "lib/net20/BouncyCastle.Crypto.dll", + "lib/net20/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "lib/xamarinios/BouncyCastle.Crypto.dll", + "lib/xamarinios/BouncyCastle.Crypto.xml" + ] + }, + "Google.Protobuf/3.19.4": { + "sha512": "fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "type": "package", + "path": "google.protobuf/3.19.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "google.protobuf.3.19.4.nupkg.sha512", + "google.protobuf.nuspec", + "lib/net45/Google.Protobuf.dll", + "lib/net45/Google.Protobuf.pdb", + "lib/net45/Google.Protobuf.xml", + "lib/net5.0/Google.Protobuf.dll", + "lib/net5.0/Google.Protobuf.pdb", + "lib/net5.0/Google.Protobuf.xml", + "lib/netstandard1.1/Google.Protobuf.dll", + "lib/netstandard1.1/Google.Protobuf.pdb", + "lib/netstandard1.1/Google.Protobuf.xml", + "lib/netstandard2.0/Google.Protobuf.dll", + "lib/netstandard2.0/Google.Protobuf.pdb", + "lib/netstandard2.0/Google.Protobuf.xml" + ] + }, + "K4os.Compression.LZ4/1.2.6": { + "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "type": "package", + "path": "k4os.compression.lz4/1.2.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.1.2.6.nupkg.sha512", + "k4os.compression.lz4.nuspec", + "lib/net45/K4os.Compression.LZ4.dll", + "lib/net45/K4os.Compression.LZ4.xml", + "lib/net46/K4os.Compression.LZ4.dll", + "lib/net46/K4os.Compression.LZ4.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.xml" + ] + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "type": "package", + "path": "k4os.compression.lz4.streams/1.2.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.streams.1.2.6.nupkg.sha512", + "k4os.compression.lz4.streams.nuspec", + "lib/net45/K4os.Compression.LZ4.Streams.dll", + "lib/net45/K4os.Compression.LZ4.Streams.xml", + "lib/net46/K4os.Compression.LZ4.Streams.dll", + "lib/net46/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml" + ] + }, + "K4os.Hash.xxHash/1.0.6": { + "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "type": "package", + "path": "k4os.hash.xxhash/1.0.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.hash.xxhash.1.0.6.nupkg.sha512", + "k4os.hash.xxhash.nuspec", + "lib/net45/K4os.Hash.xxHash.dll", + "lib/net45/K4os.Hash.xxHash.xml", + "lib/net46/K4os.Hash.xxHash.dll", + "lib/net46/K4os.Hash.xxHash.xml", + "lib/netstandard1.6/K4os.Hash.xxHash.dll", + "lib/netstandard1.6/K4os.Hash.xxHash.xml", + "lib/netstandard2.0/K4os.Hash.xxHash.dll", + "lib/netstandard2.0/K4os.Hash.xxHash.xml" + ] + }, + "log4net/2.0.14": { + "sha512": "KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "type": "package", + "path": "log4net/2.0.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/log4net.dll", + "lib/net20/log4net.xml", + "lib/net35-client/log4net.dll", + "lib/net35-client/log4net.xml", + "lib/net35/log4net.dll", + "lib/net35/log4net.xml", + "lib/net40-client/log4net.dll", + "lib/net40-client/log4net.xml", + "lib/net40/log4net.dll", + "lib/net40/log4net.xml", + "lib/net45/log4net.dll", + "lib/net45/log4net.xml", + "lib/netstandard1.3/log4net.dll", + "lib/netstandard1.3/log4net.xml", + "lib/netstandard2.0/log4net.dll", + "lib/netstandard2.0/log4net.xml", + "log4net.2.0.14.nupkg.sha512", + "log4net.nuspec", + "package-icon.png" + ] + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "sha512": "Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "type": "package", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml", + "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.connections.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "sha512": "TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.xml", + "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.common.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "sha512": "mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.xml", + "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.core.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "sha512": "BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml", + "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.protocols.json.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/2.1.1": { + "sha512": "qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "type": "package", + "path": "microsoft.data.sqlclient/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.Data.SqlClient.dll", + "lib/net46/Microsoft.Data.SqlClient.pdb", + "lib/net46/Microsoft.Data.SqlClient.xml", + "lib/net46/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "microsoft.data.sqlclient.2.1.1.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net46/Microsoft.Data.SqlClient.dll", + "ref/net46/Microsoft.Data.SqlClient.pdb", + "ref/net46/Microsoft.Data.SqlClient.xml", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.Data.Sqlite/5.0.5": { + "sha512": "zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "type": "package", + "path": "microsoft.data.sqlite/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/_._", + "microsoft.data.sqlite.5.0.5.nupkg.sha512", + "microsoft.data.sqlite.nuspec" + ] + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "sha512": "tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "type": "package", + "path": "microsoft.data.sqlite.core/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.5.0.5.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "sha512": "BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "type": "package", + "path": "microsoft.extensions.configuration/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.dll", + "lib/net461/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.6.0.1.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net461/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "type": "package", + "path": "microsoft.extensions.configuration.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Json.dll", + "lib/net461/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "sha512": "GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "sha512": "B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "type": "package", + "path": "microsoft.extensions.options/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.21.1": { + "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "type": "package", + "path": "microsoft.identity.client/4.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid10.0/Microsoft.Identity.Client.dll", + "lib/monoandroid10.0/Microsoft.Identity.Client.xml", + "lib/monoandroid90/Microsoft.Identity.Client.dll", + "lib/monoandroid90/Microsoft.Identity.Client.xml", + "lib/net45/Microsoft.Identity.Client.dll", + "lib/net45/Microsoft.Identity.Client.xml", + "lib/net461/Microsoft.Identity.Client.dll", + "lib/net461/Microsoft.Identity.Client.xml", + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll", + "lib/netcoreapp2.1/Microsoft.Identity.Client.xml", + "lib/netstandard1.3/Microsoft.Identity.Client.dll", + "lib/netstandard1.3/Microsoft.Identity.Client.xml", + "lib/uap10.0/Microsoft.Identity.Client.dll", + "lib/uap10.0/Microsoft.Identity.Client.pri", + "lib/uap10.0/Microsoft.Identity.Client.xml", + "lib/xamarinios10/Microsoft.Identity.Client.dll", + "lib/xamarinios10/Microsoft.Identity.Client.xml", + "lib/xamarinmac20/Microsoft.Identity.Client.dll", + "lib/xamarinmac20/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.21.1.nupkg.sha512", + "microsoft.identity.client.nuspec", + "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll", + "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml", + "ref/net45/Microsoft.Identity.Client.dll", + "ref/net45/Microsoft.Identity.Client.xml", + "ref/net461/Microsoft.Identity.Client.dll", + "ref/net461/Microsoft.Identity.Client.xml", + "ref/netcoreapp2.1/Microsoft.Identity.Client.dll", + "ref/netcoreapp2.1/Microsoft.Identity.Client.xml", + "ref/netstandard1.3/Microsoft.Identity.Client.dll", + "ref/netstandard1.3/Microsoft.Identity.Client.xml", + "ref/uap10.0/Microsoft.Identity.Client.dll", + "ref/uap10.0/Microsoft.Identity.Client.xml", + "ref/xamarinmac20/Microsoft.Identity.Client.dll", + "ref/xamarinmac20/Microsoft.Identity.Client.xml" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "sha512": "+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "sha512": "Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "sha512": "OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "sha512": "X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "sha512": "gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "type": "package", + "path": "microsoft.win32.systemevents/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/net472/Microsoft.Win32.SystemEvents.dll", + "ref/net472/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MySql.Data/8.0.29": { + "sha512": "3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "type": "package", + "path": "mysql.data/8.0.29", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/MySql.Data.dll", + "lib/net452/MySql.Data.xml", + "lib/net452/Ubiety.Dns.Core.dll", + "lib/net452/ZstdNet.dll", + "lib/net48/MySql.Data.dll", + "lib/net48/MySql.Data.xml", + "lib/net48/Ubiety.Dns.Core.dll", + "lib/net48/ZstdNet.dll", + "lib/net5.0/MySql.Data.dll", + "lib/net5.0/MySql.Data.xml", + "lib/net5.0/Ubiety.Dns.Core.dll", + "lib/net5.0/ZstdNet.dll", + "lib/net6.0/MySql.Data.dll", + "lib/net6.0/MySql.Data.xml", + "lib/net6.0/Ubiety.Dns.Core.dll", + "lib/net6.0/ZstdNet.dll", + "lib/netstandard2.0/MySql.Data.dll", + "lib/netstandard2.0/MySql.Data.xml", + "lib/netstandard2.0/Ubiety.Dns.Core.dll", + "lib/netstandard2.0/ZstdNet.dll", + "lib/netstandard2.1/MySql.Data.dll", + "lib/netstandard2.1/MySql.Data.xml", + "lib/netstandard2.1/Ubiety.Dns.Core.dll", + "lib/netstandard2.1/ZstdNet.dll", + "mysql.data.8.0.29.nupkg.sha512", + "mysql.data.nuspec" + ] + }, + "Newtonsoft.Json/11.0.2": { + "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "type": "package", + "path": "newtonsoft.json/11.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.11.0.2.nupkg.sha512", + "newtonsoft.json.nuspec" + ] + }, + "Npgsql/5.0.7": { + "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "type": "package", + "path": "npgsql/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Npgsql.dll", + "lib/net5.0/Npgsql.xml", + "lib/netcoreapp3.1/Npgsql.dll", + "lib/netcoreapp3.1/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.5.0.7.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "sha512": "SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "type": "package", + "path": "oracle.manageddataaccess.core/3.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PerfCounters/register_odpc_perfmon_counters.ps1", + "PerfCounters/unregister_odpc_perfmon_counters.ps1", + "info.txt", + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll", + "oracle.manageddataaccess.core.3.21.1.nupkg.sha512", + "oracle.manageddataaccess.core.nuspec", + "readme.txt" + ] + }, + "Serilog/2.11.0": { + "sha512": "ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "type": "package", + "path": "serilog/2.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.dll", + "lib/net45/Serilog.xml", + "lib/net46/Serilog.dll", + "lib/net46/Serilog.xml", + "lib/net5.0/Serilog.dll", + "lib/net5.0/Serilog.xml", + "lib/netstandard1.0/Serilog.dll", + "lib/netstandard1.0/Serilog.xml", + "lib/netstandard1.3/Serilog.dll", + "lib/netstandard1.3/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.2.11.0.nupkg.sha512", + "serilog.nuspec" + ] + }, + "Serilog.Sinks.File/5.0.0": { + "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "type": "package", + "path": "serilog.sinks.file/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "images/icon.png", + "lib/net45/Serilog.Sinks.File.dll", + "lib/net45/Serilog.Sinks.File.pdb", + "lib/net45/Serilog.Sinks.File.xml", + "lib/net5.0/Serilog.Sinks.File.dll", + "lib/net5.0/Serilog.Sinks.File.pdb", + "lib/net5.0/Serilog.Sinks.File.xml", + "lib/netstandard1.3/Serilog.Sinks.File.dll", + "lib/netstandard1.3/Serilog.Sinks.File.pdb", + "lib/netstandard1.3/Serilog.Sinks.File.xml", + "lib/netstandard2.0/Serilog.Sinks.File.dll", + "lib/netstandard2.0/Serilog.Sinks.File.pdb", + "lib/netstandard2.0/Serilog.Sinks.File.xml", + "lib/netstandard2.1/Serilog.Sinks.File.dll", + "lib/netstandard2.1/Serilog.Sinks.File.pdb", + "lib/netstandard2.1/Serilog.Sinks.File.xml", + "serilog.sinks.file.5.0.0.nupkg.sha512", + "serilog.sinks.file.nuspec" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "sha512": "f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.nativelibrary.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.0.4": { + "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "type": "package", + "path": "sqlitepclraw.core/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.0.4.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/alpine-x64/native/libe_sqlite3.so", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "type": "package", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll", + "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "sqlitepclraw.provider.dynamic_cdecl.nuspec" + ] + }, + "SqlSugarCore/5.0.8": { + "sha512": "20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "type": "package", + "path": "sqlsugarcore/5.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.1/SqlSugar.dll", + "sqlsugarcore.5.0.8.nupkg.sha512", + "sqlsugarcore.nuspec" + ] + }, + "SqlSugarCore.Dm/1.0.0": { + "sha512": "TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "type": "package", + "path": "sqlsugarcore.dm/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/DmProvider.dll", + "sqlsugarcore.dm.1.0.0.nupkg.sha512", + "sqlsugarcore.dm.nuspec" + ] + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "sha512": "xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "type": "package", + "path": "sqlsugarcore.kdbndp/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Kdbndp.dll", + "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512", + "sqlsugarcore.kdbndp.nuspec" + ] + }, + "System.Buffers/4.5.1": { + "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "type": "package", + "path": "system.buffers/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Buffers.dll", + "lib/net461/System.Buffers.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.1.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "type": "package", + "path": "system.configuration.configurationmanager/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Data.Common/4.3.0": { + "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "type": "package", + "path": "system.data.common/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.Common.dll", + "lib/netstandard1.2/System.Data.Common.dll", + "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.xml", + "ref/netstandard1.2/de/System.Data.Common.xml", + "ref/netstandard1.2/es/System.Data.Common.xml", + "ref/netstandard1.2/fr/System.Data.Common.xml", + "ref/netstandard1.2/it/System.Data.Common.xml", + "ref/netstandard1.2/ja/System.Data.Common.xml", + "ref/netstandard1.2/ko/System.Data.Common.xml", + "ref/netstandard1.2/ru/System.Data.Common.xml", + "ref/netstandard1.2/zh-hans/System.Data.Common.xml", + "ref/netstandard1.2/zh-hant/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.data.common.4.3.0.nupkg.sha512", + "system.data.common.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "sha512": "oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "sha512": "kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "type": "package", + "path": "system.diagnostics.performancecounter/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Diagnostics.PerformanceCounter.dll", + "ref/net461/System.Diagnostics.PerformanceCounter.xml", + "ref/net472/System.Diagnostics.PerformanceCounter.dll", + "ref/net472/System.Diagnostics.PerformanceCounter.xml", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.4.7.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.DirectoryServices/4.7.0": { + "sha512": "NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "type": "package", + "path": "system.directoryservices/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.DirectoryServices.dll", + "ref/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml", + "system.directoryservices.4.7.0.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.DirectoryServices.Protocols/4.7.0": { + "sha512": "yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "type": "package", + "path": "system.directoryservices.protocols/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.DirectoryServices.Protocols.dll", + "ref/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.4.7.0.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/4.7.0": { + "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "type": "package", + "path": "system.drawing.common/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.4.7.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "sha512": "5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "sha512": "vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Pipelines/4.5.2": { + "sha512": "NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "type": "package", + "path": "system.io.pipelines/4.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/System.IO.Pipelines.dll", + "lib/netcoreapp2.1/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netstandard1.3/System.IO.Pipelines.dll", + "system.io.pipelines.4.5.2.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/4.7.0": { + "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "type": "package", + "path": "system.runtime.caching/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard2.0/System.Runtime.Caching.dll", + "ref/netstandard2.0/System.Runtime.Caching.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", + "system.runtime.caching.4.7.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Security.AccessControl/4.7.0": { + "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "type": "package", + "path": "system.security.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.7.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Permissions/4.7.0": { + "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "type": "package", + "path": "system.security.permissions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.7.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.7.0": { + "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "type": "package", + "path": "system.text.encoding.codepages/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.4.7.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/6.0.0": { + "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "type": "package", + "path": "system.text.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "build/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/netcoreapp3.1/System.Text.Json.dll", + "lib/netcoreapp3.1/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.6.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading.Channels/4.5.0": { + "sha512": "MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "type": "package", + "path": "system.threading.channels/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/System.Threading.Channels.dll", + "lib/netcoreapp2.1/System.Threading.Channels.xml", + "lib/netstandard1.3/System.Threading.Channels.dll", + "lib/netstandard1.3/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "system.threading.channels.4.5.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Windows.Extensions/4.7.0": { + "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "type": "package", + "path": "system.windows.extensions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.4.7.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "sha512": "YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "type": "package", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.xml", + "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512", + "webapiclient.extensions.dependencyinjection.nuspec" + ] + }, + "WebApiClient.JIT/1.0.3": { + "sha512": "mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "type": "package", + "path": "webapiclient.jit/1.0.3", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/WebApiClient.Analyzers.deps.json", + "analyzers/dotnet/cs/WebApiClient.Analyzers.dll", + "lib/net45/WebApiClient.JIT.dll", + "lib/net45/WebApiClient.JIT.xml", + "lib/netcoreapp2.1/WebApiClient.JIT.dll", + "lib/netcoreapp2.1/WebApiClient.JIT.xml", + "lib/netstandard1.3/WebApiClient.JIT.dll", + "lib/netstandard1.3/WebApiClient.JIT.xml", + "lib/netstandard2.0/WebApiClient.JIT.dll", + "lib/netstandard2.0/WebApiClient.JIT.xml", + "tools/install.ps1", + "tools/uninstall.ps1", + "webapiclient.jit.1.0.3.nupkg.sha512", + "webapiclient.jit.nuspec" + ] + }, + "Yitter.IdGenerator/1.0.12": { + "sha512": "hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "type": "package", + "path": "yitter.idgenerator/1.0.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Yitter.IdGenerator.dll", + "yitter.idgenerator.1.0.12.nupkg.sha512", + "yitter.idgenerator.nuspec" + ] + }, + "zzz.Common/1.0.0": { + "type": "project", + "path": "../zzz.Common/zzz.Common.csproj", + "msbuildProject": "../zzz.Common/zzz.Common.csproj" + }, + "zzz.Model/1.0.0": { + "type": "project", + "path": "../zzz.model/zzz.Model.csproj", + "msbuildProject": "../zzz.model/zzz.Model.csproj" + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "zzz.Common >= 1.0.0", + "zzz.Model >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\Administrator\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj", + "projectName": "zzz.Repository", + "projectPath": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Repository\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj" + }, + "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Repository/obj/project.nuget.cache b/yuhong_plc/zzz.Repository/obj/project.nuget.cache new file mode 100644 index 0000000..8765436 --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/project.nuget.cache @@ -0,0 +1,105 @@ +{ + "version": 2, + "dgSpecHash": "3jowCeL1dpApqQxmQLnzb+qOwfwjnaAXLGncoD7sGhk2Oz3jtCdE5WF5HY9n2rv2qVEA8j7KHzbjQu8TmUIgDQ==", + "success": true, + "projectFilePath": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Administrator\\.nuget\\packages\\automapper\\11.0.1\\automapper.11.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\11.0.0\\automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\bouncycastle.netcore\\1.8.5\\bouncycastle.netcore.1.8.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\google.protobuf\\3.19.4\\google.protobuf.3.19.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4\\1.2.6\\k4os.compression.lz4.1.2.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4.streams\\1.2.6\\k4os.compression.lz4.streams.1.2.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.hash.xxhash\\1.0.6\\k4os.hash.xxhash.1.0.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\log4net\\2.0.14\\log4net.2.0.14.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.connections.abstractions\\2.2.0\\microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.common\\1.1.0\\microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.core\\1.1.0\\microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.protocols.json\\1.1.0\\microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlclient\\2.1.1\\microsoft.data.sqlclient.2.1.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.1.1\\microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlite\\5.0.5\\microsoft.data.sqlite.5.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlite.core\\5.0.5\\microsoft.data.sqlite.core.5.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration\\6.0.1\\microsoft.extensions.configuration.6.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0\\microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.binder\\6.0.0\\microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\6.0.0\\microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.json\\6.0.0\\microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\6.0.0\\microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\6.0.0\\microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\6.0.0\\microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\6.0.0\\microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\2.2.0\\microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identity.client\\4.21.1\\microsoft.identity.client.4.21.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.8.0\\microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.logging\\6.8.0\\microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.8.0\\microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.8.0\\microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.8.0\\microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\mysql.data\\8.0.29\\mysql.data.8.0.29.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\newtonsoft.json\\11.0.2\\newtonsoft.json.11.0.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\npgsql\\5.0.7\\npgsql.5.0.7.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\oracle.manageddataaccess.core\\3.21.1\\oracle.manageddataaccess.core.3.21.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\serilog\\2.11.0\\serilog.2.11.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\serilog.sinks.file\\5.0.0\\serilog.sinks.file.5.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.0.4\\sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.core\\2.0.4\\sqlitepclraw.core.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.0.4\\sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.provider.dynamic_cdecl\\2.0.4\\sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore\\5.0.8\\sqlsugarcore.5.0.8.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore.dm\\1.0.0\\sqlsugarcore.dm.1.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore.kdbndp\\1.0.0\\sqlsugarcore.kdbndp.1.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.0\\system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.performancecounter\\4.7.0\\system.diagnostics.performancecounter.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.directoryservices\\4.7.0\\system.directoryservices.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.directoryservices.protocols\\4.7.0\\system.directoryservices.protocols.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.8.0\\system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem.accesscontrol\\4.7.0\\system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.pipelines\\4.5.2\\system.io.pipelines.4.5.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.json\\6.0.0\\system.text.json.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.channels\\4.5.0\\system.threading.channels.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\webapiclient.extensions.dependencyinjection\\2.0.3\\webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\webapiclient.jit\\1.0.3\\webapiclient.jit.1.0.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\yitter.idgenerator\\1.0.12\\yitter.idgenerator.1.0.12.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Repository/obj/zzz.Repository.csproj.nuget.dgspec.json b/yuhong_plc/zzz.Repository/obj/zzz.Repository.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e2aafb0 --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/zzz.Repository.csproj.nuget.dgspec.json @@ -0,0 +1,250 @@ +{ + "format": 1, + "restore": { + "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj": {} + }, + "projects": { + "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj", + "projectName": "zzz.Common", + "projectPath": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Common\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "Microsoft.AspNetCore.SignalR.Core": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.Extensions.Configuration": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.Extensions.Configuration.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Binder": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Json": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Hosting.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.11.0, )" + }, + "Serilog.Sinks.File": { + "target": "Package", + "version": "[5.0.0, )" + }, + "WebApiClient.Extensions.DependencyInjection": { + "target": "Package", + "version": "[2.0.3, )" + }, + "Yitter.IdGenerator": { + "target": "Package", + "version": "[1.0.12, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj", + "projectName": "zzz.Model", + "projectPath": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.model\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.0.0, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.0.8, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj", + "projectName": "zzz.Repository", + "projectPath": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Repository\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj" + }, + "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Repository/obj/zzz.Repository.csproj.nuget.g.props b/yuhong_plc/zzz.Repository/obj/zzz.Repository.csproj.nuget.g.props new file mode 100644 index 0000000..15ee09f --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/zzz.Repository.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Administrator\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.2.1 + + + + + + + C:\Users\Administrator\.nuget\packages\webapiclient.jit\1.0.3 + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Repository/obj/zzz.Repository.csproj.nuget.g.targets b/yuhong_plc/zzz.Repository/obj/zzz.Repository.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/yuhong_plc/zzz.Repository/obj/zzz.Repository.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Repository/zzz.Repository.csproj b/yuhong_plc/zzz.Repository/zzz.Repository.csproj new file mode 100644 index 0000000..833c7ca --- /dev/null +++ b/yuhong_plc/zzz.Repository/zzz.Repository.csproj @@ -0,0 +1,13 @@ + + + + net6.0 + enable + + + + + + + + diff --git a/yuhong_plc/zzz.Services/Base/BaseServices.cs b/yuhong_plc/zzz.Services/Base/BaseServices.cs new file mode 100644 index 0000000..97c1e26 --- /dev/null +++ b/yuhong_plc/zzz.Services/Base/BaseServices.cs @@ -0,0 +1,155 @@ +using zzz.Common.Helper; +using zzz.Model; +using zzz.Repository; +using zzz.Services.Sys.Tests.Dtos; +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Data; +using System.Linq; +using System.Linq.Expressions; +using System.Text; +using System.Threading.Tasks; +using Yitter.IdGenerator; + +namespace zzz.Services +{ + /// + /// 服务 + /// + /// + public class BaseServices : IBaseServices where TEntity : class + { + /// + /// + /// + public IBaseRepository _rep { get; set; }//通过在子类的构造函数中注入,这里是基类,不用构造函数 + + /// + /// 构造 + /// + /// + public BaseServices(IBaseRepository baseRepository) + { + _rep = baseRepository; + } + + /// + /// 根据主键取数据 + /// + /// + /// + /// + /// + public async Task GetOneById(Tkey key) where Tout : class, new() + { + Tout ret = new Tout(); + var entity = await _rep.FirstOrDefaultByIdAsync(key); + if (entity != null) + { + ret = entity.MapTo(); + } + return ret; + } + + /// + /// 取分页数据 + /// + /// + /// + /// + /// + /// + /// + public async Task> GetPageList( + Expression> whereExpression, + int pageIndex = 1, + int pageSize = 20, + string orderByFields = null) + { + var where = whereExpression as Expression>; + var pageData = await _rep.QueryPageAsync(where, pageIndex, pageSize, orderByFields); + + return pageData.ConvertTo(); + } + + /// + /// 新增 实体 + /// + /// + /// + public async Task AddOne(TEntity entity) + { + var ret = await _rep.InsertAsync(entity); + return ret > 0; + } + /// + /// 新增 + /// + /// + /// + public async Task AddOne(TAddDto input) + where Tkey : IEquatable + //where TAdd : RootEntityTkey + { + var newEntity = input.MapTo(); + + //newEntity.Id = ConvertUtil2.ConvertType(YitIdHelper.NextId()); + + return await _rep.InsertAsync(newEntity) > 0; + } + + /// + /// 编辑 + /// + /// + /// + /// + public async Task UpdOne(TUpdDto input) + where Tkey : IEquatable + //where TUpd : RootEntityTkey + { + var ret = false; + //转换Update的ID和UpdateDatetime + var tar = input.MapTo>(); + + var dbEntity = await _rep.FirstOrDefaultByIdAsync(tar.Id); + if (dbEntity != null) + { + var updEntity = input.MapTo(dbEntity); + + ret = await _rep.UpdateAsync(updEntity); + } + return ret; + } + + /// + /// 删除 + /// + /// + /// + public async Task DelOneSoft(KeyInputUpd input) + where Tkey : IEquatable + where TDel : RootEntityTkey + { + var ret = false; + + var dbEntity = await _rep.FirstOrDefaultByIdAsync(input.Id); + + if (dbEntity != null) + { + var delEntity = dbEntity as TDel; + if (delEntity != null) + { + delEntity.IsDeleted = true; + + ret = await _rep.UpdateAsync(delEntity as TEntity); + } + + } + return ret; + } + + + } +} diff --git a/yuhong_plc/zzz.Services/Base/IBaseServices.cs b/yuhong_plc/zzz.Services/Base/IBaseServices.cs new file mode 100644 index 0000000..9e9a296 --- /dev/null +++ b/yuhong_plc/zzz.Services/Base/IBaseServices.cs @@ -0,0 +1,81 @@ +using zzz.Model; +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Data; +using System.Linq; +using System.Linq.Expressions; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services +{ + /// + /// 服务接口 + /// + /// + public interface IBaseServices where TEntity : class + { + + /// + /// 根据主键取数据 + /// + /// + /// + /// + /// + Task GetOneById(Tkey key) where Tout : class, new(); + + /// + /// 取分页数据 + /// + /// + /// + /// + /// + /// + /// + Task> GetPageList( + Expression> whereExpression, + int pageIndex = 1, + int pageSize = 20, + string orderByFields = null); + + /// + /// 新增 实体 + /// + /// + /// + Task AddOne(TEntity entity); + /// + /// 新增 + /// + /// + /// + Task AddOne(TAddDto input) + where Tkey : IEquatable + //where TAdd : RootEntityTkey + ; + + /// + /// 编辑 + /// + /// + /// + /// + Task UpdOne(TUpdDto input) + where Tkey : IEquatable + //where TUpd : RootEntityTkey + ; + + /// + /// 删除 + /// + /// + /// + Task DelOneSoft(KeyInputUpd key) + where Tkey : IEquatable + where TDel : RootEntityTkey + ; + } +} diff --git a/yuhong_plc/zzz.Services/Comm/DBSeed.cs b/yuhong_plc/zzz.Services/Comm/DBSeed.cs new file mode 100644 index 0000000..0b99e2f --- /dev/null +++ b/yuhong_plc/zzz.Services/Comm/DBSeed.cs @@ -0,0 +1,131 @@ +using zzz.Common; +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Reflection; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services +{ + /// + /// 种子数据 服务 + /// + public class DBSeed: IDBSeed + { + private readonly ISqlSugarClient _sqlSugarClient; + private static string SeedDataFolder = "BlogCore.Data.json/{0}.tsv"; + + /// + /// 构造 + /// + /// + public DBSeed(ISqlSugarClient sqlSugarClient) + { + _sqlSugarClient = sqlSugarClient; + } + + /// + /// 异步添加种子数据 + /// + /// + /// + /// + public async static Task SeedAsync(ISqlSugarClient myContext,string WebRootPath) + { + try + { + if (string.IsNullOrEmpty(WebRootPath)) + { + throw new Exception("获取wwwroot路径时,异常!"); + } + + //创建数据库 + if (Appsettings.app("SeedDBEnabled").ObjToBool()) + { + var dbtype = Appsettings.app("DBType").ObjToInt(); + Console.WriteLine($"Create Database..."); + + if (dbtype != Convert.ToInt32(SqlSugar.DbType.Oracle)) + { + myContext.DbMaintenance.CreateDatabase(); + ConsoleHelper.WriteSuccessLine($"Database created successfully!"); + } + else + { + //Oracle 数据库不支持该操作 + ConsoleHelper.WriteSuccessLine($"Oracle 数据库不支持该操作,可手动创建Oracle数据库!"); + } + } + + //初始化数据 + if (Appsettings.app("SeedDBDataEnabled").ObjToBool()) + { + // 创建数据库表,遍历指定命名空间下的class, + // 注意不要把其他命名空间下的也添加进来。 + Console.WriteLine("Create Tables..."); + + var path = AppDomain.CurrentDomain.RelativeSearchPath ?? AppDomain.CurrentDomain.BaseDirectory; + var referencedAssemblies = System.IO.Directory.GetFiles(path, "zzz.Model.dll").Select(Assembly.LoadFrom).ToArray(); + var modelTypes = referencedAssemblies + .SelectMany(a => a.DefinedTypes) + .Select(type => type.AsType()) + .Where(x => x.IsClass && x.Namespace != null && x.Namespace.Equals("zzz.Model.Entity")).ToList(); + modelTypes.ForEach(t => + { + // 这里只支持添加表,不支持删除 + // 如果想要删除,数据库直接右键删除,或者联系SqlSugar作者; + if (!myContext.DbMaintenance.IsAnyTable(t.Name)) + { + Console.WriteLine(t.Name); + myContext.CodeFirst.InitTables(t); + } + }); + ConsoleHelper.WriteSuccessLine($"Tables created successfully!"); + Console.WriteLine(); + } + + + Console.WriteLine(); + } + catch (Exception ex) + { + throw new Exception( + $"1、若是Mysql,查看常见问题:https://github.com/anjoy8/zzz/issues/148#issue-776281770 \n" + + $"2、若是Oracle,查看常见问题:https://github.com/anjoy8/zzz/issues/148#issuecomment-752340231 \n" + + "3、其他错误:" + ex.Message); + } + } + + + /// + /// 同步表结构 + /// + /// + /// + public async Task CreateTable(string tableName) + { + if (tableName.IsNotEmptyOrNull()) + { + try + { + var path = AppDomain.CurrentDomain.RelativeSearchPath ?? AppDomain.CurrentDomain.BaseDirectory; + var referencedAssemblies = System.IO.Directory.GetFiles(path, "zzz.Model.dll").Select(Assembly.LoadFrom).ToArray(); + var modelTypes = referencedAssemblies + .SelectMany(a => a.DefinedTypes) + .Select(type => type.AsType()) + .Where(x => x.IsClass && x.Namespace != null && x.Namespace.Equals("zzz.Model.Entity") && x.Name == tableName) + .FirstOrDefault(); + _sqlSugarClient.CodeFirst.InitTables(modelTypes); + + } + catch (Exception ex) + { + throw; + } + } + } + + } +} diff --git a/yuhong_plc/zzz.Services/Comm/Dtos/DtoSelect.cs b/yuhong_plc/zzz.Services/Comm/Dtos/DtoSelect.cs new file mode 100644 index 0000000..6760c92 --- /dev/null +++ b/yuhong_plc/zzz.Services/Comm/Dtos/DtoSelect.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services +{ + /// + /// 下拉框DTO + /// + /// + public class DtoSelect + { + public T value { get; set; } + public string label { get; set; } + + public string typeCode { get; set; } + public string parentCode { get; set; } + + public int? sort { get; set; } + + public string strExtend01 { get; set; } + public string strExtend02 { get; set; } + public string strExtend03 { get; set; } + public string strExtend04 { get; set; } + public string strExtend05 { get; set; } + } +} diff --git a/yuhong_plc/zzz.Services/Comm/Dtos/KeyInput.cs b/yuhong_plc/zzz.Services/Comm/Dtos/KeyInput.cs new file mode 100644 index 0000000..c1db1d4 --- /dev/null +++ b/yuhong_plc/zzz.Services/Comm/Dtos/KeyInput.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services +{ + /// + /// 通用主键 Input + /// + /// + public class KeyInput + { + /// + /// 主键 + /// + public T Id { get; set; } + + } +} diff --git a/yuhong_plc/zzz.Services/Comm/Dtos/KeyInputUpd.cs b/yuhong_plc/zzz.Services/Comm/Dtos/KeyInputUpd.cs new file mode 100644 index 0000000..0de3b41 --- /dev/null +++ b/yuhong_plc/zzz.Services/Comm/Dtos/KeyInputUpd.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services +{ + /// + /// 通用主键 Input + /// + /// + public class KeyInputUpd + where Tkey : IEquatable + { + /// + /// ID + /// + public Tkey Id { get; set; } + + /// + /// 更新时间 如果有值,会进行最后更新时间校验 + /// + public virtual DateTime? UpdatedTime { get; set; } + + } +} diff --git a/yuhong_plc/zzz.Services/Comm/Dtos/KeysInput.cs b/yuhong_plc/zzz.Services/Comm/Dtos/KeysInput.cs new file mode 100644 index 0000000..88df51d --- /dev/null +++ b/yuhong_plc/zzz.Services/Comm/Dtos/KeysInput.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services +{ + public class KeysInput + { + public List Ids { get; set; } + } +} diff --git a/yuhong_plc/zzz.Services/Comm/Dtos/PageInputBase.cs b/yuhong_plc/zzz.Services/Comm/Dtos/PageInputBase.cs new file mode 100644 index 0000000..62eac36 --- /dev/null +++ b/yuhong_plc/zzz.Services/Comm/Dtos/PageInputBase.cs @@ -0,0 +1,60 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services +{ + /// + /// 分页共同画面 + /// + public class PageInputBase + { + /// + /// 当前页码 + /// + public virtual int PageIndex { get; set; } = 1; + + /// + /// 页码容量 + /// + public virtual int PageSize { get; set; } = 20; + + /// + /// 排序字段 + /// + public virtual string SortField { get; set; } = "Id"; + + /// + /// 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + /// + public virtual string SortOrder { get; set; } = "descending"; + + /// + /// 拼接好的sql 排序 + /// + public string SortSql + { + get + { + if (string.IsNullOrWhiteSpace(SortField) || string.IsNullOrWhiteSpace(SortOrder)) + { + return string.Empty; + } + else + { + switch (SortOrder) + { + case "ascending": + return SortField; + case "descending": + return SortField + " desc"; + default: + return string.Empty; + } + } + } + } + } +} diff --git a/yuhong_plc/zzz.Services/Comm/Dtos/Permission.cs b/yuhong_plc/zzz.Services/Comm/Dtos/Permission.cs new file mode 100644 index 0000000..f78bfb2 --- /dev/null +++ b/yuhong_plc/zzz.Services/Comm/Dtos/Permission.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services +{ + /// + /// 权限 + /// + public class Permission + { + public string value { get; set; } + public string label { get; set; } + public List children { get; set; }=new List(); + public List btns { get; set; }= new List(); + } +} diff --git a/yuhong_plc/zzz.Services/Comm/IDBSeed.cs b/yuhong_plc/zzz.Services/Comm/IDBSeed.cs new file mode 100644 index 0000000..18af11b --- /dev/null +++ b/yuhong_plc/zzz.Services/Comm/IDBSeed.cs @@ -0,0 +1,30 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services +{ + /// + /// 种子数据 接口 + /// + public interface IDBSeed + { + /// + /// 种子数据 + /// + /// + /// + /// + //Task SeedAsync(ISqlSugarClient myContext, string WebRootPath); + + /// + /// 同步表结构 + /// + /// + /// + Task CreateTable(string tableName); + } +} diff --git a/yuhong_plc/zzz.Services/ERP/Dtos/EqmtInfoOutput.cs b/yuhong_plc/zzz.Services/ERP/Dtos/EqmtInfoOutput.cs new file mode 100644 index 0000000..fbb32c7 --- /dev/null +++ b/yuhong_plc/zzz.Services/ERP/Dtos/EqmtInfoOutput.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using zzz.Model.Entity; + +namespace zzz.Services.ERP.Dtos +{ + public class EqmtInfoOutput: EqmtPubData + { + /// + /// 设备名称 + /// + public string eqmt_name { get; set; } + } +} diff --git a/yuhong_plc/zzz.Services/ERP/Dtos/LineRateDto.cs b/yuhong_plc/zzz.Services/ERP/Dtos/LineRateDto.cs new file mode 100644 index 0000000..9e5abcc --- /dev/null +++ b/yuhong_plc/zzz.Services/ERP/Dtos/LineRateDto.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.ERP.Dtos +{ + /// + /// 设备利用率DTO + /// + public class LineRateDto + { + /// + /// x轴 + /// + public xAxisDto01 xAxis { get;set; } = new xAxisDto01(); + + + /// + /// series + /// + public List series { get; set; } = new List(); + + } + + + + public class xAxisDto01 + { + public string type { get; set; } = "category"; + + public List data { get; set; } = new List(); + } + + public class seriesDto01 + { + public bool smooth { get; set; } = true; + public string type { get; set; } = "line"; + public List data { get; set; } = new List(); + } +} diff --git a/yuhong_plc/zzz.Services/ERP/Dtos/MonthDataOutput.cs b/yuhong_plc/zzz.Services/ERP/Dtos/MonthDataOutput.cs new file mode 100644 index 0000000..204bdcc --- /dev/null +++ b/yuhong_plc/zzz.Services/ERP/Dtos/MonthDataOutput.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.ERP.Dtos +{ + /// + /// 动态月订单信息数据 + /// + public class MonthDataOutput + { + /// + /// 生产计划达成率 + /// + public decimal MoCompleteRate { get; set; } + + /// + /// 订单交付率 + /// + public decimal PoCompleteRate { get; set; } + + /// + /// 生产数量 + /// + public ProductQtyDto ProductQty { get; set; } + + /// + /// 设备利用率 + /// + public LineRateDto EqmtRate { get; set; } + + /// + /// 产品合格率 + /// + public List ProductOKRate { get; set; } = new List(); + } +} diff --git a/yuhong_plc/zzz.Services/ERP/Dtos/ProductOkRateDto.cs b/yuhong_plc/zzz.Services/ERP/Dtos/ProductOkRateDto.cs new file mode 100644 index 0000000..b5b75d2 --- /dev/null +++ b/yuhong_plc/zzz.Services/ERP/Dtos/ProductOkRateDto.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.ERP.Dtos +{ + public class ProductOkRateDto + { + public string ProductName { get; set; } + public decimal OKRate { get; set; } + } +} diff --git a/yuhong_plc/zzz.Services/ERP/Dtos/ProductQtyDto.cs b/yuhong_plc/zzz.Services/ERP/Dtos/ProductQtyDto.cs new file mode 100644 index 0000000..e9dc576 --- /dev/null +++ b/yuhong_plc/zzz.Services/ERP/Dtos/ProductQtyDto.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.ERP.Dtos +{ + /// + /// 各产品生产数量 + /// + public class ProductQtyDto + { + /// + /// x轴 + /// + public xAxisDto xAxis { get;set; } = new xAxisDto(); + + + /// + /// series + /// + public List series { get; set; } = new List(); + + } + + + + public class xAxisDto + { + public string type { get; set; } + + public List data { get; set; } = new List(); + } + + public class seriesDto + { + public string name { get; set; } + public string type { get; set; } + public List data { get; set; } = new List(); + } +} diff --git a/yuhong_plc/zzz.Services/ERP/Dtos/plan_order_output.cs b/yuhong_plc/zzz.Services/ERP/Dtos/plan_order_output.cs new file mode 100644 index 0000000..2823095 --- /dev/null +++ b/yuhong_plc/zzz.Services/ERP/Dtos/plan_order_output.cs @@ -0,0 +1,184 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.ERP.Dtos +{ + /// + /// 大屏生产工单 + /// + public class plan_order_output + { + /// + /// 内码 + /// + public long FID { get; set; } + + /// + /// 单据编号 + /// + public string FBILL_NO { get; set; } + + /// + /// 单据类型 + /// + public string FBILL_TYPE { get; set; } + + /// + /// 单据时间 + /// + //public DateTime? FDATE { get; set; } + + /// + /// 单据状态 + /// + public string FDOCUMENT_STATUS { get; set; } + + /// + /// 产品类型 + /// + public string FPRODUCT_TYPE { get; set; } + + /// + /// 入库编号 + /// + public long FENTRY_ID { get; set; } + + /// + /// 物料编码 + /// + public string FMATERIAL_ID { get; set; } + + /// + /// 产品编码 + /// + public string FNUMBER { get; set; } + + /// + /// 产品名称 + /// + public string FMATERIAL_NAME { get; set; } + + /// + /// 产品规格 + /// + public string FSPECIFICATION { get; set; } + + /// + /// 生产车间 + /// + public string FWORK_SHOP { get; set; } + + /// + /// 单位 + /// + public string FUNIT_ID { get; set; } + + /// + /// 计划生产数量 + /// + public decimal? FQTY { get; set; } + public string FQTY_SHOW + { + get + { + return (FQTY ?? 0).ToString("N0"); + } + } + + /// + /// 合格品数量 + /// + public decimal? FREPQUAAUX_QTY { get; set; } + public string FREPQUAAUX_QTY_SHOW + { + get + { + return (FREPQUAAUX_QTY ?? 0).ToString("N0"); + } + } + + /// + /// 不良品数量 + /// + public decimal? FREPFAILAUX_QTY { get; set; } + public string FREPFAILAUX_QTY_SHOW + { + get + { + return (FREPFAILAUX_QTY ?? 0).ToString("N0"); + } + } + + /// + /// 完成进度 + /// + public decimal COMPLETE_RATE + { + get + { + if ((FQTY ?? 0) > 0) + { + return Math.Round((FREPQUAAUX_QTY ?? 0) / FQTY.Value, 2); + } + else + { + return 0; + } + } + } + + /// + /// 生产状态 + /// + public string FSTATUS { get; set; } + + /// + /// 计划开始时间 + /// + public string FPLAN_START_DATE { get; set; } + public string FPLAN_START_DATE_SHOW + { + get + { + return FPLAN_START_DATE.Length > 10 ? FPLAN_START_DATE.Substring(0, 10) : ""; + } + } + + /// + /// 计划完成时间 + /// + public string FPLAN_FINISH_DATE { get; set; } + public string FPLAN_FINISH_DATE_SHOW + { + get + { + return FPLAN_FINISH_DATE.Length > 10 ? FPLAN_FINISH_DATE.Substring(0, 10) : ""; + } + } + /// + /// 开工时间 + /// + public string FSTART_DATE { get; set; } + public string FSTART_DATE_SHOW + { + get + { + return FSTART_DATE.Replace("T", " "); + } + } + /// + /// 完工时间 + /// + public string FFINISH_DATE { get; set; } + public string FFINISH_DATE_SHOW + { + get + { + return FFINISH_DATE.Replace("T", " "); + } + } + } +} diff --git a/yuhong_plc/zzz.Services/ReadPLC/Dtos/EquipInput.cs b/yuhong_plc/zzz.Services/ReadPLC/Dtos/EquipInput.cs new file mode 100644 index 0000000..039a71c --- /dev/null +++ b/yuhong_plc/zzz.Services/ReadPLC/Dtos/EquipInput.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.ReadPLC +{ + /// + /// PLC硬件信息 + /// + public class EquipInput + { + /// + /// eqmt_id + /// + public int eqmt_id { get; set; } + /// + /// ip + /// + public string ip { get; set; } + /// + /// 端口 + /// + public List port { get; set; } + } +} diff --git a/yuhong_plc/zzz.Services/ReadPLC/IReadPLCDataService.cs b/yuhong_plc/zzz.Services/ReadPLC/IReadPLCDataService.cs new file mode 100644 index 0000000..330e423 --- /dev/null +++ b/yuhong_plc/zzz.Services/ReadPLC/IReadPLCDataService.cs @@ -0,0 +1,66 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.ReadPLC +{ + /// + /// 读取PLC数据接口 + /// + public interface IReadPLCDataService + { + + /// + /// 读取13线数据 + /// + Task ReadDataLine13(EquipInput input); + + /// + /// 读取16线数据 + /// + Task ReadDataLine16(EquipInput input); + + /// + /// 读取17线数据 + /// + Task ReadDataLine17(EquipInput input); + + /// + /// 读取18线数据 + /// + Task ReadDataLine18(EquipInput input); + + /// + /// 读取19线数据 + /// + Task ReadDataLine19(EquipInput input); + + /// + /// 读取15线数据 + /// + Task ReadDataLine15(EquipInput input); + + /// + /// 读取7线数据 + /// + /// + /// + Task ReadDataLine7(EquipInput input); + + /// + /// 读取2线数据 + /// + /// + /// + Task ReadDataLine2(EquipInput input); + + /// + /// 读取20线数据 + /// + /// + /// + Task ReadDataLine20(EquipInput input); + } +} diff --git a/yuhong_plc/zzz.Services/ReadPLC/ReadPLCDataService.cs b/yuhong_plc/zzz.Services/ReadPLC/ReadPLCDataService.cs new file mode 100644 index 0000000..0c592f2 --- /dev/null +++ b/yuhong_plc/zzz.Services/ReadPLC/ReadPLCDataService.cs @@ -0,0 +1,2663 @@ +using HslCommunication; +using HslCommunication.Profinet.Melsec; +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using zzz.Model.Entity; +using zzz.Repository; + +namespace zzz.Services.ReadPLC +{ + /// + /// 读取PLC数据服务 + /// + public class ReadPLCDataService : IReadPLCDataService + { + private readonly ILogger _logger; + private readonly MelsecMcNet _melsecMcNet = null; + private readonly IBaseRepository _eqmtExceptRep; + private readonly IBaseRepository _eqmtExceptHisRep; + //private readonly IBaseRepository _eqmtExceptMasterRep; + private readonly IBaseRepository _eqmt13Rep; + + private readonly IBaseRepository _eqmt15Rep;//lgy add + private readonly IBaseRepository _eqmt7Rep;//lgy add + private readonly IBaseRepository _eqmt2Rep;//lgy add + private readonly IBaseRepository _eqmt20Rep;//lgy add + + private readonly IBaseRepository _eqmt16Rep; + private readonly IBaseRepository _eqmt17Rep; + private readonly IBaseRepository _eqmt18Rep; + private readonly IBaseRepository _eqmt19Rep; + private readonly IBaseRepository _eqmtPubRep; + private readonly IBaseRepository _eqmtBaseRep; + private readonly IBaseRepository _eqmtProductSpecRep; + private readonly IBaseRepository _eqmtAddDataRep; + private readonly IBaseRepository _eqmtCollectDailyShiftRep; + private readonly IBaseRepository _eqmtExceptMasterRep; + private readonly IBaseRepository _eqmtCollectQCResultRep; + /// + /// 构造 + /// + public ReadPLCDataService( + ILogger logger, + IBaseRepository eqmtExceptRep, + IBaseRepository eqmtExceptHisRep, + //IBaseRepository eqmtExceptMasterRep, + IBaseRepository eqmt13Rep, + IBaseRepository eqmt15Rep, + IBaseRepository eqmt7Rep, + IBaseRepository eqmt2Rep, + IBaseRepository eqmt20Rep, + IBaseRepository eqmt16Rep, + IBaseRepository eqmt17Rep, + IBaseRepository eqmt18Rep, + IBaseRepository eqmt19Rep, + IBaseRepository eqmtPubRep, + IBaseRepository eqmtBaseRep, + IBaseRepository eqmtProductSpecRep, + IBaseRepository eqmtAddDataRep, + IBaseRepository eqmtCollectDailyShiftRep, + IBaseRepository eqmtExceptMasterRep, + IBaseRepository eqmtCollectQCResultRep + ) + { + _logger = logger; + _melsecMcNet = new MelsecMcNet(); + _eqmtExceptRep = eqmtExceptRep; + _eqmtExceptHisRep = eqmtExceptHisRep; + //_eqmtExceptMasterRep = eqmtExceptMasterRep; + + _eqmt13Rep = eqmt13Rep; + _eqmt15Rep = eqmt15Rep; + _eqmt7Rep = eqmt7Rep; + _eqmt2Rep = eqmt2Rep; + _eqmt20Rep = eqmt20Rep; + _eqmt16Rep = eqmt16Rep; + _eqmt17Rep = eqmt17Rep; + _eqmt18Rep = eqmt18Rep; + _eqmt19Rep = eqmt19Rep; + _eqmtPubRep = eqmtPubRep; + _eqmtBaseRep = eqmtBaseRep; + _eqmtProductSpecRep = eqmtProductSpecRep; + _eqmtAddDataRep = eqmtAddDataRep; + _eqmtCollectDailyShiftRep = eqmtCollectDailyShiftRep; + _eqmtExceptMasterRep = eqmtExceptMasterRep; + _eqmtCollectQCResultRep = eqmtCollectQCResultRep; + } + + /// + /// 打开连接 + /// + /// + /// + /// + private bool ConnectPLC(string ip, int port) + { + _melsecMcNet.IpAddress = ip; + _melsecMcNet.Port = port; + + DisConnectPLC(); + //打开连接 + try + { + var connResult = _melsecMcNet.ConnectServer(); + + _logger.LogInformation($"打开连接 ip:{ip} port:{port}"); + return connResult.IsSuccess; + } + catch (Exception) + { + _logger.LogError($"打开连接失败 ip:{ip} port:{port}"); + return false; + } + } + /// + /// 关闭连接 + /// + private void DisConnectPLC() + { + _melsecMcNet.ConnectClose(); + } + + #region 前辈所写 + /// + /// 读取13线数据 + /// + public async Task ReadDataLine13(EquipInput input) + { + Stopwatch oTime1 = new Stopwatch(); + oTime1.Start(); //记录开始时间 + try + { + _logger.LogInformation($"读取13线数据 开始"); + + var eqmt13 = new Eqmt13() + { + eqmt_id = input.eqmt_id, + collect_id = Guid.NewGuid().ToString(), + gmt_create = DateTime.Now, + }; + + var connSuccess = ConnectPLC(input.ip, input.port[0]); + var tryreadData = _melsecMcNet.ReadBool("M88").IsSuccess; + if (connSuccess && tryreadData) + { + //L271-L273 L271=240;L272=290;L273=350 + var L271 = _melsecMcNet.ReadBool("L271", 3); + if (L271.IsSuccess && L271.Content.Length > 0) + { + eqmt13.l271 = Convert.ToByte(L271.Content[0]); + } + if (L271.IsSuccess && L271.Content.Length > 1) + { + eqmt13.l272 = Convert.ToByte(L271.Content[1]); + } + if (L271.IsSuccess && L271.Content.Length > 2) + { + eqmt13.l273 = Convert.ToByte(L271.Content[2]); + } + + eqmt13.d60 = _melsecMcNet.ReadInt16("D60").Content; // 生产速度 + eqmt13.d5030 = _melsecMcNet.ReadInt32("D5030").Content; // 总生产产量 + eqmt13.d5032 = _melsecMcNet.ReadInt32("D5032").Content; // 总成品量 + eqmt13.d10398 = _melsecMcNet.ReadInt32("D10398").Content; // 当日生产产量 + eqmt13.d10448 = _melsecMcNet.ReadInt32("D10448").Content; // 当日成品量 + eqmt13.d10650 = _melsecMcNet.ReadFloat("D10650").Content.ObjToDecimal(0); //当日合格率 + eqmt13.d10700 = _melsecMcNet.ReadInt32("D10700").Content; //当日开机时间 + eqmt13.d10750 = _melsecMcNet.ReadInt32("D10750").Content; //当日停机时间 + eqmt13.m88 = Convert.ToByte(_melsecMcNet.ReadBool("M88").Content); //开机中 + + eqmt13.d10240 = _melsecMcNet.ReadInt32("D10240").Content;//吸水纸X切计数 + eqmt13.d10250 = _melsecMcNet.ReadInt32("D10250").Content;//三层复合X切计数 + eqmt13.d10260 = _melsecMcNet.ReadInt32("D10260").Content;//周切刀计数 + eqmt13.d10270 = _melsecMcNet.ReadInt32("D10270").Content;//无尘纸X切计数 + + eqmt13.d900 = _melsecMcNet.ReadInt16("D900").Content;//实时电压L1L2 + eqmt13.d901 = _melsecMcNet.ReadInt16("D901").Content;//实时电压L2L3 + eqmt13.d902 = _melsecMcNet.ReadInt16("D902").Content;//实时电压L2L1 + eqmt13.d903 = _melsecMcNet.ReadInt16("D903").Content;//实时电压L1N + eqmt13.d904 = _melsecMcNet.ReadInt16("D904").Content;//实时电压L2N + eqmt13.d905 = _melsecMcNet.ReadInt16("D905").Content;//实时电压L3N + eqmt13.d906 = _melsecMcNet.ReadInt16("D906").Content;//平均线电压 + eqmt13.d907 = _melsecMcNet.ReadInt16("D907").Content;//平均相电压 + eqmt13.d908 = _melsecMcNet.ReadInt16("D908").Content;//线电流L1 + eqmt13.d909 = _melsecMcNet.ReadInt16("D909").Content;//线电流L2 + eqmt13.d910 = _melsecMcNet.ReadInt16("D910").Content;//线电流L3 + eqmt13.d911 = _melsecMcNet.ReadInt16("D911").Content;//线电流N + + eqmt13.d950 = _melsecMcNet.ReadUInt16("D950").Content;//总有功电量 + eqmt13.d952 = _melsecMcNet.ReadUInt16("D952").Content;//总无功电量 + eqmt13.d954 = _melsecMcNet.ReadUInt16("D954").Content;//总视在电量 + eqmt13.d10900 = _melsecMcNet.ReadUInt16("D10900").Content;//单日有功电量 + eqmt13.d10950 = _melsecMcNet.ReadUInt16("D10950").Content;//当日无功电量 + eqmt13.d10970 = _melsecMcNet.ReadUInt16("D10970").Content;//单日视在电量 + + //异常停机数据 + #region 异常停机数据 + + var except01 = new List(); + + var M160_M190 = _melsecMcNet.ReadBool("M160", 31); + for (int i = 0; i < 31; i++) + { + if (M160_M190.Content[i]) + { + except01.Add($"M{160 + i}"); + } + } + + var M70 = _melsecMcNet.ReadBool("M70"); + if (M70.Content) except01.Add($"M70"); + + var M700_M745 = _melsecMcNet.ReadBool("M700", 46); + for (int i = 0; i < 46; i++) + { + if (M700_M745.Content[i]) + { + except01.Add($"M{700 + i}"); + } + } + + var M108_M121 = _melsecMcNet.ReadBool("M108", 14); + for (int i = 0; i < 14; i++) + { + if (M108_M121.Content[i]) + { + except01.Add($"M{108 + i}"); + } + } + + var M50 = _melsecMcNet.ReadBool("M50"); + if (M50.Content) except01.Add($"M50"); + + var M380_M394 = _melsecMcNet.ReadBool("M380", 15); + for (int i = 0; i < 15; i++) + { + if (M380_M394.Content[i]) + { + except01.Add($"M{380 + i}"); + } + } + + var B00010_B0002F = _melsecMcNet.ReadBool("B00010", 32); + for (int i = 0; i < 32; i++) + { + if (B00010_B0002F.Content[i]) + { + except01.Add($"B000{(16 + i).ToString("x2").ToUpper()}"); + } + } + + var B00510_B0052F = _melsecMcNet.ReadBool("B00510", 32); + for (int i = 0; i < 32; i++) + { + if (B00510_B0052F.Content[i]) + { + except01.Add($"B005{(16 + i).ToString("x2").ToUpper()}"); + } + } + + var B00A10_B00A2F = _melsecMcNet.ReadBool("B00A10", 32); + for (int i = 0; i < 32; i++) + { + if (B00A10_B00A2F.Content[i]) + { + except01.Add($"B00A{(16 + i).ToString("x2").ToUpper()}"); + } + } + + var B01810_B01819 = _melsecMcNet.ReadBool("B01810", 10); + for (int i = 0; i < 10; i++) + { + if (B01810_B01819.Content[i]) + { + except01.Add($"B018{(16 + i).ToString("x2").ToUpper()}"); + } + } + #endregion + + //异常不停机数据 + #region 异常不停机数据 + + var except02 = new List(); + + var L100_L115 = _melsecMcNet.ReadBool("L100", 18); + for (int i = 0; i < 18; i++) + { + if (L100_L115.Content[i]) + { + except02.Add($"L{100 + i}"); + } + } + + var M800_M834 = _melsecMcNet.ReadBool("M800", 35); + for (int i = 0; i < 35; i++) + { + if (M800_M834.Content[i]) + { + except02.Add($"M{800 + i}"); + } + } + + var M860_M874 = _melsecMcNet.ReadBool("M860", 15); + for (int i = 0; i < 15; i++) + { + if (M860_M874.Content[i]) + { + except02.Add($"M{860 + i}"); + } + } + + var SM52 = _melsecMcNet.ReadBool("SM52"); + if (SM52.Content) except02.Add($"SM52"); + + var B0000F = _melsecMcNet.ReadBool("B0000F"); + if (B0000F.Content) except02.Add($"B0000F"); + + var B0050F = _melsecMcNet.ReadBool("B0050F"); + if (B0050F.Content) except02.Add($"B0050F"); + + var B00A0F = _melsecMcNet.ReadBool("B00A0F"); + if (B00A0F.Content) except02.Add($"B00A0F"); + + #endregion + + #region 增加EqmtPub数据 + var product_type = ""; + if (eqmt13.l271 == 1) + product_type = "1"; + else if (eqmt13.l272 == 1) + product_type = "2"; + else if (eqmt13.l273 == 1) + product_type = "3"; + var eqmtBaseInfo = (await _eqmtBaseRep.QueryAsync(x => x.eqmt_id == eqmt13.eqmt_id)).FirstOrDefault(); + var eqmtProductSpecInfo = (await _eqmtProductSpecRep.QueryAsync(x => x.eqmt_id == eqmt13.eqmt_id && x.product_type == product_type)).FirstOrDefault(); + + EqmtPubData newPub = new EqmtPubData(); + + newPub.collect_id = eqmt13.collect_id; + newPub.eqmt_id = eqmt13.eqmt_id; + newPub.product_type = product_type; + newPub.product_type_name = $"{eqmtBaseInfo?.product}({eqmtProductSpecInfo?.product_type_name})"; + newPub.speed = eqmt13.d60; + newPub.total_product_qty = eqmt13.d5032; + newPub.intraday_product_qty = eqmt13.d10398; + newPub.intraday_ok_qty = eqmt13.d10448; + newPub.intraday_ng_qty = eqmt13.d10398 - eqmt13.d10448; + newPub.intraday_yield_rate = eqmt13.d10650; + newPub.intraday_eqmt_run_time = eqmt13.d10700 + eqmt13.d10750; + newPub.intraday_eqmt_work_time = eqmt13.d10700; + newPub.intraday_eqmt_stop_time = eqmt13.d10750; + newPub.eqmt_status = eqmt13.m88; + newPub.eqmt_except_flag = Convert.ToByte(except01.Count() > 0); + newPub.eqmt_alarm_flag = Convert.ToByte(except02.Count() > 0); + #endregion + + #region 报警数据 + var exceptHisList = new List(); + + var exceptList01 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt13.collect_id, + eqmt_id = eqmt13.eqmt_id, + registor_address = r + }; + + exceptHisList.AddRange(exceptList01); + + var exceptList02 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt13.collect_id, + eqmt_id = eqmt13.eqmt_id, + registor_address = r, + }; + + exceptHisList.AddRange(exceptList02); + + + var exceptList = from r in exceptHisList + select new EqmtExcept() + { + collect_id = r.collect_id, + eqmt_id = r.eqmt_id, + registor_address = r.registor_address, + }; + #endregion + + + + #region 写入数据库 + //报工数据 一定要写在 pubData插入之前 + var addData = await CreateEqmtCollectAddData(newPub); + await _eqmtAddDataRep.InsertAsync(addData); + + await _eqmt13Rep.InsertAsync(eqmt13); + + newPub.oee = addData.oee; + await _eqmtPubRep.InsertAsync(newPub); + + //历史数据一直累加 + await _eqmtExceptHisRep.InsertAsync(exceptHisList); + + //实时数据只显示最后的 + await _eqmtExceptRep.DeleteAsync(x => x.eqmt_id == eqmt13.eqmt_id); + await _eqmtExceptRep.InsertAsync(exceptList); + + + #endregion + + } + + } + catch (Exception e) + { + _logger.LogInformation($"读取13线数据 异常 {e.Message}"); + } + finally + { + oTime1.Stop(); //记录结束时间 + _logger.LogInformation($"读取13线数据 完成,耗时{oTime1.Elapsed.TotalSeconds}秒"); + DisConnectPLC(); + } + } + + /// + /// 读取16线数据 + /// 一个端口 + /// + public async Task ReadDataLine16(EquipInput input) + { + Stopwatch oTime1 = new Stopwatch(); + oTime1.Start(); //记录开始时间 + try + { + _logger.LogInformation($"读取16线数据 开始"); + + var eqmt16 = new Eqmt16() + { + eqmt_id = input.eqmt_id, + collect_id = Guid.NewGuid().ToString(), + gmt_create = DateTime.Now, + }; + + var connSuccess = ConnectPLC(input.ip, input.port[0]); + var tryreadData = _melsecMcNet.ReadBool("B500").IsSuccess; //开机 + if (connSuccess && tryreadData) + { + var d10 = _melsecMcNet.ReadInt32("D10", 1); + eqmt16.d10 = d10.Content[0]; + eqmt16.d0 = _melsecMcNet.ReadInt16("D0").Content; + eqmt16.d4000 = _melsecMcNet.ReadInt32("D4000").Content; + eqmt16.d4002 = _melsecMcNet.ReadInt32("D4002").Content; + eqmt16.d4004 = _melsecMcNet.ReadInt32("D4004").Content; + eqmt16.d4006 = _melsecMcNet.ReadInt32("D4006").Content; + eqmt16.d4008 = _melsecMcNet.ReadFloat("D4008").Content.ObjToDecimal(0); + eqmt16.d4022 = _melsecMcNet.ReadInt16("D4022").Content; + eqmt16.d4030 = _melsecMcNet.ReadInt16("D4030").Content; + eqmt16.d4032 = _melsecMcNet.ReadInt16("D4032").Content; + eqmt16.d4042 = _melsecMcNet.ReadInt16("D4042").Content; + eqmt16.d4050 = _melsecMcNet.ReadInt16("D4050").Content; + eqmt16.d4052 = _melsecMcNet.ReadInt16("D4052").Content; + eqmt16.d4062 = _melsecMcNet.ReadInt16("D4062").Content; + eqmt16.d4070 = _melsecMcNet.ReadInt16("D4070").Content; + eqmt16.d4072 = _melsecMcNet.ReadInt16("D4072").Content; + eqmt16.d4080 = _melsecMcNet.ReadFloat("D4080").Content.ObjToDecimal(0); + eqmt16.m40 = Convert.ToByte(_melsecMcNet.ReadBool("B500").Content ? 1 : 0); + eqmt16.m6490 = Convert.ToByte(_melsecMcNet.ReadBool("M6490").Content ? 1 : 0); + + //异常停机数据 + #region 异常停机数据 + + var except01 = new List(); + + var M6001_M6336 = _melsecMcNet.ReadBool("M6001", 336); + for (int i = 0; i < 336; i++) + { + if (M6001_M6336.Content[i]) + { + except01.Add($"M{6001 + i}"); + } + } + + + #endregion + + //异常不停机数据 + #region 异常不停机数据 + + var except02 = new List(); + + var M6501_M6756 = _melsecMcNet.ReadBool("M6501", 256); + for (int i = 0; i < 256; i++) + { + if (M6501_M6756.Content[i]) + { + except02.Add($"M{6501 + i}"); + } + } + + #region QC数据 + var qcList = new Dictionary(); + + var R401_R464 = _melsecMcNet.ReadInt32("R401", 64); + for (int i = 0; i < 64; i++) + { + if (R401_R464.Content[i]>0) + { + qcList.Add($"R{401 + i}", R401_R464.Content[i]); + } + } + #endregion + + + #endregion + + #region 增加EqmtPub数据 + var eqmtBaseInfo = (await _eqmtBaseRep.QueryAsync(x => x.eqmt_id == eqmt16.eqmt_id)).FirstOrDefault(); + var eqmtProductSpecInfo = (await _eqmtProductSpecRep.QueryAsync(x => x.eqmt_id == eqmt16.eqmt_id && x.product_type == eqmt16.d10.ToString())).FirstOrDefault(); + EqmtPubData newPub = new EqmtPubData(); + + newPub.collect_id = eqmt16.collect_id; + newPub.eqmt_id = eqmt16.eqmt_id; + newPub.product_type = eqmt16.d10.ToString(); + newPub.product_type_name = $"{eqmtBaseInfo?.product}({eqmtProductSpecInfo?.product_type_name})"; + newPub.speed = eqmt16.d0; + newPub.total_product_qty = eqmt16.d4000; + newPub.intraday_product_qty = eqmt16.d4002; + newPub.intraday_ok_qty = eqmt16.d4004; + newPub.intraday_ng_qty = eqmt16.d4006; + newPub.intraday_yield_rate = eqmt16.d4008; + newPub.intraday_eqmt_run_time = eqmt16.d4022 * 3600 + eqmt16.d4030 * 60 + eqmt16.d4032; + newPub.intraday_eqmt_work_time = eqmt16.d4042 * 3600 + eqmt16.d4050 * 60 + eqmt16.d4052; + newPub.intraday_eqmt_stop_time = eqmt16.d4062 * 3600 + eqmt16.d4070 * 60 + eqmt16.d4072; + newPub.intraday_eqmt_work_rate = eqmt16.d4080; + newPub.intraday_eqmt_stop_times = 0; + if (eqmt16.m6490==1) + { + newPub.eqmt_status = 2; + } + else if (eqmt16.m40==1) + { + newPub.eqmt_status = 1; + } + else + { + newPub.eqmt_status = 0; + } + newPub.eqmt_except_flag = Convert.ToByte(except01.Count() > 0); + newPub.eqmt_alarm_flag = Convert.ToByte(except02.Count() > 0); + #endregion + + #region 报警数据 + var exceptHisList = new List(); + + //报警停机数据 + var exceptList01 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt16.collect_id, + eqmt_id = eqmt16.eqmt_id, + registor_address = r + }; + exceptHisList.AddRange(exceptList01); + + //报警不停机数据 + var exceptList02 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt16.collect_id, + eqmt_id = eqmt16.eqmt_id, + registor_address = r, + }; + exceptHisList.AddRange(exceptList02); + + //QC数据 + var qcAddList = from r in qcList + select new EqmtExceptHis() + { + collect_id = eqmt16.collect_id, + eqmt_id = eqmt16.eqmt_id, + registor_address = r.Key, + qc_result = r.Value, + }; + exceptHisList.AddRange(qcAddList); + + //异常数据- + var exceptList = from r in exceptHisList + select new EqmtExcept() + { + collect_id = r.collect_id, + eqmt_id = r.eqmt_id, + registor_address = r.registor_address, + qc_result = r.qc_result, + }; + #endregion + + + + #region 写入数据库 + //报工数据 一定要写在 pubData插入之前 + var addData = await CreateEqmtCollectAddData(newPub); + await _eqmtAddDataRep.InsertAsync(addData); + + await _eqmt16Rep.InsertAsync(eqmt16); + + newPub.oee = addData.oee; + await _eqmtPubRep.InsertAsync(newPub); + + //历史数据一直累加 + await _eqmtExceptHisRep.InsertAsync(exceptHisList); + + //实时数据只显示最后的 + await _eqmtExceptRep.DeleteAsync(x => x.eqmt_id == eqmt16.eqmt_id); + await _eqmtExceptRep.InsertAsync(exceptList); + + + #endregion + + } + + } + catch (Exception e) + { + _logger.LogInformation($"读取16线数据 异常 {e.Message}"); + } + finally + { + oTime1.Stop(); //记录结束时间 + _logger.LogInformation($"读取16线数据 完成,耗时{oTime1.Elapsed.TotalSeconds}秒"); + DisConnectPLC(); + } + } + + /// + /// 读取19线数据 + /// 一个端口 + /// + public async Task ReadDataLine19(EquipInput input) + { + Stopwatch oTime1 = new Stopwatch(); + oTime1.Start(); //记录开始时间 + try + { + _logger.LogInformation($"读取19线数据 开始"); + + var eqmt19 = new Eqmt19() + { + eqmt_id = input.eqmt_id, + collect_id = Guid.NewGuid().ToString(), + gmt_create = DateTime.Now, + }; + + var connSuccess = ConnectPLC(input.ip, input.port[0]); + var tryreadData = _melsecMcNet.ReadBool("B500").IsSuccess; //开机 + if (connSuccess && tryreadData) + { + var d10 = _melsecMcNet.ReadInt32("D10", 1); + eqmt19.d10 = d10.Content[0]; + eqmt19.d0 = _melsecMcNet.ReadInt16("D0").Content; + eqmt19.d4000 = _melsecMcNet.ReadInt32("D4000").Content; + eqmt19.d4002 = _melsecMcNet.ReadInt32("D4002").Content; + eqmt19.d4004 = _melsecMcNet.ReadInt32("D4004").Content; + eqmt19.d4006 = _melsecMcNet.ReadInt32("D4006").Content; + eqmt19.d4008 = _melsecMcNet.ReadFloat("D4008").Content.ObjToDecimal(0); + eqmt19.d4022 = _melsecMcNet.ReadInt16("D4022").Content; + eqmt19.d4030 = _melsecMcNet.ReadInt16("D4030").Content; + eqmt19.d4032 = _melsecMcNet.ReadInt16("D4032").Content; + eqmt19.d4042 = _melsecMcNet.ReadInt16("D4042").Content; + eqmt19.d4050 = _melsecMcNet.ReadInt16("D4050").Content; + eqmt19.d4052 = _melsecMcNet.ReadInt16("D4052").Content; + eqmt19.d4062 = _melsecMcNet.ReadInt16("D4062").Content; + eqmt19.d4070 = _melsecMcNet.ReadInt16("D4070").Content; + eqmt19.d4072 = _melsecMcNet.ReadInt16("D4072").Content; + eqmt19.d4080 = _melsecMcNet.ReadFloat("D4080").Content.ObjToDecimal(0); + eqmt19.m40 = Convert.ToByte(_melsecMcNet.ReadBool("B500").Content ? 1 : 0); + eqmt19.m6490 = Convert.ToByte(_melsecMcNet.ReadBool("M6490").Content ? 1 : 0); + + //异常停机数据 + #region 异常停机数据 + + var except01 = new List(); + + var M6001_M6336 = _melsecMcNet.ReadBool("M6001", 336); + for (int i = 0; i < 336; i++) + { + if (M6001_M6336.Content[i]) + { + except01.Add($"M{6001 + i}"); + } + } + + + #endregion + + //异常不停机数据 + #region 异常不停机数据 + + var except02 = new List(); + + var M6501_M6756 = _melsecMcNet.ReadBool("M6501", 256); + for (int i = 0; i < 256; i++) + { + if (M6501_M6756.Content[i]) + { + except02.Add($"M{6501 + i}"); + } + } + + #region QC数据 + var qcList = new Dictionary(); + + var R401_R464 = _melsecMcNet.ReadInt32("R401", 64); + for (int i = 0; i < 64; i++) + { + if (R401_R464.Content[i] > 0) + { + qcList.Add($"R{401 + i}", R401_R464.Content[i]); + } + } + #endregion + + + #endregion + + #region 增加EqmtPub数据 + var eqmtBaseInfo = (await _eqmtBaseRep.QueryAsync(x => x.eqmt_id == eqmt19.eqmt_id)).FirstOrDefault(); + var eqmtProductSpecInfo = (await _eqmtProductSpecRep.QueryAsync(x => x.eqmt_id == eqmt19.eqmt_id && x.product_type == eqmt19.d10.ToString())).FirstOrDefault(); + EqmtPubData newPub = new EqmtPubData(); + + newPub.collect_id = eqmt19.collect_id; + newPub.eqmt_id = eqmt19.eqmt_id; + newPub.product_type = eqmt19.d10.ToString(); + newPub.product_type_name = $"{eqmtBaseInfo?.product}({eqmtProductSpecInfo?.product_type_name})"; + newPub.speed = eqmt19.d0; + newPub.total_product_qty = eqmt19.d4000; + newPub.intraday_product_qty = eqmt19.d4002; + newPub.intraday_ok_qty = eqmt19.d4004; + newPub.intraday_ng_qty = eqmt19.d4006; + newPub.intraday_yield_rate = eqmt19.d4008; + newPub.intraday_eqmt_run_time = eqmt19.d4022 * 3600 + eqmt19.d4030 * 60 + eqmt19.d4032; + newPub.intraday_eqmt_work_time = eqmt19.d4042 * 3600 + eqmt19.d4050 * 60 + eqmt19.d4052; + newPub.intraday_eqmt_stop_time = eqmt19.d4062 * 3600 + eqmt19.d4070 * 60 + eqmt19.d4072; + newPub.intraday_eqmt_work_rate = eqmt19.d4080; + newPub.intraday_eqmt_stop_times = 0; + if (eqmt19.m6490==1) + { + newPub.eqmt_status = 2; + } + else if (eqmt19.m40==1) + { + newPub.eqmt_status = 1; + } + else + { + newPub.eqmt_status = 0; + } + newPub.eqmt_except_flag = Convert.ToByte(except01.Count() > 0); + newPub.eqmt_alarm_flag = Convert.ToByte(except02.Count() > 0); + #endregion + + #region 报警数据 + var exceptHisList = new List(); + + //报警停机数据 + var exceptList01 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt19.collect_id, + eqmt_id = eqmt19.eqmt_id, + registor_address = r + }; + exceptHisList.AddRange(exceptList01); + + //报警不停机数据 + var exceptList02 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt19.collect_id, + eqmt_id = eqmt19.eqmt_id, + registor_address = r, + }; + exceptHisList.AddRange(exceptList02); + + //QC数据 + var qcAddList = from r in qcList + select new EqmtExceptHis() + { + collect_id = eqmt19.collect_id, + eqmt_id = eqmt19.eqmt_id, + registor_address = r.Key, + qc_result = r.Value, + }; + exceptHisList.AddRange(qcAddList); + + //异常数据- + var exceptList = from r in exceptHisList + select new EqmtExcept() + { + collect_id = r.collect_id, + eqmt_id = r.eqmt_id, + registor_address = r.registor_address, + qc_result = r.qc_result, + }; + #endregion + + + + #region 写入数据库 + //报工数据 一定要写在 pubData插入之前 + var addData = await CreateEqmtCollectAddData(newPub); + await _eqmtAddDataRep.InsertAsync(addData); + + await _eqmt19Rep.InsertAsync(eqmt19); + + newPub.oee = addData.oee; + await _eqmtPubRep.InsertAsync(newPub); + + //历史数据一直累加 + await _eqmtExceptHisRep.InsertAsync(exceptHisList); + + //实时数据只显示最后的 + await _eqmtExceptRep.DeleteAsync(x => x.eqmt_id == eqmt19.eqmt_id); + await _eqmtExceptRep.InsertAsync(exceptList); + + + #endregion + + } + + } + catch (Exception e) + { + _logger.LogInformation($"读取19线数据 异常 {e.Message}"); + } + finally + { + oTime1.Stop(); //记录结束时间 + _logger.LogInformation($"读取19线数据 完成,耗时{oTime1.Elapsed.TotalSeconds}秒"); + DisConnectPLC(); + } + } + + /// + /// 读取17线数据 + /// 两个端口 + /// + public async Task ReadDataLine17(EquipInput input) + { + Stopwatch oTime1 = new Stopwatch(); + oTime1.Start(); //记录开始时间 + try + { + _logger.LogInformation($"读取17线数据 开始"); + + var eqmt17 = new Eqmt17() + { + eqmt_id = input.eqmt_id, + collect_id = Guid.NewGuid().ToString(), + gmt_create = DateTime.Now, + }; + var qcList = new Dictionary(); //qc数据 + + //先读取第二个Plc数据 + var connSuccess = ConnectPLC(input.ip, input.port[1]); + var tryreadData = (_melsecMcNet.Read("R622",1)).IsSuccess; //总数量 + if (connSuccess && tryreadData) + { + eqmt17.r622 = _melsecMcNet.ReadInt32("R622").Content; + eqmt17.r602 = _melsecMcNet.ReadInt32("R602").Content; + eqmt17.r600 = _melsecMcNet.ReadInt32("R600").Content; + eqmt17.r604 = _melsecMcNet.ReadInt32("R604").Content; + eqmt17.r612 = _melsecMcNet.ReadFloat("R612").Content.ObjToDecimal(0); + eqmt17.r651 = _melsecMcNet.ReadInt16("R651").Content; + eqmt17.r652 = _melsecMcNet.ReadInt16("R652").Content; + eqmt17.r661 = _melsecMcNet.ReadInt16("R661").Content; + eqmt17.r662 = _melsecMcNet.ReadInt16("R662").Content; + eqmt17.r702 = _melsecMcNet.ReadInt16("R675").Content; + eqmt17.r700 = _melsecMcNet.ReadInt16("R674").Content; + eqmt17.r682 = _melsecMcNet.ReadInt16("R672").Content.ObjToDecimal(0); + eqmt17.r689 = _melsecMcNet.ReadInt16("R689").Content; + + #region QC数据 + + //qc数据 + var R801_R864 = _melsecMcNet.ReadInt32("R801", 64); + for (int i = 0; i < 64; i++) + { + if (R801_R864.Content[i] > 0) + { + qcList.Add($"R{801 + i}", R801_R864.Content[i]); + } + } + #endregion + } + + + //再读取第一个Plc数据 + connSuccess = ConnectPLC(input.ip, input.port[0]); + tryreadData = (_melsecMcNet.Read("M610", 1)).IsSuccess; //开机 + if (connSuccess && tryreadData) + { + eqmt17.d10 = _melsecMcNet.ReadInt32("D10").Content.ToString(); + eqmt17.d0 = _melsecMcNet.ReadInt16("D0").Content; + eqmt17.m610 = Convert.ToByte(_melsecMcNet.ReadBool("M610").Content ? 1 : 0); + eqmt17.m6490 = Convert.ToByte(_melsecMcNet.ReadBool("M6490").Content ? 1 : 0); + + //异常停机数据 + #region 异常停机数据 + var except01 = new List(); + + var M6001_M6336 = _melsecMcNet.ReadBool("M6001", 336); + for (int i = 0; i < 336; i++) + { + if (M6001_M6336.Content[i]) + { + except01.Add($"M{6001 + i}"); + } + } + #endregion + + //异常不停机数据 + #region 异常不停机数据 + var except02 = new List(); + + var M6501_M6756 = _melsecMcNet.ReadBool("M6501", 256); + for (int i = 0; i < 256; i++) + { + if (M6501_M6756.Content[i]) + { + except02.Add($"M{6501 + i}"); + } + } + #endregion + + #region 增加EqmtPub数据 + var eqmtBaseInfo = (await _eqmtBaseRep.QueryAsync(x => x.eqmt_id == eqmt17.eqmt_id)).FirstOrDefault(); + var eqmtProductSpecInfo = (await _eqmtProductSpecRep.QueryAsync(x => x.eqmt_id == eqmt17.eqmt_id && x.product_type == eqmt17.d10.ToString())).FirstOrDefault(); + EqmtPubData newPub = new EqmtPubData(); + + newPub.collect_id = eqmt17.collect_id; + newPub.eqmt_id = eqmt17.eqmt_id; + newPub.product_type = eqmt17.d10.ToString(); + newPub.product_type_name = $"{eqmtBaseInfo?.product}({eqmtProductSpecInfo?.product_type_name})"; + newPub.speed = eqmt17.d0; + newPub.total_product_qty = eqmt17.r622; + newPub.intraday_product_qty = eqmt17.r602; + newPub.intraday_ok_qty = eqmt17.r600; + newPub.intraday_ng_qty = eqmt17.r604; + newPub.intraday_yield_rate = eqmt17.r612; + newPub.intraday_eqmt_run_time = eqmt17.r652 * 3600 + eqmt17.r651 * 60 ; + newPub.intraday_eqmt_work_time = eqmt17.r662 * 3600 + eqmt17.r661 * 60 ; + newPub.intraday_eqmt_stop_time = eqmt17.r700 * 3600 + eqmt17.r702 * 60 ; + newPub.intraday_eqmt_work_rate = eqmt17.r682; + newPub.intraday_eqmt_stop_times = eqmt17.r689; + if (eqmt17.m6490==1) + { + newPub.eqmt_status = 2; + } + else if (eqmt17.m610==1) + { + newPub.eqmt_status = 1; + } + else + { + newPub.eqmt_status = 0; + } + newPub.eqmt_except_flag = Convert.ToByte(except01.Count() > 0); + newPub.eqmt_alarm_flag = Convert.ToByte(except02.Count() > 0); + #endregion + + #region 报警数据 + var exceptHisList = new List(); + + //报警停机数据 + var exceptList01 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt17.collect_id, + eqmt_id = eqmt17.eqmt_id, + registor_address = r + }; + exceptHisList.AddRange(exceptList01); + + //报警不停机数据 + var exceptList02 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt17.collect_id, + eqmt_id = eqmt17.eqmt_id, + registor_address = r, + }; + exceptHisList.AddRange(exceptList02); + + //QC数据 + var qcAddList = from r in qcList + select new EqmtExceptHis() + { + collect_id = eqmt17.collect_id, + eqmt_id = eqmt17.eqmt_id, + registor_address = r.Key, + qc_result = r.Value, + }; + exceptHisList.AddRange(qcAddList); + + //异常数据- + var exceptList = from r in exceptHisList + select new EqmtExcept() + { + collect_id = r.collect_id, + eqmt_id = r.eqmt_id, + registor_address = r.registor_address, + qc_result = r.qc_result, + }; + #endregion + + + + #region 写入数据库 + //报工数据 一定要写在 pubData插入之前 + var addData = await CreateEqmtCollectAddData(newPub); + await _eqmtAddDataRep.InsertAsync(addData); + + await _eqmt17Rep.InsertAsync(eqmt17); + + newPub.oee = addData.oee; + await _eqmtPubRep.InsertAsync(newPub); + + //历史数据一直累加 + await _eqmtExceptHisRep.InsertAsync(exceptHisList); + + //实时数据只显示最后的 + await _eqmtExceptRep.DeleteAsync(x => x.eqmt_id == eqmt17.eqmt_id); + await _eqmtExceptRep.InsertAsync(exceptList); + + + #endregion + + } + + } + catch (Exception e) + { + _logger.LogInformation($"读取17线数据 异常 {e.Message}"); + } + finally + { + oTime1.Stop(); //记录结束时间 + _logger.LogInformation($"读取17线数据 完成,耗时{oTime1.Elapsed.TotalSeconds}秒"); + DisConnectPLC(); + } + } + + /// + /// 读取18线数据 + /// 两个端口 + /// + public async Task ReadDataLine18(EquipInput input) + { + Stopwatch oTime1 = new Stopwatch(); + oTime1.Start(); //记录开始时间 + try + { + _logger.LogInformation($"读取18线数据 开始"); + + var eqmt18 = new Eqmt18() + { + eqmt_id = input.eqmt_id, + collect_id = Guid.NewGuid().ToString(), + gmt_create = DateTime.Now, + }; + var qcList = new Dictionary(); //qc数据 + + //先读取第二个Plc数据 + var connSuccess = ConnectPLC(input.ip, input.port[1]); + var tryreadData = (_melsecMcNet.Read("R622", 1)).IsSuccess; //总数量 + if (connSuccess && tryreadData) + { + eqmt18.r622 = _melsecMcNet.ReadInt32("R622").Content; + eqmt18.r602 = _melsecMcNet.ReadInt32("R602").Content; + eqmt18.r600 = _melsecMcNet.ReadInt32("R600").Content; + eqmt18.r604 = _melsecMcNet.ReadInt32("R604").Content; + eqmt18.r612 = _melsecMcNet.ReadFloat("R612").Content.ObjToDecimal(0); + eqmt18.r651 = _melsecMcNet.ReadInt16("R651").Content; + eqmt18.r652 = _melsecMcNet.ReadInt16("R652").Content; + eqmt18.r661 = _melsecMcNet.ReadInt16("R661").Content; + eqmt18.r662 = _melsecMcNet.ReadInt16("R662").Content; + eqmt18.r702 = _melsecMcNet.ReadInt16("R702").Content; + eqmt18.r700 = _melsecMcNet.ReadInt16("R700").Content; + eqmt18.r682 = _melsecMcNet.ReadFloat("R682").Content.ObjToDecimal(0); + eqmt18.r689 = _melsecMcNet.ReadInt16("R689").Content; + + #region QC数据 + + //qc数据 + var R801_R864 = _melsecMcNet.ReadInt32("R801", 64); + for (int i = 0; i < 64; i++) + { + if (R801_R864.Content[i] > 0) + { + qcList.Add($"R{801 + i}", R801_R864.Content[i]); + } + } + #endregion + } + + + //再读取第一个Plc数据 + connSuccess = ConnectPLC(input.ip, input.port[0]); + tryreadData = (_melsecMcNet.Read("M610", 1)).IsSuccess; //开机 + if (connSuccess && tryreadData) + { + eqmt18.d10 = _melsecMcNet.ReadInt32("D10").Content.ToString(); + eqmt18.d0 = _melsecMcNet.ReadInt16("D0").Content; + eqmt18.m610 = Convert.ToByte(_melsecMcNet.ReadBool("M610").Content ? 1 : 0); + eqmt18.m6490 = Convert.ToByte(_melsecMcNet.ReadBool("M6490").Content ? 1 : 0); + + //异常停机数据 + #region 异常停机数据 + var except01 = new List(); + + var M6001_M6336 = _melsecMcNet.ReadBool("M6001", 336); + for (int i = 0; i < 336; i++) + { + if (M6001_M6336.Content[i]) + { + except01.Add($"M{6001 + i}"); + } + } + #endregion + + //异常不停机数据 + #region 异常不停机数据 + var except02 = new List(); + + var M6501_M6756 = _melsecMcNet.ReadBool("M6501", 256); + for (int i = 0; i < 256; i++) + { + if (M6501_M6756.Content[i]) + { + except02.Add($"M{6501 + i}"); + } + } + #endregion + + #region 增加EqmtPub数据 + var eqmtBaseInfo = (await _eqmtBaseRep.QueryAsync(x => x.eqmt_id == eqmt18.eqmt_id)).FirstOrDefault(); + var eqmtProductSpecInfo = (await _eqmtProductSpecRep.QueryAsync(x => x.eqmt_id == eqmt18.eqmt_id && x.product_type == eqmt18.d10.ToString())).FirstOrDefault(); + EqmtPubData newPub = new EqmtPubData(); + + newPub.collect_id = eqmt18.collect_id; + newPub.eqmt_id = eqmt18.eqmt_id; + newPub.product_type = eqmt18.d10.ToString(); + newPub.product_type_name = $"{eqmtBaseInfo?.product}({eqmtProductSpecInfo?.product_type_name})"; + newPub.speed = eqmt18.d0; + newPub.total_product_qty = eqmt18.r622; + newPub.intraday_product_qty = eqmt18.r602; + newPub.intraday_ok_qty = eqmt18.r600; + newPub.intraday_ng_qty = eqmt18.r604; + newPub.intraday_yield_rate = eqmt18.r612; + newPub.intraday_eqmt_run_time = eqmt18.r652 * 3600 + eqmt18.r651 * 60; + newPub.intraday_eqmt_work_time = eqmt18.r662 * 3600 + eqmt18.r661 * 60; + newPub.intraday_eqmt_stop_time = eqmt18.r700 * 3600 + eqmt18.r702 * 60; + newPub.intraday_eqmt_work_rate = eqmt18.r682; + newPub.intraday_eqmt_stop_times = eqmt18.r689; + if (eqmt18.m6490==1) + { + newPub.eqmt_status = 2; + } + else if (eqmt18.m610==1) + { + newPub.eqmt_status = 1; + } + else + { + newPub.eqmt_status = 0; + } + newPub.eqmt_except_flag = Convert.ToByte(except01.Count() > 0); + newPub.eqmt_alarm_flag = Convert.ToByte(except02.Count() > 0); + #endregion + + #region 报警数据 + var exceptHisList = new List(); + + //报警停机数据 + var exceptList01 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt18.collect_id, + eqmt_id = eqmt18.eqmt_id, + registor_address = r + }; + exceptHisList.AddRange(exceptList01); + + //报警不停机数据 + var exceptList02 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt18.collect_id, + eqmt_id = eqmt18.eqmt_id, + registor_address = r, + }; + exceptHisList.AddRange(exceptList02); + + //QC数据 + var qcAddList = from r in qcList + select new EqmtExceptHis() + { + collect_id = eqmt18.collect_id, + eqmt_id = eqmt18.eqmt_id, + registor_address = r.Key, + qc_result = r.Value, + }; + exceptHisList.AddRange(qcAddList); + + //异常数据- + var exceptList = from r in exceptHisList + select new EqmtExcept() + { + collect_id = r.collect_id, + eqmt_id = r.eqmt_id, + registor_address = r.registor_address, + qc_result = r.qc_result, + }; + #endregion + + + + #region 写入数据库 + //报工数据 一定要写在 pubData插入之前 + var addData = await CreateEqmtCollectAddData(newPub); + await _eqmtAddDataRep.InsertAsync(addData); + + await _eqmt18Rep.InsertAsync(eqmt18); + + newPub.oee = addData.oee; + await _eqmtPubRep.InsertAsync(newPub); + + //历史数据一直累加 + await _eqmtExceptHisRep.InsertAsync(exceptHisList); + + //班次数据,QC,新增异常数据 + //await _eqmtExceptRep.DeleteAsync(x => x.eqmt_id == eqmt18.eqmt_id); + //await _eqmtExceptRep.InsertAsync(exceptList); + await DailyShiftData(newPub, exceptHisList); + + #endregion + + } + + } + catch (Exception e) + { + _logger.LogInformation($"读取18线数据 异常 {e.Message}"); + } + finally + { + oTime1.Stop(); //记录结束时间 + _logger.LogInformation($"读取18线数据 完成,耗时{oTime1.Elapsed.TotalSeconds}秒"); + DisConnectPLC(); + } + } + + + /// + /// 创建间隔采集数据 + /// + /// + private async Task CreateEqmtCollectAddData(EqmtPubData pubData) + { + var eqmtBaseInfo = (await _eqmtBaseRep.QueryAsync(x => x.eqmt_id == pubData.eqmt_id)).FirstOrDefault(); + var eqmtProductSpecInfo = (await _eqmtProductSpecRep.QueryAsync(x => x.eqmt_id == pubData.eqmt_id && x.product_type == pubData.product_type)).FirstOrDefault(); + + var ret = new EqmtCollectAddData() + { + eqmt_id = pubData.eqmt_id, + line_name = eqmtBaseInfo?.line_name, + product = eqmtBaseInfo.product, + product_type = pubData.product_type, + product_type_name = eqmtProductSpecInfo?.product_type_name, + eqmt_status = pubData.eqmt_status, + }; + ret.add_datetime = ret.gmt_create; + + + if (eqmtBaseInfo == null) return ret; + + + //时间开动率 = 开动时间 / 负荷时间(设备收集) + decimal timeRate = 0; + if (pubData.intraday_eqmt_work_time != 0) + { + timeRate = Convert.ToDecimal( pubData.intraday_eqmt_run_time) / Convert.ToDecimal(pubData.intraday_eqmt_work_time); + } + + //性能开动率 = 净开动率×速度开动率 + + //净开动率 = 加工数量×实际加工周期 / 开动时间 速度是按每分钟生产的个数算的,所以开动时间要换算成分钟 + decimal runRate = 0; + if (pubData.speed > 0 && pubData.intraday_eqmt_run_time > 0) + { + runRate = pubData.intraday_product_qty * (1m / pubData.speed) / (pubData.intraday_eqmt_run_time / 60m); + } + + //速度开动率 = 理论加工周期 / 实际加工周期 = (1/理论加工速度) / (1/实际加工速度) = 实际加工速度/理论加工速度 + decimal speedRate = 0; + if (eqmtBaseInfo != null && eqmtBaseInfo.strand_speed != 0) + { + speedRate = pubData.speed.ObjToDecimal() / eqmtBaseInfo.strand_speed.ObjToDecimal(); + } + + //合格品率=合格品数量 / 加工数量(设备收集) + decimal okRate = pubData.intraday_yield_rate; + + //OEE = 时间开动率×性能开动率×合格品率×100% 因为合格率已经有百分比了,所以这里不用8100 + var oee = timeRate * runRate * speedRate * okRate; + + ret.oee = oee; + + //最后一条采集数据 + var lineLastData = (await _eqmtPubRep.QueryAsync(x => x.eqmt_id == pubData.eqmt_id)).OrderByDescending(x => x.gmt_create).FirstOrDefault(); + if (lineLastData == null) + { + ret.add_qty = pubData.intraday_product_qty; + ret.add_qty_ok = pubData.intraday_ok_qty; + ret.add_qty_ng = pubData.intraday_ng_qty; + ret.add_during_time = pubData.intraday_eqmt_run_time; + } + else + { + if (pubData.intraday_product_qty >= lineLastData.intraday_product_qty) + { + //当日产量增加 没换班次 + ret.add_qty = pubData.intraday_product_qty - lineLastData.intraday_product_qty; + ret.add_qty_ok = pubData.intraday_ok_qty - lineLastData.intraday_ok_qty; + ret.add_qty_ng = pubData.intraday_ng_qty - lineLastData.intraday_ng_qty; + + TimeSpan ts = (ret.gmt_create??DateTime.Now) - (lineLastData.gmt_create ?? DateTime.Now); + ret.add_during_time = Convert.ToInt32(ts.TotalSeconds); + } + else + { + //当日产量增加 清零重新生产 + ret.add_qty = pubData.intraday_product_qty; + ret.add_qty_ok = pubData.intraday_ok_qty; + ret.add_qty_ng = pubData.intraday_ng_qty; + ret.add_during_time = pubData.intraday_eqmt_run_time; + } + } + + return ret; + } + + /// + /// 班次产量数据 + /// + /// + private async Task DailyShiftData(EqmtPubData pubData, List exceptList) + { + var eqmtBaseInfo = (await _eqmtBaseRep.QueryAsync(x => x.eqmt_id == pubData.eqmt_id)).FirstOrDefault(); + var eqmtProductSpecInfo = (await _eqmtProductSpecRep.QueryAsync(x => x.eqmt_id == pubData.eqmt_id && x.product_type == pubData.product_type)).FirstOrDefault(); + var eqmtExceptMastList = await _eqmtExceptMasterRep.QueryAsync(x=>x.eqmt_id == pubData.eqmt_id); + + //取最后一个班次信息 + var lastShiftData = (await _eqmtCollectDailyShiftRep.QueryAsync(x => x.eqmt_id == pubData.eqmt_id)) + .OrderByDescending(x=>x.shift_begin_dt) + .FirstOrDefault(); + + var dateNow = DateTime.Now; + EqmtCollectDailyShift newShift = new EqmtCollectDailyShift(); + + //当日开机时间0分钟,直接退出 + if (pubData.intraday_eqmt_run_time == 0) + { + return; + } + + //班次开始时间 + DateTime shiftBeginTime; + //停机次数是否增加 + var isAddException = false; + + if (lastShiftData == null || lastShiftData.intraday_product_qty > pubData.intraday_product_qty) + { + //没有单班数据,或者换班了(当班数据小于前回当班数据) 新建一个班次 + newShift = new EqmtCollectDailyShift() + { + eqmt_id = pubData.eqmt_id, + line_name = eqmtBaseInfo?.line_name, + product = eqmtBaseInfo.product, + product_type = pubData.product_type, + product_type_name = eqmtProductSpecInfo?.product_type_name, + shift_begin_dt = dateNow, + speed = pubData.intraday_product_qty / pubData.intraday_eqmt_run_time * 60, //产量/时间(分钟) + total_product_qty = pubData.total_product_qty, + intraday_product_qty = pubData.intraday_product_qty, + intraday_ok_qty = pubData.intraday_ok_qty, + intraday_ng_qty = pubData.intraday_ng_qty, + intraday_yield_rate = pubData.intraday_yield_rate, + intraday_eqmt_run_time = pubData.intraday_eqmt_run_time, + intraday_eqmt_work_time = pubData.intraday_eqmt_work_time, + intraday_eqmt_stop_time = pubData.intraday_eqmt_stop_time, + intraday_eqmt_work_rate = pubData.intraday_eqmt_work_rate, + intraday_eqmt_stop_times = pubData.intraday_eqmt_stop_times, + + gmt_create = dateNow, + create_time = dateNow, + }; + newShift.oee = CalOEE(pubData, eqmtBaseInfo?.strand_speed, newShift.speed); + + await _eqmtCollectDailyShiftRep.InsertAsync(newShift); + + shiftBeginTime = dateNow; + isAddException = pubData.intraday_eqmt_stop_times > 0; + } + else + { + //生产总数量没变化,直接退出 + if (lastShiftData.total_product_qty == pubData.total_product_qty) + { + return; + } + + lastShiftData.speed = pubData.intraday_product_qty / pubData.intraday_eqmt_run_time * 60; //产量/时间(分钟) + lastShiftData.total_product_qty = pubData.total_product_qty; + lastShiftData.intraday_product_qty = pubData.intraday_product_qty; + lastShiftData.intraday_ok_qty = pubData.intraday_ok_qty; + lastShiftData.intraday_ng_qty = pubData.intraday_ng_qty; + lastShiftData.intraday_yield_rate = pubData.intraday_yield_rate; + lastShiftData.intraday_eqmt_run_time = pubData.intraday_eqmt_run_time; + lastShiftData.intraday_eqmt_work_time = pubData.intraday_eqmt_work_time; + lastShiftData.intraday_eqmt_stop_time = pubData.intraday_eqmt_stop_time; + lastShiftData.intraday_eqmt_work_rate = pubData.intraday_eqmt_work_rate; + lastShiftData.intraday_eqmt_stop_times = pubData.intraday_eqmt_stop_times; + + lastShiftData.oee = CalOEE(pubData, eqmtBaseInfo?.strand_speed, lastShiftData.speed); + lastShiftData.update_time = dateNow; + lastShiftData.gmt_modified = dateNow; + + await _eqmtCollectDailyShiftRep.UpdateAsync(lastShiftData); + + shiftBeginTime = lastShiftData.shift_begin_dt??dateNow; + isAddException = lastShiftData.intraday_eqmt_stop_times < pubData.intraday_eqmt_stop_times; + } + + //停机次数增加 + if (isAddException) + { + var newExceptList = from r in exceptList + //where r. + join m in eqmtExceptMastList on r.registor_address equals m.registor_address into ml + from mname in ml.DefaultIfEmpty() + select new EqmtExcept() + { + shift_begin_dt = shiftBeginTime, + intraday_eqmt_stop_times = pubData.intraday_eqmt_stop_times, + collect_id = pubData.collect_id, + eqmt_id = r.eqmt_id, + registor_address = r.registor_address, + except_type = mname?.except_type, + except_type_name = mname?.except_type_name, + except_message = mname?.except_message, + qc_result = r.qc_result, + }; + var targetTypes = new List() { 1, 2, 3 }; + await _eqmtExceptRep.InsertAsync(newExceptList.Where(x=> targetTypes.Contains(x.except_type??999))); + } + + //更新最新QC数据 + var newQCList = from r in exceptList + //where r. + join m in eqmtExceptMastList on r.registor_address equals m.registor_address into ml + from mname in ml.DefaultIfEmpty() + select new EqmtCollectQCResult() + { + shift_begin_dt = shiftBeginTime, + collect_id = pubData.collect_id, + eqmt_id = r.eqmt_id, + registor_address = r.registor_address, + except_type = mname?.except_type, + except_type_name = mname?.except_type_name, + except_message = mname?.except_message, + qc_result = r.qc_result, + }; + await _eqmtCollectQCResultRep.DeleteAsync(x => x.eqmt_id == pubData.eqmt_id && x.shift_begin_dt == shiftBeginTime); + await _eqmtCollectQCResultRep.InsertAsync(newQCList.Where(x => x.except_type == 0)); + } + + /// + /// 计算OEE + /// + /// + /// + /// + /// + private decimal CalOEE(EqmtPubData pubData,int? standard_speed, int currentSpeed) + { + //时间开动率 = 开动时间 / 负荷时间(设备收集) + decimal timeRate = 0; + if (pubData.intraday_eqmt_work_time != 0) + { + timeRate = Convert.ToDecimal(pubData.intraday_eqmt_run_time) / Convert.ToDecimal(pubData.intraday_eqmt_work_time); + } + + //性能开动率 = 净开动率×速度开动率 + + //净开动率 = 加工数量×实际加工周期 / 开动时间 速度是按每分钟生产的个数算的,所以开动时间要换算成分钟 + decimal runRate = 0; + if (currentSpeed > 0) + { + runRate = pubData.intraday_product_qty * (1m / currentSpeed) / (pubData.intraday_eqmt_run_time / 60m); + } + + //速度开动率 = 理论加工周期 / 实际加工周期 = (1/理论加工速度) / (1/实际加工速度) = 实际加工速度/理论加工速度 + decimal speedRate = 0; + if (standard_speed != 0) + { + speedRate = pubData.speed.ObjToDecimal() / standard_speed.ObjToDecimal(); + } + + //合格品率=合格品数量 / 加工数量(设备收集) + decimal okRate = pubData.intraday_yield_rate; + + //OEE = 时间开动率×性能开动率×合格品率×100% 因为合格率已经有百分比了,所以这里不用8100 + var oee = timeRate * runRate * speedRate * okRate; + + return oee; + } + + #endregion + + #region lgy 新增 + + /// + /// 读取15线数据 + /// + public async Task ReadDataLine15(EquipInput input) + { + Stopwatch oTime1 = new Stopwatch(); + oTime1.Start(); //记录开始时间 + try + { + _logger.LogInformation($"读取15线数据 开始"); + + var eqmt15 = new Eqmt15() + { + eqmt_id = input.eqmt_id, + collect_id = Guid.NewGuid().ToString(), + gmt_create = DateTime.Now, + }; + + var connSuccess = ConnectPLC(input.ip, input.port[0]); + var tryreadData = _melsecMcNet.ReadBool("M88").IsSuccess; + if (connSuccess && tryreadData) + { + //L271-L273 L271=240;L272=290;L273=350 + var L271 = _melsecMcNet.ReadBool("L271", 3); + if (L271.IsSuccess && L271.Content.Length > 0) + { + eqmt15.l271 = Convert.ToByte(L271.Content[0]); + } + if (L271.IsSuccess && L271.Content.Length > 1) + { + eqmt15.l272 = Convert.ToByte(L271.Content[1]); + } + if (L271.IsSuccess && L271.Content.Length > 2) + { + eqmt15.l273 = Convert.ToByte(L271.Content[2]); + } + + eqmt15.d60 = _melsecMcNet.ReadInt16("D60").Content; // 生产速度 + eqmt15.d5030 = _melsecMcNet.ReadInt32("D5030").Content; // 总生产产量 + eqmt15.d5032 = _melsecMcNet.ReadInt32("D5032").Content; // 总成品量 + eqmt15.d10398 = _melsecMcNet.ReadInt32("D10398").Content; // 当日生产产量 + eqmt15.d10448 = _melsecMcNet.ReadInt32("D10448").Content; // 当日成品量 + eqmt15.d10650 = _melsecMcNet.ReadFloat("D10650").Content.ObjToDecimal(0); //当日合格率 + eqmt15.d10700 = _melsecMcNet.ReadInt32("D10700").Content; //当日开机时间 + eqmt15.d10750 = _melsecMcNet.ReadInt32("D10750").Content; //当日停机时间 + eqmt15.m88 = Convert.ToByte(_melsecMcNet.ReadBool("M88").Content); //开机中 + + eqmt15.d10240 = _melsecMcNet.ReadInt32("D10240").Content;//吸水纸X切计数 + eqmt15.d10250 = _melsecMcNet.ReadInt32("D10250").Content;//三层复合X切计数 + eqmt15.d10260 = _melsecMcNet.ReadInt32("D10260").Content;//周切刀计数 + eqmt15.d10270 = _melsecMcNet.ReadInt32("D10270").Content;//无尘纸X切计数 + + eqmt15.d900 = _melsecMcNet.ReadInt16("D900").Content;//实时电压L1L2 + eqmt15.d901 = _melsecMcNet.ReadInt16("D901").Content;//实时电压L2L3 + eqmt15.d902 = _melsecMcNet.ReadInt16("D902").Content;//实时电压L2L1 + eqmt15.d903 = _melsecMcNet.ReadInt16("D903").Content;//实时电压L1N + eqmt15.d904 = _melsecMcNet.ReadInt16("D904").Content;//实时电压L2N + eqmt15.d905 = _melsecMcNet.ReadInt16("D905").Content;//实时电压L3N + eqmt15.d906 = _melsecMcNet.ReadInt16("D906").Content;//平均线电压 + eqmt15.d907 = _melsecMcNet.ReadInt16("D907").Content;//平均相电压 + eqmt15.d908 = _melsecMcNet.ReadInt16("D908").Content;//线电流L1 + eqmt15.d909 = _melsecMcNet.ReadInt16("D909").Content;//线电流L2 + eqmt15.d910 = _melsecMcNet.ReadInt16("D910").Content;//线电流L3 + eqmt15.d911 = _melsecMcNet.ReadInt16("D911").Content;//线电流N + + eqmt15.d950 = _melsecMcNet.ReadUInt16("D950").Content;//总有功电量 + eqmt15.d952 = _melsecMcNet.ReadUInt16("D952").Content;//总无功电量 + eqmt15.d954 = _melsecMcNet.ReadUInt16("D954").Content;//总视在电量 + eqmt15.d10900 = _melsecMcNet.ReadUInt16("D10900").Content;//单日有功电量 + eqmt15.d10950 = _melsecMcNet.ReadUInt16("D10950").Content;//当日无功电量 + eqmt15.d10970 = _melsecMcNet.ReadUInt16("D10970").Content;//单日视在电量 + + //异常停机数据 + #region 异常停机数据 + + var except01 = new List(); + + var M160_M190 = _melsecMcNet.ReadBool("M160", 31); + for (int i = 0; i < 31; i++) + { + if (M160_M190.Content[i]) + { + except01.Add($"M{160 + i}"); + } + } + + var M70 = _melsecMcNet.ReadBool("M70"); + if (M70.Content) except01.Add($"M70"); + + var M700_M745 = _melsecMcNet.ReadBool("M700", 46); + for (int i = 0; i < 46; i++) + { + if (M700_M745.Content[i]) + { + except01.Add($"M{700 + i}"); + } + } + + var M108_M121 = _melsecMcNet.ReadBool("M108", 14); + for (int i = 0; i < 14; i++) + { + if (M108_M121.Content[i]) + { + except01.Add($"M{108 + i}"); + } + } + + var M50 = _melsecMcNet.ReadBool("M50"); + if (M50.Content) except01.Add($"M50"); + + var M380_M394 = _melsecMcNet.ReadBool("M380", 15); + for (int i = 0; i < 15; i++) + { + if (M380_M394.Content[i]) + { + except01.Add($"M{380 + i}"); + } + } + + var B00010_B0002F = _melsecMcNet.ReadBool("B00010", 32); + for (int i = 0; i < 32; i++) + { + if (B00010_B0002F.Content[i]) + { + except01.Add($"B000{(16 + i).ToString("x2").ToUpper()}"); + } + } + + var B00510_B0052F = _melsecMcNet.ReadBool("B00510", 32); + for (int i = 0; i < 32; i++) + { + if (B00510_B0052F.Content[i]) + { + except01.Add($"B005{(16 + i).ToString("x2").ToUpper()}"); + } + } + + var B00A10_B00A2F = _melsecMcNet.ReadBool("B00A10", 32); + for (int i = 0; i < 32; i++) + { + if (B00A10_B00A2F.Content[i]) + { + except01.Add($"B00A{(16 + i).ToString("x2").ToUpper()}"); + } + } + + var B01810_B01819 = _melsecMcNet.ReadBool("B01810", 10); + for (int i = 0; i < 10; i++) + { + if (B01810_B01819.Content[i]) + { + except01.Add($"B018{(16 + i).ToString("x2").ToUpper()}"); + } + } + #endregion + + //异常不停机数据 + #region 异常不停机数据 + + var except02 = new List(); + + var L100_L115 = _melsecMcNet.ReadBool("L100", 18); + for (int i = 0; i < 18; i++) + { + if (L100_L115.Content[i]) + { + except02.Add($"L{100 + i}"); + } + } + + var M800_M834 = _melsecMcNet.ReadBool("M800", 35); + for (int i = 0; i < 35; i++) + { + if (M800_M834.Content[i]) + { + except02.Add($"M{800 + i}"); + } + } + + var M860_M874 = _melsecMcNet.ReadBool("M860", 15); + for (int i = 0; i < 15; i++) + { + if (M860_M874.Content[i]) + { + except02.Add($"M{860 + i}"); + } + } + + var SM52 = _melsecMcNet.ReadBool("SM52"); + if (SM52.Content) except02.Add($"SM52"); + + var B0000F = _melsecMcNet.ReadBool("B0000F"); + if (B0000F.Content) except02.Add($"B0000F"); + + var B0050F = _melsecMcNet.ReadBool("B0050F"); + if (B0050F.Content) except02.Add($"B0050F"); + + var B00A0F = _melsecMcNet.ReadBool("B00A0F"); + if (B00A0F.Content) except02.Add($"B00A0F"); + + #endregion + + #region 增加EqmtPub数据 + var product_type = ""; + if (eqmt15.l271 == 1) + product_type = "1"; + else if (eqmt15.l272 == 1) + product_type = "2"; + else if (eqmt15.l273 == 1) + product_type = "3"; + var eqmtBaseInfo = (await _eqmtBaseRep.QueryAsync(x => x.eqmt_id == eqmt15.eqmt_id)).FirstOrDefault(); + var eqmtProductSpecInfo = (await _eqmtProductSpecRep.QueryAsync(x => x.eqmt_id == eqmt15.eqmt_id && x.product_type == product_type)).FirstOrDefault(); + + EqmtPubData newPub = new EqmtPubData(); + + newPub.collect_id = eqmt15.collect_id; + newPub.eqmt_id = eqmt15.eqmt_id; + newPub.product_type = product_type; + newPub.product_type_name = $"{eqmtBaseInfo?.product}({eqmtProductSpecInfo?.product_type_name})"; + newPub.speed = eqmt15.d60; + newPub.total_product_qty = eqmt15.d5032; + newPub.intraday_product_qty = eqmt15.d10398; + newPub.intraday_ok_qty = eqmt15.d10448; + newPub.intraday_ng_qty = eqmt15.d10398 - eqmt15.d10448; + newPub.intraday_yield_rate = eqmt15.d10650; + newPub.intraday_eqmt_run_time = eqmt15.d10700 + eqmt15.d10750; + newPub.intraday_eqmt_work_time = eqmt15.d10700; + newPub.intraday_eqmt_stop_time = eqmt15.d10750; + newPub.eqmt_status = eqmt15.m88; + newPub.eqmt_except_flag = Convert.ToByte(except01.Count() > 0); + newPub.eqmt_alarm_flag = Convert.ToByte(except02.Count() > 0); + #endregion + + #region 报警数据 + var exceptHisList = new List(); + + var exceptList01 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt15.collect_id, + eqmt_id = eqmt15.eqmt_id, + registor_address = r + }; + + exceptHisList.AddRange(exceptList01); + + var exceptList02 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt15.collect_id, + eqmt_id = eqmt15.eqmt_id, + registor_address = r, + }; + + exceptHisList.AddRange(exceptList02); + + + var exceptList = from r in exceptHisList + select new EqmtExcept() + { + collect_id = r.collect_id, + eqmt_id = r.eqmt_id, + registor_address = r.registor_address, + }; + #endregion + + + + #region 写入数据库 + //报工数据 一定要写在 pubData插入之前 + var addData = await CreateEqmtCollectAddData(newPub); + await _eqmtAddDataRep.InsertAsync(addData); + + await _eqmt15Rep.InsertAsync(eqmt15); + + newPub.oee = addData.oee; + await _eqmtPubRep.InsertAsync(newPub); + + //历史数据一直累加 + await _eqmtExceptHisRep.InsertAsync(exceptHisList); + + //实时数据只显示最后的 + await _eqmtExceptRep.DeleteAsync(x => x.eqmt_id == eqmt15.eqmt_id); + await _eqmtExceptRep.InsertAsync(exceptList); + + + #endregion + + } + + } + catch (Exception e) + { + _logger.LogInformation($"读取15线数据 异常 {e.Message}"); + } + finally + { + oTime1.Stop(); //记录结束时间 + _logger.LogInformation($"读取15线数据 完成,耗时{oTime1.Elapsed.TotalSeconds}秒"); + DisConnectPLC(); + } + } + + /// + /// 读取7线数据 + /// + /// + /// + public async Task ReadDataLine7(EquipInput input) + { + Stopwatch oTime1 = new Stopwatch(); + oTime1.Start(); //记录开始时间 + try + { + _logger.LogInformation($"读取7线数据 开始"); + + var eqmt7 = new Eqmt7() + { + eqmt_id = input.eqmt_id, + collect_id = Guid.NewGuid().ToString(), + gmt_create = DateTime.Now, + }; + + var connSuccess = ConnectPLC(input.ip, input.port[0]); + + if (connSuccess ) + { + + eqmt7.d2000 = _melsecMcNet.ReadInt16("D2000").Content; // 产品型号 + // eqmt7.w10 = _melsecMcNet.ReadInt16("W10").Content; // 生产速度 + eqmt7.w10 = _melsecMcNet.ReadInt32("W10").Content/10; // 生产速度 + + // var d1 = _melsecMcNet.ReadInt32("D2990").Content; // 生产速度 + + eqmt7.d9500 = _melsecMcNet.ReadInt32("D9500").Content; // 总生产产量 + eqmt7.d9502 = _melsecMcNet.ReadInt32("D9502").Content; // 总成品量 + eqmt7.d9554 = _melsecMcNet.ReadInt32("D9554").Content; // 总能耗 + eqmt7.d9504 = _melsecMcNet.ReadInt32("D9504").Content; // 班产量 + eqmt7.d9506 = _melsecMcNet.ReadInt32("D9506").Content; // 班成品 + eqmt7.d9508 = _melsecMcNet.ReadInt32("D9508").Content; // 班废品 + eqmt7.d9510 = _melsecMcNet.ReadInt32("D9510").Content; // 班能耗 + eqmt7.d9522 = _melsecMcNet.ReadInt32("D9522").Content; // 视觉废品 + + eqmt7.d9524 = _melsecMcNet.ReadFloat("D9524").Content.ObjToDecimal(0); //班合格率 + eqmt7.d9526 = _melsecMcNet.ReadFloat("D9526").Content.ObjToDecimal(0); //班开机率 + eqmt7.d9528 = _melsecMcNet.ReadFloat("D9528").Content.ObjToDecimal(0); //班有效率 + eqmt7.d9530 = _melsecMcNet.ReadInt32("D9530").Content; //班OEE + + + + //异常停机数据 + #region 异常停机数据 + /* + var except01 = new List(); + + var M160_M190 = _melsecMcNet.ReadBool("M160", 31); + for (int i = 0; i < 31; i++) + { + if (M160_M190.Content[i]) + { + except01.Add($"M{160 + i}"); + } + } + + var M70 = _melsecMcNet.ReadBool("M70"); + if (M70.Content) except01.Add($"M70"); + + var M700_M745 = _melsecMcNet.ReadBool("M700", 46); + for (int i = 0; i < 46; i++) + { + if (M700_M745.Content[i]) + { + except01.Add($"M{700 + i}"); + } + } + + var M108_M121 = _melsecMcNet.ReadBool("M108", 14); + for (int i = 0; i < 14; i++) + { + if (M108_M121.Content[i]) + { + except01.Add($"M{108 + i}"); + } + } + + var M50 = _melsecMcNet.ReadBool("M50"); + if (M50.Content) except01.Add($"M50"); + + var M380_M394 = _melsecMcNet.ReadBool("M380", 15); + for (int i = 0; i < 15; i++) + { + if (M380_M394.Content[i]) + { + except01.Add($"M{380 + i}"); + } + } + + var B00010_B0002F = _melsecMcNet.ReadBool("B00010", 32); + for (int i = 0; i < 32; i++) + { + if (B00010_B0002F.Content[i]) + { + except01.Add($"B000{(16 + i).ToString("x2").ToUpper()}"); + } + } + + var B00510_B0052F = _melsecMcNet.ReadBool("B00510", 32); + for (int i = 0; i < 32; i++) + { + if (B00510_B0052F.Content[i]) + { + except01.Add($"B005{(16 + i).ToString("x2").ToUpper()}"); + } + } + + var B00A10_B00A2F = _melsecMcNet.ReadBool("B00A10", 32); + for (int i = 0; i < 32; i++) + { + if (B00A10_B00A2F.Content[i]) + { + except01.Add($"B00A{(16 + i).ToString("x2").ToUpper()}"); + } + } + + var B01810_B01819 = _melsecMcNet.ReadBool("B01810", 10); + for (int i = 0; i < 10; i++) + { + if (B01810_B01819.Content[i]) + { + except01.Add($"B018{(16 + i).ToString("x2").ToUpper()}"); + } + }*/ + #endregion + + //异常不停机数据 + #region 异常不停机数据 +/* + var except02 = new List(); + + var L100_L115 = _melsecMcNet.ReadBool("L100", 18); + for (int i = 0; i < 18; i++) + { + if (L100_L115.Content[i]) + { + except02.Add($"L{100 + i}"); + } + } + + var M800_M834 = _melsecMcNet.ReadBool("M800", 35); + for (int i = 0; i < 35; i++) + { + if (M800_M834.Content[i]) + { + except02.Add($"M{800 + i}"); + } + } + + var M860_M874 = _melsecMcNet.ReadBool("M860", 15); + for (int i = 0; i < 15; i++) + { + if (M860_M874.Content[i]) + { + except02.Add($"M{860 + i}"); + } + } + + var SM52 = _melsecMcNet.ReadBool("SM52"); + if (SM52.Content) except02.Add($"SM52"); + + var B0000F = _melsecMcNet.ReadBool("B0000F"); + if (B0000F.Content) except02.Add($"B0000F"); + + var B0050F = _melsecMcNet.ReadBool("B0050F"); + if (B0050F.Content) except02.Add($"B0050F"); + + var B00A0F = _melsecMcNet.ReadBool("B00A0F"); + if (B00A0F.Content) except02.Add($"B00A0F"); + */ + #endregion + + #region 增加EqmtPub数据 + var product_type = "1"; + //if (eqmt7.l271 == 1) + // product_type = "1"; + //else if (eqmt15.l272 == 1) + // product_type = "2"; + //else if (eqmt15.l273 == 1) + // product_type = "3"; + var eqmtBaseInfo = (await _eqmtBaseRep.QueryAsync(x => x.eqmt_id == eqmt7.eqmt_id)).FirstOrDefault(); + var eqmtProductSpecInfo = (await _eqmtProductSpecRep.QueryAsync(x => x.eqmt_id == eqmt7.eqmt_id && x.product_type == product_type)).FirstOrDefault(); + + EqmtPubData newPub = new EqmtPubData(); + + newPub.collect_id = eqmt7.collect_id; + newPub.eqmt_id = eqmt7.eqmt_id; + newPub.product_type = product_type; + newPub.product_type_name = $"{eqmtBaseInfo?.product}({eqmtProductSpecInfo?.product_type_name})"; + + newPub.speed = eqmt7.w10; + newPub.total_product_qty = eqmt7.d9500; + newPub.intraday_product_qty = eqmt7.d9504; + + newPub.intraday_ok_qty = eqmt7.d9506; + newPub.intraday_ng_qty = eqmt7.d9508; + newPub.intraday_yield_rate = eqmt7.d9524; + newPub.intraday_eqmt_work_rate = eqmt7.d9526; + + newPub.oee = eqmt7.d9530; + + #endregion + + #region 报警数据 + /*var exceptHisList = new List();*/ + + /*var exceptList01 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt7.collect_id, + eqmt_id = eqmt7.eqmt_id, + registor_address = r + }; + + exceptHisList.AddRange(exceptList01);*/ + + /*var exceptList02 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt7.collect_id, + eqmt_id = eqmt7.eqmt_id, + registor_address = r, + }; + + exceptHisList.AddRange(exceptList02);*/ + + + /*var exceptList = from r in exceptHisList + select new EqmtExcept() + { + collect_id = r.collect_id, + eqmt_id = r.eqmt_id, + registor_address = r.registor_address, + };*/ + #endregion + + + #region 写入数据库 + //报工数据 一定要写在 pubData插入之前 + var addData = await CreateEqmtCollectAddData(newPub); + await _eqmtAddDataRep.InsertAsync(addData); + + await _eqmt7Rep.InsertAsync(eqmt7); + + //newPub.oee = addData.oee; + await _eqmtPubRep.InsertAsync(newPub); + + //历史数据一直累加 + //await _eqmtExceptHisRep.InsertAsync(exceptHisList); + + //实时数据只显示最后的 + //await _eqmtExceptRep.DeleteAsync(x => x.eqmt_id == eqmt7.eqmt_id); + //await _eqmtExceptRep.InsertAsync(exceptList); + + #endregion + } + + } + catch (Exception e) + { + _logger.LogInformation($"读取7线数据 异常 {e.Message}"); + } + finally + { + oTime1.Stop(); //记录结束时间 + _logger.LogInformation($"读取7线数据 完成,耗时{oTime1.Elapsed.TotalSeconds}秒"); + DisConnectPLC(); + } + } + + /// + /// 读取2线数据 + /// + /// + /// + public async Task ReadDataLine2(EquipInput input) + { + Stopwatch oTime1 = new Stopwatch(); + oTime1.Start(); //记录开始时间 + try + { + _logger.LogInformation($"读取2线数据 开始"); + + var eqmt2 = new Eqmt2() + { + eqmt_id = input.eqmt_id, + collect_id = Guid.NewGuid().ToString(), + gmt_create = DateTime.Now, + }; + + var connSuccess = ConnectPLC(input.ip, input.port[0]); + + if (connSuccess) + { + + eqmt2.d2000 = _melsecMcNet.ReadInt16("D2000").Content; // 产品型号 + eqmt2.w10 = _melsecMcNet.ReadInt16("W10").Content/10; // 生产速度 + eqmt2.d9500 = _melsecMcNet.ReadInt32("D9500").Content; // 总生产产量 + eqmt2.d9502 = _melsecMcNet.ReadInt32("D9502").Content; // 总成品量 + eqmt2.d9554 = _melsecMcNet.ReadInt32("D9554").Content; // 总能耗 + eqmt2.d9504 = _melsecMcNet.ReadInt32("D9504").Content; // 班产量 + eqmt2.d9506 = _melsecMcNet.ReadInt32("D9506").Content; // 班成品 + eqmt2.d9508 = _melsecMcNet.ReadInt32("D9508").Content; // 班废品 + eqmt2.d9510 = _melsecMcNet.ReadInt32("D9510").Content; // 班能耗 + eqmt2.d9522 = _melsecMcNet.ReadInt32("D9522").Content; // 视觉废品 + + eqmt2.d9524 = _melsecMcNet.ReadFloat("D9524").Content.ObjToDecimal(0); //班合格率 + eqmt2.d9526 = _melsecMcNet.ReadFloat("D9526").Content.ObjToDecimal(0); //班开机率 + eqmt2.d9528 = _melsecMcNet.ReadFloat("D9528").Content.ObjToDecimal(0); //班有效率 + eqmt2.d9530 = _melsecMcNet.ReadInt32("D9530").Content; //班OEE + + + + //异常停机数据 + #region 异常停机数据 + /* + var except01 = new List(); + + var M160_M190 = _melsecMcNet.ReadBool("M160", 31); + for (int i = 0; i < 31; i++) + { + if (M160_M190.Content[i]) + { + except01.Add($"M{160 + i}"); + } + } + + var M70 = _melsecMcNet.ReadBool("M70"); + if (M70.Content) except01.Add($"M70"); + + var M700_M745 = _melsecMcNet.ReadBool("M700", 46); + for (int i = 0; i < 46; i++) + { + if (M700_M745.Content[i]) + { + except01.Add($"M{700 + i}"); + } + } + + var M108_M121 = _melsecMcNet.ReadBool("M108", 14); + for (int i = 0; i < 14; i++) + { + if (M108_M121.Content[i]) + { + except01.Add($"M{108 + i}"); + } + } + + var M50 = _melsecMcNet.ReadBool("M50"); + if (M50.Content) except01.Add($"M50"); + + var M380_M394 = _melsecMcNet.ReadBool("M380", 15); + for (int i = 0; i < 15; i++) + { + if (M380_M394.Content[i]) + { + except01.Add($"M{380 + i}"); + } + } + + var B00010_B0002F = _melsecMcNet.ReadBool("B00010", 32); + for (int i = 0; i < 32; i++) + { + if (B00010_B0002F.Content[i]) + { + except01.Add($"B000{(16 + i).ToString("x2").ToUpper()}"); + } + } + + var B00510_B0052F = _melsecMcNet.ReadBool("B00510", 32); + for (int i = 0; i < 32; i++) + { + if (B00510_B0052F.Content[i]) + { + except01.Add($"B005{(16 + i).ToString("x2").ToUpper()}"); + } + } + + var B00A10_B00A2F = _melsecMcNet.ReadBool("B00A10", 32); + for (int i = 0; i < 32; i++) + { + if (B00A10_B00A2F.Content[i]) + { + except01.Add($"B00A{(16 + i).ToString("x2").ToUpper()}"); + } + } + + var B01810_B01819 = _melsecMcNet.ReadBool("B01810", 10); + for (int i = 0; i < 10; i++) + { + if (B01810_B01819.Content[i]) + { + except01.Add($"B018{(16 + i).ToString("x2").ToUpper()}"); + } + }*/ + #endregion + + //异常不停机数据 + #region 异常不停机数据 + /* + var except02 = new List(); + + var L100_L115 = _melsecMcNet.ReadBool("L100", 18); + for (int i = 0; i < 18; i++) + { + if (L100_L115.Content[i]) + { + except02.Add($"L{100 + i}"); + } + } + + var M800_M834 = _melsecMcNet.ReadBool("M800", 35); + for (int i = 0; i < 35; i++) + { + if (M800_M834.Content[i]) + { + except02.Add($"M{800 + i}"); + } + } + + var M860_M874 = _melsecMcNet.ReadBool("M860", 15); + for (int i = 0; i < 15; i++) + { + if (M860_M874.Content[i]) + { + except02.Add($"M{860 + i}"); + } + } + + var SM52 = _melsecMcNet.ReadBool("SM52"); + if (SM52.Content) except02.Add($"SM52"); + + var B0000F = _melsecMcNet.ReadBool("B0000F"); + if (B0000F.Content) except02.Add($"B0000F"); + + var B0050F = _melsecMcNet.ReadBool("B0050F"); + if (B0050F.Content) except02.Add($"B0050F"); + + var B00A0F = _melsecMcNet.ReadBool("B00A0F"); + if (B00A0F.Content) except02.Add($"B00A0F"); + */ + #endregion + + #region 增加EqmtPub数据 + var product_type = "1"; + //if (eqmt7.l271 == 1) + // product_type = "1"; + //else if (eqmt15.l272 == 1) + // product_type = "2"; + //else if (eqmt15.l273 == 1) + // product_type = "3"; + var eqmtBaseInfo = (await _eqmtBaseRep.QueryAsync(x => x.eqmt_id == eqmt2.eqmt_id)).FirstOrDefault(); + var eqmtProductSpecInfo = (await _eqmtProductSpecRep.QueryAsync(x => x.eqmt_id == eqmt2.eqmt_id && x.product_type == product_type)).FirstOrDefault(); + + EqmtPubData newPub = new EqmtPubData(); + + newPub.collect_id = eqmt2.collect_id; + newPub.eqmt_id = eqmt2.eqmt_id; + newPub.product_type = product_type; + newPub.product_type_name = $"{eqmtBaseInfo?.product}({eqmtProductSpecInfo?.product_type_name})"; + + newPub.speed = eqmt2.w10; + newPub.total_product_qty = eqmt2.d9500; + newPub.intraday_product_qty = eqmt2.d9504; + + newPub.intraday_ok_qty = eqmt2.d9506; + newPub.intraday_ng_qty = eqmt2.d9508; + newPub.intraday_yield_rate = eqmt2.d9524; + newPub.intraday_eqmt_work_rate = eqmt2.d9526; + + newPub.oee = eqmt2.d9530; + + #endregion + + #region 报警数据 + /*var exceptHisList = new List();*/ + + /*var exceptList01 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt7.collect_id, + eqmt_id = eqmt7.eqmt_id, + registor_address = r + }; + + exceptHisList.AddRange(exceptList01);*/ + + /*var exceptList02 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt7.collect_id, + eqmt_id = eqmt7.eqmt_id, + registor_address = r, + }; + + exceptHisList.AddRange(exceptList02);*/ + + + /*var exceptList = from r in exceptHisList + select new EqmtExcept() + { + collect_id = r.collect_id, + eqmt_id = r.eqmt_id, + registor_address = r.registor_address, + };*/ + #endregion + + + #region 写入数据库 + //报工数据 一定要写在 pubData插入之前 + var addData = await CreateEqmtCollectAddData(newPub); + await _eqmtAddDataRep.InsertAsync(addData); + + await _eqmt2Rep.InsertAsync(eqmt2); + + //newPub.oee = addData.oee; + await _eqmtPubRep.InsertAsync(newPub); + + //历史数据一直累加 + //await _eqmtExceptHisRep.InsertAsync(exceptHisList); + + //实时数据只显示最后的 + //await _eqmtExceptRep.DeleteAsync(x => x.eqmt_id == eqmt7.eqmt_id); + //await _eqmtExceptRep.InsertAsync(exceptList); + + #endregion + } + + } + catch (Exception e) + { + _logger.LogInformation($"读取2线数据 异常 {e.Message}"); + } + finally + { + oTime1.Stop(); //记录结束时间 + _logger.LogInformation($"读取2线数据 完成,耗时{oTime1.Elapsed.TotalSeconds}秒"); + DisConnectPLC(); + } + } + + + /// + /// 读取20线数据 + /// + /// + /// + public async Task ReadDataLine20(EquipInput input) + { + Stopwatch oTime1 = new Stopwatch(); + oTime1.Start(); //记录开始时间 + try + { + _logger.LogInformation($"读取20线数据 开始"); + + var eqmt20 = new Eqmt20() + { + eqmt_id = input.eqmt_id, + collect_id = Guid.NewGuid().ToString(), + gmt_create = DateTime.Now, + }; + + var connSuccess = ConnectPLC(input.ip, input.port[0]); + + if (connSuccess) + { + + eqmt20.d2000 = _melsecMcNet.ReadInt16("D2000").Content; // 产品型号 + eqmt20.w10 = _melsecMcNet.ReadInt16("W10").Content/10; // 生产速度 + eqmt20.d9500 = _melsecMcNet.ReadInt32("D9500").Content; // 总生产产量 + eqmt20.d9502 = _melsecMcNet.ReadInt32("D9502").Content; // 总成品量 + eqmt20.d9554 = _melsecMcNet.ReadInt32("D9554").Content; // 总能耗 + eqmt20.d9504 = _melsecMcNet.ReadInt32("D9504").Content; // 班产量 + eqmt20.d9506 = _melsecMcNet.ReadInt32("D9506").Content; // 班成品 + eqmt20.d9508 = _melsecMcNet.ReadInt32("D9508").Content; // 班废品 + eqmt20.d9510 = _melsecMcNet.ReadInt32("D9510").Content; // 班能耗 + eqmt20.d9522 = _melsecMcNet.ReadInt32("D9522").Content; // 视觉废品 + + eqmt20.d9524 = _melsecMcNet.ReadFloat("D9524").Content.ObjToDecimal(0); //班合格率 + eqmt20.d9526 = _melsecMcNet.ReadFloat("D9526").Content.ObjToDecimal(0); //班开机率 + eqmt20.d9528 = _melsecMcNet.ReadFloat("D9528").Content.ObjToDecimal(0); //班有效率 + eqmt20.d9530 = _melsecMcNet.ReadInt32("D9530").Content; //班OEE + + + + //异常停机数据 + #region 异常停机数据 + /* + var except01 = new List(); + + var M160_M190 = _melsecMcNet.ReadBool("M160", 31); + for (int i = 0; i < 31; i++) + { + if (M160_M190.Content[i]) + { + except01.Add($"M{160 + i}"); + } + } + + var M70 = _melsecMcNet.ReadBool("M70"); + if (M70.Content) except01.Add($"M70"); + + var M700_M745 = _melsecMcNet.ReadBool("M700", 46); + for (int i = 0; i < 46; i++) + { + if (M700_M745.Content[i]) + { + except01.Add($"M{700 + i}"); + } + } + + var M108_M121 = _melsecMcNet.ReadBool("M108", 14); + for (int i = 0; i < 14; i++) + { + if (M108_M121.Content[i]) + { + except01.Add($"M{108 + i}"); + } + } + + var M50 = _melsecMcNet.ReadBool("M50"); + if (M50.Content) except01.Add($"M50"); + + var M380_M394 = _melsecMcNet.ReadBool("M380", 15); + for (int i = 0; i < 15; i++) + { + if (M380_M394.Content[i]) + { + except01.Add($"M{380 + i}"); + } + } + + var B00010_B0002F = _melsecMcNet.ReadBool("B00010", 32); + for (int i = 0; i < 32; i++) + { + if (B00010_B0002F.Content[i]) + { + except01.Add($"B000{(16 + i).ToString("x2").ToUpper()}"); + } + } + + var B00510_B0052F = _melsecMcNet.ReadBool("B00510", 32); + for (int i = 0; i < 32; i++) + { + if (B00510_B0052F.Content[i]) + { + except01.Add($"B005{(16 + i).ToString("x2").ToUpper()}"); + } + } + + var B00A10_B00A2F = _melsecMcNet.ReadBool("B00A10", 32); + for (int i = 0; i < 32; i++) + { + if (B00A10_B00A2F.Content[i]) + { + except01.Add($"B00A{(16 + i).ToString("x2").ToUpper()}"); + } + } + + var B01810_B01819 = _melsecMcNet.ReadBool("B01810", 10); + for (int i = 0; i < 10; i++) + { + if (B01810_B01819.Content[i]) + { + except01.Add($"B018{(16 + i).ToString("x2").ToUpper()}"); + } + }*/ + #endregion + + //异常不停机数据 + #region 异常不停机数据 + /* + var except02 = new List(); + + var L100_L115 = _melsecMcNet.ReadBool("L100", 18); + for (int i = 0; i < 18; i++) + { + if (L100_L115.Content[i]) + { + except02.Add($"L{100 + i}"); + } + } + + var M800_M834 = _melsecMcNet.ReadBool("M800", 35); + for (int i = 0; i < 35; i++) + { + if (M800_M834.Content[i]) + { + except02.Add($"M{800 + i}"); + } + } + + var M860_M874 = _melsecMcNet.ReadBool("M860", 15); + for (int i = 0; i < 15; i++) + { + if (M860_M874.Content[i]) + { + except02.Add($"M{860 + i}"); + } + } + + var SM52 = _melsecMcNet.ReadBool("SM52"); + if (SM52.Content) except02.Add($"SM52"); + + var B0000F = _melsecMcNet.ReadBool("B0000F"); + if (B0000F.Content) except02.Add($"B0000F"); + + var B0050F = _melsecMcNet.ReadBool("B0050F"); + if (B0050F.Content) except02.Add($"B0050F"); + + var B00A0F = _melsecMcNet.ReadBool("B00A0F"); + if (B00A0F.Content) except02.Add($"B00A0F"); + */ + #endregion + + #region 增加EqmtPub数据 + var product_type = "1"; + //if (eqmt7.l271 == 1) + // product_type = "1"; + //else if (eqmt15.l272 == 1) + // product_type = "2"; + //else if (eqmt15.l273 == 1) + // product_type = "3"; + var eqmtBaseInfo = (await _eqmtBaseRep.QueryAsync(x => x.eqmt_id == eqmt20.eqmt_id)).FirstOrDefault(); + var eqmtProductSpecInfo = (await _eqmtProductSpecRep.QueryAsync(x => x.eqmt_id == eqmt20.eqmt_id && x.product_type == product_type)).FirstOrDefault(); + + EqmtPubData newPub = new EqmtPubData(); + + newPub.collect_id = eqmt20.collect_id; + newPub.eqmt_id = eqmt20.eqmt_id; + newPub.product_type = product_type; + newPub.product_type_name = $"{eqmtBaseInfo?.product}({eqmtProductSpecInfo?.product_type_name})"; + + newPub.speed = eqmt20.w10; + newPub.total_product_qty = eqmt20.d9500; + newPub.intraday_product_qty = eqmt20.d9504; + + newPub.intraday_ok_qty = eqmt20.d9506; + newPub.intraday_ng_qty = eqmt20.d9508; + newPub.intraday_yield_rate = eqmt20.d9524; + newPub.intraday_eqmt_work_rate = eqmt20.d9526; + + newPub.oee = eqmt20.d9530; + + #endregion + + #region 报警数据 + /*var exceptHisList = new List();*/ + + /*var exceptList01 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt7.collect_id, + eqmt_id = eqmt7.eqmt_id, + registor_address = r + }; + + exceptHisList.AddRange(exceptList01);*/ + + /*var exceptList02 = from r in except01 + select new EqmtExceptHis() + { + collect_id = eqmt7.collect_id, + eqmt_id = eqmt7.eqmt_id, + registor_address = r, + }; + + exceptHisList.AddRange(exceptList02);*/ + + + /*var exceptList = from r in exceptHisList + select new EqmtExcept() + { + collect_id = r.collect_id, + eqmt_id = r.eqmt_id, + registor_address = r.registor_address, + };*/ + #endregion + + + #region 写入数据库 + //报工数据 一定要写在 pubData插入之前 + var addData = await CreateEqmtCollectAddData(newPub); + await _eqmtAddDataRep.InsertAsync(addData); + + await _eqmt20Rep.InsertAsync(eqmt20); + + //newPub.oee = addData.oee; + await _eqmtPubRep.InsertAsync(newPub); + + //历史数据一直累加 + //await _eqmtExceptHisRep.InsertAsync(exceptHisList); + + //实时数据只显示最后的 + //await _eqmtExceptRep.DeleteAsync(x => x.eqmt_id == eqmt7.eqmt_id); + //await _eqmtExceptRep.InsertAsync(exceptList); + + #endregion + } + + } + catch (Exception e) + { + _logger.LogInformation($"读取20线数据 异常 {e.Message}"); + } + finally + { + oTime1.Stop(); //记录结束时间 + _logger.LogInformation($"读取20线数据 完成,耗时{oTime1.Elapsed.TotalSeconds}秒"); + DisConnectPLC(); + } + } + + #endregion + + } +} diff --git a/yuhong_plc/zzz.Services/Sys/OperateLogs/IOperateLogServices.cs b/yuhong_plc/zzz.Services/Sys/OperateLogs/IOperateLogServices.cs new file mode 100644 index 0000000..98a197a --- /dev/null +++ b/yuhong_plc/zzz.Services/Sys/OperateLogs/IOperateLogServices.cs @@ -0,0 +1,13 @@ +using zzz.Model.Entity; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.Sys.OperateLogs +{ + public interface IOperateLogServices : IBaseServices + { + } +} diff --git a/yuhong_plc/zzz.Services/Sys/OperateLogs/OperateLogServices.cs b/yuhong_plc/zzz.Services/Sys/OperateLogs/OperateLogServices.cs new file mode 100644 index 0000000..26d9f30 --- /dev/null +++ b/yuhong_plc/zzz.Services/Sys/OperateLogs/OperateLogServices.cs @@ -0,0 +1,18 @@ +using zzz.Model.Entity; +using zzz.Repository; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.Sys.OperateLogs +{ + public class OperateLogServices : BaseServices, IOperateLogServices + { + public OperateLogServices(IBaseRepository baseRepository) : base(baseRepository) + { + + } + } +} diff --git a/yuhong_plc/zzz.Services/Sys/TasksQzs/Dtos/DtoViewTaskQz.cs b/yuhong_plc/zzz.Services/Sys/TasksQzs/Dtos/DtoViewTaskQz.cs new file mode 100644 index 0000000..2e1b724 --- /dev/null +++ b/yuhong_plc/zzz.Services/Sys/TasksQzs/Dtos/DtoViewTaskQz.cs @@ -0,0 +1,74 @@ +using zzz.Model.ViewModels; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.Sys.TasksQzs.Dtos +{ + /// + /// 定时任务 列表 + /// + public class DtoViewTaskQz + { + /// + /// 任务名称 + /// + public string Name { get; set; } + /// + /// 任务分组 + /// + public string JobGroup { get; set; } + /// + /// 任务运行时间表达式 + /// + public string Cron { get; set; } + /// + /// 任务所在DLL对应的程序集名称 + /// + public string AssemblyName { get; set; } + /// + /// 任务所在类 + /// + public string ClassName { get; set; } + /// + /// 任务描述 + /// + public string Remark { get; set; } + /// + /// 执行次数 + /// + public int RunTimes { get; set; } + /// + /// 开始时间 + /// + public DateTime? BeginTime { get; set; } + /// + /// 结束时间 + /// + public DateTime? EndTime { get; set; } + /// + /// 触发器类型(0、simple 1、cron) + /// + public int TriggerType { get; set; } + /// + /// 执行间隔时间, 秒为单位 + /// + public int IntervalSecond { get; set; } + /// + /// 循环执行次数 + /// + public int CycleRunTimes { get; set; } + /// + /// 是否启动 + /// + public bool IsStart { get; set; } + /// + /// 执行传参 + /// + public string JobParams { get; set; } + + public List Triggers { get; set; } + } +} diff --git a/yuhong_plc/zzz.Services/Sys/TasksQzs/Dtos/QuartzReflectionViewModel.cs b/yuhong_plc/zzz.Services/Sys/TasksQzs/Dtos/QuartzReflectionViewModel.cs new file mode 100644 index 0000000..d1a3108 --- /dev/null +++ b/yuhong_plc/zzz.Services/Sys/TasksQzs/Dtos/QuartzReflectionViewModel.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.Sys.TasksQzs.Dtos +{ + /// + /// 实现IJob的类 + /// + public class QuartzReflectionViewModel + { + /// + /// 命名空间 + /// + public string nameSpace { get; set; } + /// + /// 类名 + /// + public string nameClass { get; set; } + /// + /// 备注 + /// + public string remark { get; set; } + } +} diff --git a/yuhong_plc/zzz.Services/Sys/TasksQzs/ITasksQzServices.cs b/yuhong_plc/zzz.Services/Sys/TasksQzs/ITasksQzServices.cs new file mode 100644 index 0000000..0084003 --- /dev/null +++ b/yuhong_plc/zzz.Services/Sys/TasksQzs/ITasksQzServices.cs @@ -0,0 +1,13 @@ +using zzz.Model.Entity; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.Sys.TasksQzs +{ + public interface ITasksQzServices : IBaseServices + { + } +} diff --git a/yuhong_plc/zzz.Services/Sys/TasksQzs/TasksQzServices.cs b/yuhong_plc/zzz.Services/Sys/TasksQzs/TasksQzServices.cs new file mode 100644 index 0000000..b5d9f54 --- /dev/null +++ b/yuhong_plc/zzz.Services/Sys/TasksQzs/TasksQzServices.cs @@ -0,0 +1,19 @@ +using zzz.Model.Entity; +using zzz.Repository; +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.Sys.TasksQzs +{ + public class TasksQzServices : BaseServices, ITasksQzServices + { + public TasksQzServices(IBaseRepository baseRepository):base(baseRepository) + { + + } + } +} diff --git a/yuhong_plc/zzz.Services/Sys/Tests/Dtos/AddOrUpdTestInput.cs b/yuhong_plc/zzz.Services/Sys/Tests/Dtos/AddOrUpdTestInput.cs new file mode 100644 index 0000000..6fdc90e --- /dev/null +++ b/yuhong_plc/zzz.Services/Sys/Tests/Dtos/AddOrUpdTestInput.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace zzz.Services.Sys.Tests.Dtos +{ + /// + /// 计量单位 新增/编辑Dto + /// + public class AddOrUpdTestInput + { + public DtoEditTest Entity { get; set; } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Services/Sys/Tests/Dtos/Class1.cs b/yuhong_plc/zzz.Services/Sys/Tests/Dtos/Class1.cs new file mode 100644 index 0000000..955dae6 --- /dev/null +++ b/yuhong_plc/zzz.Services/Sys/Tests/Dtos/Class1.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.Sys.Tests.Dtos +{ + internal class Class1 + { + } +} diff --git a/yuhong_plc/zzz.Services/Sys/Tests/Dtos/DtoEditTest.cs b/yuhong_plc/zzz.Services/Sys/Tests/Dtos/DtoEditTest.cs new file mode 100644 index 0000000..45bb210 --- /dev/null +++ b/yuhong_plc/zzz.Services/Sys/Tests/Dtos/DtoEditTest.cs @@ -0,0 +1,61 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.Sys.Tests.Dtos +{ + /// + /// 计量单位 编辑Dto + /// + public class DtoEditTest + { + /// + /// 主键 + /// + public long? Id { get; set; } + + /// + /// 更新时间 + /// + public virtual DateTime? UpdatedTime { get; set; } + + /// + /// 文字1 + /// + public string Txt1 { get; set; } + /// + /// 文字1 + /// + public double Flo1 { get; set; } + + /// + /// 单位编码 + /// + public string UnitCode { get; set; } + + /// + /// 单位名称 + /// + public string UnitName { get; set; } + + /// + /// 助记符 + /// + public string UnitHelpCode { get; set; } + + /// + /// 排序 + /// + public int? Sort { get; set; } + + /// + /// 备注 + /// + public string Remark { get; set; } + + + + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Services/Sys/Tests/Dtos/DtoEditTest2.cs b/yuhong_plc/zzz.Services/Sys/Tests/Dtos/DtoEditTest2.cs new file mode 100644 index 0000000..c4923d1 --- /dev/null +++ b/yuhong_plc/zzz.Services/Sys/Tests/Dtos/DtoEditTest2.cs @@ -0,0 +1,38 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.Sys.Tests.Dtos +{ + /// + /// 计量单位 编辑Dto + /// + public class DtoEditTest2 + { + /// + /// 主键 + /// + public long? Id { get; set; } + + /// + /// 更新时间 + /// + public virtual DateTime? UpdatedTime { get; set; } + + /// + /// 文字1 + /// + public string Txt1 { get; set; } + /// + /// 文字1 + /// + public double Flo1 { get; set; } + + + + + + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Services/Sys/Tests/Dtos/DtoViewTest.cs b/yuhong_plc/zzz.Services/Sys/Tests/Dtos/DtoViewTest.cs new file mode 100644 index 0000000..8859bd0 --- /dev/null +++ b/yuhong_plc/zzz.Services/Sys/Tests/Dtos/DtoViewTest.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.Sys.Tests.Dtos +{ + /// + /// 计量单位 显示Dto + /// + public class DtoViewTest + { + /// + /// 主键 + /// + public long Id { get; set; } + + /// + /// 更新时间 + /// + public virtual DateTime? UpdatedTime { get; set; } + + /// + /// 单位编码 + /// + public string UnitCode { get; set; } + + /// + /// 单位名称 + /// + public string UnitName { get; set; } + + /// + /// 助记符 + /// + public string UnitHelpCode { get; set; } + + /// + /// 排序 + /// + public int? Sort { get; set; } + + /// + /// 备注 + /// + public string Remark { get; set; } + + + } +} diff --git a/yuhong_plc/zzz.Services/Sys/Tests/Dtos/GetPageListTestInput.cs b/yuhong_plc/zzz.Services/Sys/Tests/Dtos/GetPageListTestInput.cs new file mode 100644 index 0000000..f34e42c --- /dev/null +++ b/yuhong_plc/zzz.Services/Sys/Tests/Dtos/GetPageListTestInput.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.Sys.Tests.Dtos +{ + /// + /// 计量单位 检索条件Dto + /// + public class GetPageListTestInput: PageInputBase + { + + + /// + /// 单位编码 + /// + public string UnitCode { get; set; } + + /// + /// 单位名称 + /// + public string UnitName { get; set; } + + /// + /// 助记符 + /// + public string UnitHelpCode { get; set; } + + /// + /// 备注 + /// + public string Remark { get; set; } + + } +} diff --git a/yuhong_plc/zzz.Services/Sys/Tests/Dtos/GetTestOutput.cs b/yuhong_plc/zzz.Services/Sys/Tests/Dtos/GetTestOutput.cs new file mode 100644 index 0000000..c96fb69 --- /dev/null +++ b/yuhong_plc/zzz.Services/Sys/Tests/Dtos/GetTestOutput.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.Sys.Tests.Dtos +{ + /// + /// + /// + public class GetTestOutput + { + /// + /// + /// + public DtoEditTest Entity { get; set; } = new DtoEditTest(); + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Services/Sys/Tests/ITestServices.cs b/yuhong_plc/zzz.Services/Sys/Tests/ITestServices.cs new file mode 100644 index 0000000..da7e408 --- /dev/null +++ b/yuhong_plc/zzz.Services/Sys/Tests/ITestServices.cs @@ -0,0 +1,59 @@ +using zzz.Model; +using zzz.Model.Entity; +using zzz.Services.Sys.Tests.Dtos; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.Sys.Tests +{ + /// + /// + /// + public interface ITestServices: IBaseServices + { + /// + /// 取编辑数据 + /// + /// + /// + Task GetTest(KeyInput input); + + /// + /// 取列表分页数据 + /// + /// + /// + Task> GetPageListTest(GetPageListTestInput input); + + /// + /// 新增 + /// + /// + /// + Task AddTest(AddOrUpdTestInput input); + + /// + /// 编辑 + /// + /// + /// + Task UpdTest(AddOrUpdTestInput input); + /// + /// 编辑 + /// + /// + /// + Task UpdTest2(DtoEditTest2 input); + + /// + /// 删除 + /// + /// + /// + Task DelTest(KeyInputUpd input); + + } +} diff --git a/yuhong_plc/zzz.Services/Sys/Tests/TestServices.cs b/yuhong_plc/zzz.Services/Sys/Tests/TestServices.cs new file mode 100644 index 0000000..4423ed5 --- /dev/null +++ b/yuhong_plc/zzz.Services/Sys/Tests/TestServices.cs @@ -0,0 +1,116 @@ +using zzz.Common.Helper; +using zzz.Model; +using zzz.Model.Entity; +using zzz.Repository; +using zzz.Services.Sys.TasksQzs; +using zzz.Services.Sys.Tests.Dtos; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Services.Sys.Tests +{ + /// + /// + /// + public class TestServices : BaseServices, ITestServices + { + private readonly IBaseRepository _taskRep; + /// + /// + /// + /// + /// + public TestServices( + IBaseRepository baseRepository, + IBaseRepository taskRep + ) : base(baseRepository) + { + _taskRep = taskRep; + } + + /// + /// + /// + /// + /// + public async Task AddTest(AddOrUpdTestInput input) + { + return await AddOne (input.Entity); + } + + /// + /// + /// + /// + /// + /// + public async Task UpdTest(AddOrUpdTestInput input) + { + return await UpdOne(input.Entity); + } + + /// + /// + /// + /// + /// + /// + public async Task UpdTest2(DtoEditTest2 input) + { + return await UpdOne(input); + } + + + /// + /// + /// + /// + /// + /// + public async Task DelTest(KeyInputUpd input) + { + return await DelOneSoft (input); + } + + /// + /// + /// + /// + /// + /// + public async Task GetTest(KeyInput input) + { + var ret = new GetTestOutput(); + + var entityData = await GetOneById(input.Id); + if (entityData!=null) + { + ret.Entity = entityData; + } + + return ret; + } + + /// + /// + /// + /// + /// + /// + public async Task> GetPageListTest(GetPageListTestInput input) + { + var where = LinqExpression.Create(x => true); + where = where.AndIf(input.UnitCode.IsNotEmptyOrNull(), x => x.UnitCode.Contains(input.UnitCode)); + where = where.AndIf(input.UnitName.IsNotEmptyOrNull(), x => x.UnitCode.Contains(input.UnitName)); + + var ret = await _rep.QueryPageAsync(where,input.PageIndex,input.PageSize,input.SortSql); + + return ret.ConvertTo(); + } + + + } +} diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Common.dll b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Common.dll new file mode 100644 index 0000000..993149d Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Common.dll differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Common.pdb b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Common.pdb new file mode 100644 index 0000000..c259918 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Common.pdb differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Model.dll b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Model.dll new file mode 100644 index 0000000..0c5d675 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Model.dll differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Model.pdb b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Model.pdb new file mode 100644 index 0000000..1747c5c Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Model.pdb differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Model.xml b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Model.xml new file mode 100644 index 0000000..5c555d6 --- /dev/null +++ b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Model.xml @@ -0,0 +1,495 @@ + + + + cjyx.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 角色表 + + + + + 角色名 + + + + + 描述 + + + + + 排序 + + + + + 用户表 + + + + + 账号 + + + + + 密码(默认MD5加密) + + + + + 昵称 + + + + + 姓名 + + + + + 头像 + + + + + 生日 + + + + + 性别-男_1、女_2 CD08 + + + + + 邮箱 + + + + + 手机 + + + + + 最后登录IP + + + + + 最后登录时间 + + + + + 状态-正常_0、停用_1、删除_2 + + + + + 部门 + + + + + 部门 最后个组织 + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Repository.dll b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Repository.dll new file mode 100644 index 0000000..1e7e24e Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Repository.dll differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Repository.pdb b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Repository.pdb new file mode 100644 index 0000000..596330b Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Repository.pdb differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Services.deps.json b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Services.deps.json new file mode 100644 index 0000000..be13e04 --- /dev/null +++ b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Services.deps.json @@ -0,0 +1,1823 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "cjyx.Services/1.0.0": { + "dependencies": { + "cjyx.Repository": "1.0.0" + }, + "runtime": { + "cjyx.Services.dll": {} + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "Newtonsoft.Json/11.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.2.21924" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "11.0.2", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.7.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.Pipelines/4.5.2": { + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "cjyx.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "cjyx.Common.dll": {} + } + }, + "cjyx.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "cjyx.Model.dll": {} + } + }, + "cjyx.Repository/1.0.0": { + "dependencies": { + "cjyx.Common": "1.0.0", + "cjyx.Model": "1.0.0" + }, + "runtime": { + "cjyx.Repository.dll": {} + } + } + } + }, + "libraries": { + "cjyx.Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "path": "newtonsoft.json/11.0.2", + "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==", + "path": "system.diagnostics.diagnosticsource/4.7.0", + "hashPath": "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "path": "system.io.pipelines/4.5.2", + "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "cjyx.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "cjyx.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "cjyx.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Services.dll b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Services.dll new file mode 100644 index 0000000..59c5489 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Services.dll differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Services.pdb b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Services.pdb new file mode 100644 index 0000000..bf6cd9c Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Services.pdb differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Services.xml b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Services.xml new file mode 100644 index 0000000..a1a86d7 --- /dev/null +++ b/yuhong_plc/zzz.Services/bin/Debug/net6.0/cjyx.Services.xml @@ -0,0 +1,571 @@ + + + + zzz.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 大屏数据服务 + + + + + 大屏数据接口 + + + + + 异步添加种子数据 + + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/ref/cjyx.Services.dll b/yuhong_plc/zzz.Services/bin/Debug/net6.0/ref/cjyx.Services.dll new file mode 100644 index 0000000..fc570a1 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/ref/cjyx.Services.dll differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/ref/zzz.Services.dll b/yuhong_plc/zzz.Services/bin/Debug/net6.0/ref/zzz.Services.dll new file mode 100644 index 0000000..ffa4528 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/ref/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Common.dll b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Common.dll new file mode 100644 index 0000000..6d6f1c6 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Common.pdb b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Common.pdb new file mode 100644 index 0000000..4c5a6d4 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Model.dll b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Model.dll new file mode 100644 index 0000000..98ddff2 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Model.pdb b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Model.pdb new file mode 100644 index 0000000..ee6d136 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Model.xml b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Model.xml new file mode 100644 index 0000000..90ea772 --- /dev/null +++ b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Model.xml @@ -0,0 +1,1543 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 2线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Repository.dll b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Repository.dll new file mode 100644 index 0000000..991414c Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Repository.pdb b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Repository.pdb new file mode 100644 index 0000000..b9bcd32 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Repository.pdb differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Services.deps.json b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Services.deps.json new file mode 100644 index 0000000..6f312d5 --- /dev/null +++ b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Services.deps.json @@ -0,0 +1,1842 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Services/1.0.0": { + "dependencies": { + "HslCommunication": "7.0.1", + "zzz.Repository": "1.0.0" + }, + "runtime": { + "zzz.Services.dll": {} + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "HslCommunication/7.0.1": { + "dependencies": { + "Newtonsoft.Json": "12.0.2" + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": { + "assemblyVersion": "7.0.1.0", + "fileVersion": "7.0.1.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Newtonsoft.Json": "12.0.2", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "12.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "Newtonsoft.Json/12.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.2.23222" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "12.0.2", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.7.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.Pipelines/4.5.2": { + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Newtonsoft.Json": "12.0.2", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "runtime": { + "zzz.Repository.dll": {} + } + } + } + }, + "libraries": { + "zzz.Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "HslCommunication/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "path": "hslcommunication/7.0.1", + "hashPath": "hslcommunication.7.0.1.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "Newtonsoft.Json/12.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==", + "path": "newtonsoft.json/12.0.2", + "hashPath": "newtonsoft.json.12.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==", + "path": "system.diagnostics.diagnosticsource/4.7.0", + "hashPath": "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "path": "system.io.pipelines/4.5.2", + "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Services.dll b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Services.dll new file mode 100644 index 0000000..691a5d0 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Services.pdb b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Services.pdb new file mode 100644 index 0000000..79fd96c Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Services.pdb differ diff --git a/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Services.xml b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Services.xml new file mode 100644 index 0000000..623dba3 --- /dev/null +++ b/yuhong_plc/zzz.Services/bin/Debug/net6.0/zzz.Services.xml @@ -0,0 +1,941 @@ + + + + zzz.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 种子数据 服务 + + + + + 构造 + + + + + + 异步添加种子数据 + + + + + + + + 同步表结构 + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 种子数据 接口 + + + + + 同步表结构 + + + + + + + 设备名称 + + + + + 设备利用率DTO + + + + + x轴 + + + + + series + + + + + 动态月订单信息数据 + + + + + 生产计划达成率 + + + + + 订单交付率 + + + + + 生产数量 + + + + + 设备利用率 + + + + + 产品合格率 + + + + + 大屏生产工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 完成进度 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 各产品生产数量 + + + + + x轴 + + + + + series + + + + + PLC硬件信息 + + + + + eqmt_id + + + + + ip + + + + + 端口 + + + + + 读取PLC数据接口 + + + + + 读取13线数据 + + + + + 读取16线数据 + + + + + 读取17线数据 + + + + + 读取18线数据 + + + + + 读取19线数据 + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 读取PLC数据服务 + + + + + 构造 + + + + + 打开连接 + + + + + + + + 关闭连接 + + + + + 读取13线数据 + + + + + 读取16线数据 + 一个端口 + + + + + 读取19线数据 + 一个端口 + + + + + 读取17线数据 + 两个端口 + + + + + 读取18线数据 + 两个端口 + + + + + 创建间隔采集数据 + + + + + + 班次产量数据 + + + + + + 计算OEE + + + + + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Services/bin/Release/net6.0/ref/zzz.Services.dll b/yuhong_plc/zzz.Services/bin/Release/net6.0/ref/zzz.Services.dll new file mode 100644 index 0000000..d493661 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Release/net6.0/ref/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Common.dll b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Common.dll new file mode 100644 index 0000000..64d9d86 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Common.pdb b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Common.pdb new file mode 100644 index 0000000..72c1cc3 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Model.dll b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Model.dll new file mode 100644 index 0000000..9fb27f0 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Model.pdb b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Model.pdb new file mode 100644 index 0000000..2d4df51 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Model.xml b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Model.xml new file mode 100644 index 0000000..90ea772 --- /dev/null +++ b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Model.xml @@ -0,0 +1,1543 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 2线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Repository.dll b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Repository.dll new file mode 100644 index 0000000..7d79fb4 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Repository.pdb b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Repository.pdb new file mode 100644 index 0000000..b02178a Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Repository.pdb differ diff --git a/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Services.deps.json b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Services.deps.json new file mode 100644 index 0000000..6f312d5 --- /dev/null +++ b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Services.deps.json @@ -0,0 +1,1842 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Services/1.0.0": { + "dependencies": { + "HslCommunication": "7.0.1", + "zzz.Repository": "1.0.0" + }, + "runtime": { + "zzz.Services.dll": {} + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "HslCommunication/7.0.1": { + "dependencies": { + "Newtonsoft.Json": "12.0.2" + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": { + "assemblyVersion": "7.0.1.0", + "fileVersion": "7.0.1.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Newtonsoft.Json": "12.0.2", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "12.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "Newtonsoft.Json/12.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.2.23222" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "12.0.2", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.7.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.Pipelines/4.5.2": { + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Newtonsoft.Json": "12.0.2", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "runtime": { + "zzz.Repository.dll": {} + } + } + } + }, + "libraries": { + "zzz.Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "HslCommunication/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "path": "hslcommunication/7.0.1", + "hashPath": "hslcommunication.7.0.1.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "Newtonsoft.Json/12.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==", + "path": "newtonsoft.json/12.0.2", + "hashPath": "newtonsoft.json.12.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==", + "path": "system.diagnostics.diagnosticsource/4.7.0", + "hashPath": "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "path": "system.io.pipelines/4.5.2", + "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Services.dll b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Services.dll new file mode 100644 index 0000000..120d205 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Services.pdb b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Services.pdb new file mode 100644 index 0000000..14b8434 Binary files /dev/null and b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Services.pdb differ diff --git a/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Services.xml b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Services.xml new file mode 100644 index 0000000..623dba3 --- /dev/null +++ b/yuhong_plc/zzz.Services/bin/Release/net6.0/zzz.Services.xml @@ -0,0 +1,941 @@ + + + + zzz.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 种子数据 服务 + + + + + 构造 + + + + + + 异步添加种子数据 + + + + + + + + 同步表结构 + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 种子数据 接口 + + + + + 同步表结构 + + + + + + + 设备名称 + + + + + 设备利用率DTO + + + + + x轴 + + + + + series + + + + + 动态月订单信息数据 + + + + + 生产计划达成率 + + + + + 订单交付率 + + + + + 生产数量 + + + + + 设备利用率 + + + + + 产品合格率 + + + + + 大屏生产工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 完成进度 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 各产品生产数量 + + + + + x轴 + + + + + series + + + + + PLC硬件信息 + + + + + eqmt_id + + + + + ip + + + + + 端口 + + + + + 读取PLC数据接口 + + + + + 读取13线数据 + + + + + 读取16线数据 + + + + + 读取17线数据 + + + + + 读取18线数据 + + + + + 读取19线数据 + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 读取PLC数据服务 + + + + + 构造 + + + + + 打开连接 + + + + + + + + 关闭连接 + + + + + 读取13线数据 + + + + + 读取16线数据 + 一个端口 + + + + + 读取19线数据 + 一个端口 + + + + + 读取17线数据 + 两个端口 + + + + + 读取18线数据 + 两个端口 + + + + + 创建间隔采集数据 + + + + + + 班次产量数据 + + + + + + 计算OEE + + + + + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/yuhong_plc/zzz.Services/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.AssemblyInfo.cs b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.AssemblyInfo.cs new file mode 100644 index 0000000..fadea9e --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("cjyx.Services")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("cjyx.Services")] +[assembly: System.Reflection.AssemblyTitleAttribute("cjyx.Services")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.AssemblyInfoInputs.cache new file mode 100644 index 0000000..511f73a --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +032e150c8bbc877db1bdc6452872479e2c5fd93a diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9fb7b78 --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = cjyx.Services +build_property.ProjectDir = D:\work\长江云息\Src\cjyx\cjyx.Services\ diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.GlobalUsings.g.cs b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.assets.cache b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.assets.cache new file mode 100644 index 0000000..07355e8 Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.assets.cache differ diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.csproj.AssemblyReference.cache new file mode 100644 index 0000000..9337207 Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.csproj.CopyComplete b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..b2b4c00 --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +771ceb1c55390db156769f5faaadd45e9f10a988 diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..23a6d81 --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.csproj.FileListAbsolute.txt @@ -0,0 +1,21 @@ +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\cjyx.Services.deps.json +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\cjyx.Services.dll +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\ref\cjyx.Services.dll +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\cjyx.Services.pdb +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\cjyx.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\cjyx.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\cjyx.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\cjyx.Repository.pdb +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\cjyx.Common.pdb +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\cjyx.Model.pdb +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\cjyx.Services.csproj.AssemblyReference.cache +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\cjyx.Services.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\cjyx.Services.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\cjyx.Services.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\cjyx.Services.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\cjyx.Services.csproj.CopyComplete +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\cjyx.Services.dll +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\ref\cjyx.Services.dll +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\cjyx.Services.pdb +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\cjyx.Model.xml +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\cjyx.Services.xml diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.dll b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.dll new file mode 100644 index 0000000..59c5489 Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.dll differ diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.pdb b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.pdb new file mode 100644 index 0000000..bf6cd9c Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Debug/net6.0/cjyx.Services.pdb differ diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/ref/cjyx.Services.dll b/yuhong_plc/zzz.Services/obj/Debug/net6.0/ref/cjyx.Services.dll new file mode 100644 index 0000000..fc570a1 Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Debug/net6.0/ref/cjyx.Services.dll differ diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/ref/zzz.Services.dll b/yuhong_plc/zzz.Services/obj/Debug/net6.0/ref/zzz.Services.dll new file mode 100644 index 0000000..70be745 Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Debug/net6.0/ref/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/refint/zzz.Services.dll b/yuhong_plc/zzz.Services/obj/Debug/net6.0/refint/zzz.Services.dll new file mode 100644 index 0000000..70be745 Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Debug/net6.0/refint/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.AssemblyInfo.cs b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.AssemblyInfo.cs new file mode 100644 index 0000000..7843764 --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("zzz.Services")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("zzz.Services")] +[assembly: System.Reflection.AssemblyTitleAttribute("zzz.Services")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.AssemblyInfoInputs.cache new file mode 100644 index 0000000..7de058e --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +e05ee2820aa2f96000e61bccbd65c78a89ed553b diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f66168d --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = zzz.Services +build_property.ProjectDir = F:\yuhong_plc\zzz.Services\ diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.GlobalUsings.g.cs b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.assets.cache b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.assets.cache new file mode 100644 index 0000000..d633867 Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.assets.cache differ diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.csproj.AssemblyReference.cache new file mode 100644 index 0000000..6080ea5 Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.csproj.CopyComplete b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..48c7610 --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +3a64eed449f8c16fc39db2aeb04e9feaf3acf761 diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..3e9c60b --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.csproj.FileListAbsolute.txt @@ -0,0 +1,125 @@ +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\zzz.Services.deps.json +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\ref\zzz.Services.dll +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\cjyx.Services.xml +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\Src\cjyx\cjyx.Services\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\zzz.Services.csproj.AssemblyReference.cache +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\zzz.Services.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\zzz.Services.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\zzz.Services.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\zzz.Services.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\zzz.Services.csproj.CopyComplete +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\ref\zzz.Services.dll +D:\work\长江云息\Src\cjyx\cjyx.Services\obj\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.csproj.AssemblyReference.cache +D:\work\长江云息\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\Src\cjyx\zzz.Services\obj\Debug\net6.0\ref\zzz.Services.dll +D:\work\长江云息\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Services.deps.json +D:\work\长江云息\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\Src\cjyx\zzz.Services\bin\Debug\net6.0\ref\zzz.Services.dll +D:\work\长江云息\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Services.xml +D:\work\长江云息\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Services.deps.json +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\bin\Debug\net6.0\ref\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Services.xml +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\obj\Debug\net6.0\ref\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Services\obj\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Services.deps.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\ref\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Services.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\ref\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Services.deps.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Services.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Services.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Services.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Repository.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Repository.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Debug\net6.0\zzz.Model.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.GeneratedMSBuildEditorConfig.editorconfig +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.AssemblyInfoInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.AssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.csproj.CoreCompileInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.csproj.CopyComplete +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\refint\zzz.Services.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\zzz.Services.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Debug\net6.0\ref\zzz.Services.dll +F:\yuhong_plc\zzz.Services\bin\Debug\net6.0\zzz.Services.deps.json +F:\yuhong_plc\zzz.Services\bin\Debug\net6.0\zzz.Services.dll +F:\yuhong_plc\zzz.Services\bin\Debug\net6.0\zzz.Services.pdb +F:\yuhong_plc\zzz.Services\bin\Debug\net6.0\zzz.Services.xml +F:\yuhong_plc\zzz.Services\bin\Debug\net6.0\zzz.Common.dll +F:\yuhong_plc\zzz.Services\bin\Debug\net6.0\zzz.Model.dll +F:\yuhong_plc\zzz.Services\bin\Debug\net6.0\zzz.Repository.dll +F:\yuhong_plc\zzz.Services\bin\Debug\net6.0\zzz.Repository.pdb +F:\yuhong_plc\zzz.Services\bin\Debug\net6.0\zzz.Common.pdb +F:\yuhong_plc\zzz.Services\bin\Debug\net6.0\zzz.Model.pdb +F:\yuhong_plc\zzz.Services\bin\Debug\net6.0\zzz.Model.xml +F:\yuhong_plc\zzz.Services\obj\Debug\net6.0\zzz.Services.csproj.AssemblyReference.cache +F:\yuhong_plc\zzz.Services\obj\Debug\net6.0\zzz.Services.GeneratedMSBuildEditorConfig.editorconfig +F:\yuhong_plc\zzz.Services\obj\Debug\net6.0\zzz.Services.AssemblyInfoInputs.cache +F:\yuhong_plc\zzz.Services\obj\Debug\net6.0\zzz.Services.AssemblyInfo.cs +F:\yuhong_plc\zzz.Services\obj\Debug\net6.0\zzz.Services.csproj.CoreCompileInputs.cache +F:\yuhong_plc\zzz.Services\obj\Debug\net6.0\zzz.Services.csproj.CopyComplete +F:\yuhong_plc\zzz.Services\obj\Debug\net6.0\zzz.Services.dll +F:\yuhong_plc\zzz.Services\obj\Debug\net6.0\refint\zzz.Services.dll +F:\yuhong_plc\zzz.Services\obj\Debug\net6.0\zzz.Services.pdb +F:\yuhong_plc\zzz.Services\obj\Debug\net6.0\ref\zzz.Services.dll diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.dll b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.dll new file mode 100644 index 0000000..691a5d0 Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.pdb b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.pdb new file mode 100644 index 0000000..79fd96c Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Debug/net6.0/zzz.Services.pdb differ diff --git a/yuhong_plc/zzz.Services/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/yuhong_plc/zzz.Services/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/yuhong_plc/zzz.Services/obj/Release/net6.0/ref/zzz.Services.dll b/yuhong_plc/zzz.Services/obj/Release/net6.0/ref/zzz.Services.dll new file mode 100644 index 0000000..cf99142 Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Release/net6.0/ref/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Services/obj/Release/net6.0/refint/zzz.Services.dll b/yuhong_plc/zzz.Services/obj/Release/net6.0/refint/zzz.Services.dll new file mode 100644 index 0000000..cf99142 Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Release/net6.0/refint/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.AssemblyInfo.cs b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.AssemblyInfo.cs new file mode 100644 index 0000000..1579d6a --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("zzz.Services")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("zzz.Services")] +[assembly: System.Reflection.AssemblyTitleAttribute("zzz.Services")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.AssemblyInfoInputs.cache new file mode 100644 index 0000000..09bdbfe --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +2b521dbe54d82cb763b53d7a5bf8b75d7958fca2 diff --git a/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f66168d --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = zzz.Services +build_property.ProjectDir = F:\yuhong_plc\zzz.Services\ diff --git a/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.GlobalUsings.g.cs b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.assets.cache b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.assets.cache new file mode 100644 index 0000000..236f0cd Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.assets.cache differ diff --git a/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.csproj.AssemblyReference.cache new file mode 100644 index 0000000..9cc1f74 Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.csproj.BuildWithSkipAnalyzers b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.csproj.CopyComplete b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..67af7aa --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +b034b025b83cd695174e49ff7d1339855d8bf2d9 diff --git a/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..4229b5b --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.csproj.FileListAbsolute.txt @@ -0,0 +1,63 @@ +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Services.deps.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\ref\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Services.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Services.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\ref\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Services.deps.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Services.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Services.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Services.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Repository.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Repository.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\bin\Release\net6.0\zzz.Model.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.GeneratedMSBuildEditorConfig.editorconfig +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.AssemblyInfoInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.AssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.csproj.CoreCompileInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.csproj.CopyComplete +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\refint\zzz.Services.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\zzz.Services.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Services\obj\Release\net6.0\ref\zzz.Services.dll +F:\yuhong_plc\zzz.Services\bin\Release\net6.0\zzz.Services.deps.json +F:\yuhong_plc\zzz.Services\bin\Release\net6.0\zzz.Services.dll +F:\yuhong_plc\zzz.Services\bin\Release\net6.0\zzz.Services.pdb +F:\yuhong_plc\zzz.Services\bin\Release\net6.0\zzz.Services.xml +F:\yuhong_plc\zzz.Services\bin\Release\net6.0\zzz.Common.dll +F:\yuhong_plc\zzz.Services\bin\Release\net6.0\zzz.Model.dll +F:\yuhong_plc\zzz.Services\bin\Release\net6.0\zzz.Repository.dll +F:\yuhong_plc\zzz.Services\bin\Release\net6.0\zzz.Repository.pdb +F:\yuhong_plc\zzz.Services\bin\Release\net6.0\zzz.Common.pdb +F:\yuhong_plc\zzz.Services\bin\Release\net6.0\zzz.Model.pdb +F:\yuhong_plc\zzz.Services\bin\Release\net6.0\zzz.Model.xml +F:\yuhong_plc\zzz.Services\obj\Release\net6.0\zzz.Services.csproj.AssemblyReference.cache +F:\yuhong_plc\zzz.Services\obj\Release\net6.0\zzz.Services.GeneratedMSBuildEditorConfig.editorconfig +F:\yuhong_plc\zzz.Services\obj\Release\net6.0\zzz.Services.AssemblyInfoInputs.cache +F:\yuhong_plc\zzz.Services\obj\Release\net6.0\zzz.Services.AssemblyInfo.cs +F:\yuhong_plc\zzz.Services\obj\Release\net6.0\zzz.Services.csproj.CoreCompileInputs.cache +F:\yuhong_plc\zzz.Services\obj\Release\net6.0\zzz.Services.csproj.CopyComplete +F:\yuhong_plc\zzz.Services\obj\Release\net6.0\zzz.Services.dll +F:\yuhong_plc\zzz.Services\obj\Release\net6.0\refint\zzz.Services.dll +F:\yuhong_plc\zzz.Services\obj\Release\net6.0\zzz.Services.pdb +F:\yuhong_plc\zzz.Services\obj\Release\net6.0\ref\zzz.Services.dll diff --git a/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.dll b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.dll new file mode 100644 index 0000000..120d205 Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.pdb b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.pdb new file mode 100644 index 0000000..14b8434 Binary files /dev/null and b/yuhong_plc/zzz.Services/obj/Release/net6.0/zzz.Services.pdb differ diff --git a/yuhong_plc/zzz.Services/obj/cjyx.Services.csproj.nuget.dgspec.json b/yuhong_plc/zzz.Services/obj/cjyx.Services.csproj.nuget.dgspec.json new file mode 100644 index 0000000..52b140d --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/cjyx.Services.csproj.nuget.dgspec.json @@ -0,0 +1,315 @@ +{ + "format": 1, + "restore": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj": {} + }, + "projects": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\zzz.Common.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\zzz.Common.csproj", + "projectName": "zzz.Common", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\zzz.Common.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "Microsoft.AspNetCore.SignalR.Core": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.Extensions.Configuration": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.Extensions.Configuration.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Binder": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Json": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Hosting.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.11.0, )" + }, + "Serilog.Sinks.File": { + "target": "Package", + "version": "[5.0.0, )" + }, + "WebApiClient.Extensions.DependencyInjection": { + "target": "Package", + "version": "[2.0.3, )" + }, + "Yitter.IdGenerator": { + "target": "Package", + "version": "[1.0.12, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj", + "projectName": "cjyx.Model", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.0.0, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.0.8, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj", + "projectName": "cjyx.Repository", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\zzz.Common.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\zzz.Common.csproj" + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj", + "projectName": "cjyx.Services", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Services/obj/cjyx.Services.csproj.nuget.g.props b/yuhong_plc/zzz.Services/obj/cjyx.Services.csproj.nuget.g.props new file mode 100644 index 0000000..2b6b4fc --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/cjyx.Services.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\BLACK\.nuget\packages\;D:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.0.0 + + + + + + + C:\Users\BLACK\.nuget\packages\webapiclient.jit\1.0.3 + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Services/obj/cjyx.Services.csproj.nuget.g.targets b/yuhong_plc/zzz.Services/obj/cjyx.Services.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/cjyx.Services.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Services/obj/project.assets.json b/yuhong_plc/zzz.Services/obj/project.assets.json new file mode 100644 index 0000000..ec7f481 --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/project.assets.json @@ -0,0 +1,4549 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "AutoMapper/11.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "compile": { + "lib/netstandard2.1/AutoMapper.dll": {} + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": {} + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "dependencies": { + "AutoMapper": "11.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} + } + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + } + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "compile": { + "lib/net5.0/Google.Protobuf.dll": {} + }, + "runtime": { + "lib/net5.0/Google.Protobuf.dll": {} + } + }, + "HslCommunication/7.0.1": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.2" + }, + "compile": { + "lib/netstandard2.0/HslCommunication.dll": {} + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": {} + } + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": {} + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": {} + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "compile": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {} + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {} + } + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": {} + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": {} + } + }, + "log4net/2.0.14": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/log4net.dll": {} + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MySql.Data/8.0.29": { + "type": "package", + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.4.1", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.4.0" + }, + "compile": { + "lib/net6.0/MySql.Data.dll": {}, + "lib/net6.0/Ubiety.Dns.Core.dll": {}, + "lib/net6.0/ZstdNet.dll": {} + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": {}, + "lib/net6.0/Ubiety.Dns.Core.dll": {}, + "lib/net6.0/ZstdNet.dll": {} + } + }, + "Newtonsoft.Json/12.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Npgsql/5.0.7": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "4.6.0" + }, + "compile": { + "lib/net5.0/Npgsql.dll": {} + }, + "runtime": { + "lib/net5.0/Npgsql.dll": {} + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "4.7.1" + }, + "compile": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + } + }, + "Serilog/2.11.0": { + "type": "package", + "compile": { + "lib/net5.0/Serilog.dll": {} + }, + "runtime": { + "lib/net5.0/Serilog.dll": {} + } + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.File.dll": {} + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "compile": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} + } + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "alpine-x64" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + } + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "10.0.3", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/SqlSugar.dll": {} + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": {} + } + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/DmProvider.dll": {} + }, + "runtime": { + "lib/netstandard2.0/DmProvider.dll": {} + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Kdbndp.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": {} + } + }, + "System.Buffers/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Data.Common/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "type": "package", + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.DirectoryServices.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "compile": { + "ref/netstandard1.3/System.IO.Pipelines.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": {} + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + } + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/System.Threading.Channels.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Threading.Channels.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "compile": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": {} + } + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "System.Runtime.Caching": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": {} + } + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "compile": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": {} + } + }, + "zzz.Common/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "compile": { + "bin/placeholder/zzz.Common.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Common.dll": {} + } + }, + "zzz.Model/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "compile": { + "bin/placeholder/zzz.Model.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "compile": { + "bin/placeholder/zzz.Repository.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Repository.dll": {} + } + } + } + }, + "libraries": { + "AutoMapper/11.0.1": { + "sha512": "WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "type": "package", + "path": "automapper/11.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.11.0.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/netstandard2.1/AutoMapper.dll", + "lib/netstandard2.1/AutoMapper.xml" + ] + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "sha512": "0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "type": "package", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", + "automapper.extensions.microsoft.dependencyinjection.nuspec", + "icon.png", + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll" + ] + }, + "BouncyCastle.NetCore/1.8.5": { + "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "type": "package", + "path": "bouncycastle.netcore/1.8.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bouncycastle.netcore.1.8.5.nupkg.sha512", + "bouncycastle.netcore.nuspec", + "lib/Mono/BouncyCastle.Crypto.dll", + "lib/Mono/BouncyCastle.Crypto.xml", + "lib/MonoAndroid/BouncyCastle.Crypto.dll", + "lib/MonoAndroid/BouncyCastle.Crypto.xml", + "lib/MonoMac/BouncyCastle.Crypto.dll", + "lib/MonoMac/BouncyCastle.Crypto.xml", + "lib/MonoTouch/BouncyCastle.Crypto.dll", + "lib/MonoTouch/BouncyCastle.Crypto.xml", + "lib/net20/BouncyCastle.Crypto.dll", + "lib/net20/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "lib/xamarinios/BouncyCastle.Crypto.dll", + "lib/xamarinios/BouncyCastle.Crypto.xml" + ] + }, + "Google.Protobuf/3.19.4": { + "sha512": "fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "type": "package", + "path": "google.protobuf/3.19.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "google.protobuf.3.19.4.nupkg.sha512", + "google.protobuf.nuspec", + "lib/net45/Google.Protobuf.dll", + "lib/net45/Google.Protobuf.pdb", + "lib/net45/Google.Protobuf.xml", + "lib/net5.0/Google.Protobuf.dll", + "lib/net5.0/Google.Protobuf.pdb", + "lib/net5.0/Google.Protobuf.xml", + "lib/netstandard1.1/Google.Protobuf.dll", + "lib/netstandard1.1/Google.Protobuf.pdb", + "lib/netstandard1.1/Google.Protobuf.xml", + "lib/netstandard2.0/Google.Protobuf.dll", + "lib/netstandard2.0/Google.Protobuf.pdb", + "lib/netstandard2.0/Google.Protobuf.xml" + ] + }, + "HslCommunication/7.0.1": { + "sha512": "0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "type": "package", + "path": "hslcommunication/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "hslcommunication.7.0.1.nupkg.sha512", + "hslcommunication.nuspec", + "lib/net35/HslCommunication.dll", + "lib/net35/HslCommunication.xml", + "lib/net451/HslCommunication.dll", + "lib/net451/HslCommunication.xml", + "lib/netstandard2.0/HslCommunication.dll", + "lib/netstandard2.0/HslCommunication.xml" + ] + }, + "K4os.Compression.LZ4/1.2.6": { + "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "type": "package", + "path": "k4os.compression.lz4/1.2.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.1.2.6.nupkg.sha512", + "k4os.compression.lz4.nuspec", + "lib/net45/K4os.Compression.LZ4.dll", + "lib/net45/K4os.Compression.LZ4.xml", + "lib/net46/K4os.Compression.LZ4.dll", + "lib/net46/K4os.Compression.LZ4.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.xml" + ] + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "type": "package", + "path": "k4os.compression.lz4.streams/1.2.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.streams.1.2.6.nupkg.sha512", + "k4os.compression.lz4.streams.nuspec", + "lib/net45/K4os.Compression.LZ4.Streams.dll", + "lib/net45/K4os.Compression.LZ4.Streams.xml", + "lib/net46/K4os.Compression.LZ4.Streams.dll", + "lib/net46/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml" + ] + }, + "K4os.Hash.xxHash/1.0.6": { + "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "type": "package", + "path": "k4os.hash.xxhash/1.0.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.hash.xxhash.1.0.6.nupkg.sha512", + "k4os.hash.xxhash.nuspec", + "lib/net45/K4os.Hash.xxHash.dll", + "lib/net45/K4os.Hash.xxHash.xml", + "lib/net46/K4os.Hash.xxHash.dll", + "lib/net46/K4os.Hash.xxHash.xml", + "lib/netstandard1.6/K4os.Hash.xxHash.dll", + "lib/netstandard1.6/K4os.Hash.xxHash.xml", + "lib/netstandard2.0/K4os.Hash.xxHash.dll", + "lib/netstandard2.0/K4os.Hash.xxHash.xml" + ] + }, + "log4net/2.0.14": { + "sha512": "KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "type": "package", + "path": "log4net/2.0.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/log4net.dll", + "lib/net20/log4net.xml", + "lib/net35-client/log4net.dll", + "lib/net35-client/log4net.xml", + "lib/net35/log4net.dll", + "lib/net35/log4net.xml", + "lib/net40-client/log4net.dll", + "lib/net40-client/log4net.xml", + "lib/net40/log4net.dll", + "lib/net40/log4net.xml", + "lib/net45/log4net.dll", + "lib/net45/log4net.xml", + "lib/netstandard1.3/log4net.dll", + "lib/netstandard1.3/log4net.xml", + "lib/netstandard2.0/log4net.dll", + "lib/netstandard2.0/log4net.xml", + "log4net.2.0.14.nupkg.sha512", + "log4net.nuspec", + "package-icon.png" + ] + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "sha512": "Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "type": "package", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml", + "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.connections.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "sha512": "TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.xml", + "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.common.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "sha512": "mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.xml", + "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.core.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "sha512": "BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml", + "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.protocols.json.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/2.1.1": { + "sha512": "qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "type": "package", + "path": "microsoft.data.sqlclient/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.Data.SqlClient.dll", + "lib/net46/Microsoft.Data.SqlClient.pdb", + "lib/net46/Microsoft.Data.SqlClient.xml", + "lib/net46/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "microsoft.data.sqlclient.2.1.1.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net46/Microsoft.Data.SqlClient.dll", + "ref/net46/Microsoft.Data.SqlClient.pdb", + "ref/net46/Microsoft.Data.SqlClient.xml", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.Data.Sqlite/5.0.5": { + "sha512": "zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "type": "package", + "path": "microsoft.data.sqlite/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/_._", + "microsoft.data.sqlite.5.0.5.nupkg.sha512", + "microsoft.data.sqlite.nuspec" + ] + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "sha512": "tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "type": "package", + "path": "microsoft.data.sqlite.core/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.5.0.5.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "sha512": "BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "type": "package", + "path": "microsoft.extensions.configuration/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.dll", + "lib/net461/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.6.0.1.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net461/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "type": "package", + "path": "microsoft.extensions.configuration.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Json.dll", + "lib/net461/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "sha512": "GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "sha512": "B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "type": "package", + "path": "microsoft.extensions.options/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.21.1": { + "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "type": "package", + "path": "microsoft.identity.client/4.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid10.0/Microsoft.Identity.Client.dll", + "lib/monoandroid10.0/Microsoft.Identity.Client.xml", + "lib/monoandroid90/Microsoft.Identity.Client.dll", + "lib/monoandroid90/Microsoft.Identity.Client.xml", + "lib/net45/Microsoft.Identity.Client.dll", + "lib/net45/Microsoft.Identity.Client.xml", + "lib/net461/Microsoft.Identity.Client.dll", + "lib/net461/Microsoft.Identity.Client.xml", + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll", + "lib/netcoreapp2.1/Microsoft.Identity.Client.xml", + "lib/netstandard1.3/Microsoft.Identity.Client.dll", + "lib/netstandard1.3/Microsoft.Identity.Client.xml", + "lib/uap10.0/Microsoft.Identity.Client.dll", + "lib/uap10.0/Microsoft.Identity.Client.pri", + "lib/uap10.0/Microsoft.Identity.Client.xml", + "lib/xamarinios10/Microsoft.Identity.Client.dll", + "lib/xamarinios10/Microsoft.Identity.Client.xml", + "lib/xamarinmac20/Microsoft.Identity.Client.dll", + "lib/xamarinmac20/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.21.1.nupkg.sha512", + "microsoft.identity.client.nuspec", + "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll", + "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml", + "ref/net45/Microsoft.Identity.Client.dll", + "ref/net45/Microsoft.Identity.Client.xml", + "ref/net461/Microsoft.Identity.Client.dll", + "ref/net461/Microsoft.Identity.Client.xml", + "ref/netcoreapp2.1/Microsoft.Identity.Client.dll", + "ref/netcoreapp2.1/Microsoft.Identity.Client.xml", + "ref/netstandard1.3/Microsoft.Identity.Client.dll", + "ref/netstandard1.3/Microsoft.Identity.Client.xml", + "ref/uap10.0/Microsoft.Identity.Client.dll", + "ref/uap10.0/Microsoft.Identity.Client.xml", + "ref/xamarinmac20/Microsoft.Identity.Client.dll", + "ref/xamarinmac20/Microsoft.Identity.Client.xml" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "sha512": "+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "sha512": "Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "sha512": "OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "sha512": "X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "sha512": "gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "type": "package", + "path": "microsoft.win32.systemevents/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/net472/Microsoft.Win32.SystemEvents.dll", + "ref/net472/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MySql.Data/8.0.29": { + "sha512": "3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "type": "package", + "path": "mysql.data/8.0.29", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/MySql.Data.dll", + "lib/net452/MySql.Data.xml", + "lib/net452/Ubiety.Dns.Core.dll", + "lib/net452/ZstdNet.dll", + "lib/net48/MySql.Data.dll", + "lib/net48/MySql.Data.xml", + "lib/net48/Ubiety.Dns.Core.dll", + "lib/net48/ZstdNet.dll", + "lib/net5.0/MySql.Data.dll", + "lib/net5.0/MySql.Data.xml", + "lib/net5.0/Ubiety.Dns.Core.dll", + "lib/net5.0/ZstdNet.dll", + "lib/net6.0/MySql.Data.dll", + "lib/net6.0/MySql.Data.xml", + "lib/net6.0/Ubiety.Dns.Core.dll", + "lib/net6.0/ZstdNet.dll", + "lib/netstandard2.0/MySql.Data.dll", + "lib/netstandard2.0/MySql.Data.xml", + "lib/netstandard2.0/Ubiety.Dns.Core.dll", + "lib/netstandard2.0/ZstdNet.dll", + "lib/netstandard2.1/MySql.Data.dll", + "lib/netstandard2.1/MySql.Data.xml", + "lib/netstandard2.1/Ubiety.Dns.Core.dll", + "lib/netstandard2.1/ZstdNet.dll", + "mysql.data.8.0.29.nupkg.sha512", + "mysql.data.nuspec" + ] + }, + "Newtonsoft.Json/12.0.2": { + "sha512": "rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==", + "type": "package", + "path": "newtonsoft.json/12.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.12.0.2.nupkg.sha512", + "newtonsoft.json.nuspec" + ] + }, + "Npgsql/5.0.7": { + "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "type": "package", + "path": "npgsql/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Npgsql.dll", + "lib/net5.0/Npgsql.xml", + "lib/netcoreapp3.1/Npgsql.dll", + "lib/netcoreapp3.1/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.5.0.7.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "sha512": "SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "type": "package", + "path": "oracle.manageddataaccess.core/3.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PerfCounters/register_odpc_perfmon_counters.ps1", + "PerfCounters/unregister_odpc_perfmon_counters.ps1", + "info.txt", + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll", + "oracle.manageddataaccess.core.3.21.1.nupkg.sha512", + "oracle.manageddataaccess.core.nuspec", + "readme.txt" + ] + }, + "Serilog/2.11.0": { + "sha512": "ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "type": "package", + "path": "serilog/2.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.dll", + "lib/net45/Serilog.xml", + "lib/net46/Serilog.dll", + "lib/net46/Serilog.xml", + "lib/net5.0/Serilog.dll", + "lib/net5.0/Serilog.xml", + "lib/netstandard1.0/Serilog.dll", + "lib/netstandard1.0/Serilog.xml", + "lib/netstandard1.3/Serilog.dll", + "lib/netstandard1.3/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.2.11.0.nupkg.sha512", + "serilog.nuspec" + ] + }, + "Serilog.Sinks.File/5.0.0": { + "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "type": "package", + "path": "serilog.sinks.file/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "images/icon.png", + "lib/net45/Serilog.Sinks.File.dll", + "lib/net45/Serilog.Sinks.File.pdb", + "lib/net45/Serilog.Sinks.File.xml", + "lib/net5.0/Serilog.Sinks.File.dll", + "lib/net5.0/Serilog.Sinks.File.pdb", + "lib/net5.0/Serilog.Sinks.File.xml", + "lib/netstandard1.3/Serilog.Sinks.File.dll", + "lib/netstandard1.3/Serilog.Sinks.File.pdb", + "lib/netstandard1.3/Serilog.Sinks.File.xml", + "lib/netstandard2.0/Serilog.Sinks.File.dll", + "lib/netstandard2.0/Serilog.Sinks.File.pdb", + "lib/netstandard2.0/Serilog.Sinks.File.xml", + "lib/netstandard2.1/Serilog.Sinks.File.dll", + "lib/netstandard2.1/Serilog.Sinks.File.pdb", + "lib/netstandard2.1/Serilog.Sinks.File.xml", + "serilog.sinks.file.5.0.0.nupkg.sha512", + "serilog.sinks.file.nuspec" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "sha512": "f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.nativelibrary.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.0.4": { + "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "type": "package", + "path": "sqlitepclraw.core/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.0.4.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/alpine-x64/native/libe_sqlite3.so", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "type": "package", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll", + "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "sqlitepclraw.provider.dynamic_cdecl.nuspec" + ] + }, + "SqlSugarCore/5.0.8": { + "sha512": "20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "type": "package", + "path": "sqlsugarcore/5.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.1/SqlSugar.dll", + "sqlsugarcore.5.0.8.nupkg.sha512", + "sqlsugarcore.nuspec" + ] + }, + "SqlSugarCore.Dm/1.0.0": { + "sha512": "TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "type": "package", + "path": "sqlsugarcore.dm/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/DmProvider.dll", + "sqlsugarcore.dm.1.0.0.nupkg.sha512", + "sqlsugarcore.dm.nuspec" + ] + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "sha512": "xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "type": "package", + "path": "sqlsugarcore.kdbndp/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Kdbndp.dll", + "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512", + "sqlsugarcore.kdbndp.nuspec" + ] + }, + "System.Buffers/4.5.1": { + "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "type": "package", + "path": "system.buffers/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Buffers.dll", + "lib/net461/System.Buffers.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.1.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "type": "package", + "path": "system.configuration.configurationmanager/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Data.Common/4.3.0": { + "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "type": "package", + "path": "system.data.common/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.Common.dll", + "lib/netstandard1.2/System.Data.Common.dll", + "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.xml", + "ref/netstandard1.2/de/System.Data.Common.xml", + "ref/netstandard1.2/es/System.Data.Common.xml", + "ref/netstandard1.2/fr/System.Data.Common.xml", + "ref/netstandard1.2/it/System.Data.Common.xml", + "ref/netstandard1.2/ja/System.Data.Common.xml", + "ref/netstandard1.2/ko/System.Data.Common.xml", + "ref/netstandard1.2/ru/System.Data.Common.xml", + "ref/netstandard1.2/zh-hans/System.Data.Common.xml", + "ref/netstandard1.2/zh-hant/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.data.common.4.3.0.nupkg.sha512", + "system.data.common.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "sha512": "oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "sha512": "kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "type": "package", + "path": "system.diagnostics.performancecounter/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Diagnostics.PerformanceCounter.dll", + "ref/net461/System.Diagnostics.PerformanceCounter.xml", + "ref/net472/System.Diagnostics.PerformanceCounter.dll", + "ref/net472/System.Diagnostics.PerformanceCounter.xml", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.4.7.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.DirectoryServices/4.7.0": { + "sha512": "NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "type": "package", + "path": "system.directoryservices/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.DirectoryServices.dll", + "ref/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml", + "system.directoryservices.4.7.0.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.DirectoryServices.Protocols/4.7.0": { + "sha512": "yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "type": "package", + "path": "system.directoryservices.protocols/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.DirectoryServices.Protocols.dll", + "ref/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.4.7.0.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/4.7.0": { + "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "type": "package", + "path": "system.drawing.common/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.4.7.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "sha512": "5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "sha512": "vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Pipelines/4.5.2": { + "sha512": "NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "type": "package", + "path": "system.io.pipelines/4.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/System.IO.Pipelines.dll", + "lib/netcoreapp2.1/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netstandard1.3/System.IO.Pipelines.dll", + "system.io.pipelines.4.5.2.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/4.7.0": { + "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "type": "package", + "path": "system.runtime.caching/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard2.0/System.Runtime.Caching.dll", + "ref/netstandard2.0/System.Runtime.Caching.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", + "system.runtime.caching.4.7.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Security.AccessControl/4.7.0": { + "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "type": "package", + "path": "system.security.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.7.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Permissions/4.7.0": { + "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "type": "package", + "path": "system.security.permissions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.7.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.7.0": { + "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "type": "package", + "path": "system.text.encoding.codepages/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.4.7.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/6.0.0": { + "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "type": "package", + "path": "system.text.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "build/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/netcoreapp3.1/System.Text.Json.dll", + "lib/netcoreapp3.1/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.6.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading.Channels/4.5.0": { + "sha512": "MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "type": "package", + "path": "system.threading.channels/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/System.Threading.Channels.dll", + "lib/netcoreapp2.1/System.Threading.Channels.xml", + "lib/netstandard1.3/System.Threading.Channels.dll", + "lib/netstandard1.3/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "system.threading.channels.4.5.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Windows.Extensions/4.7.0": { + "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "type": "package", + "path": "system.windows.extensions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.4.7.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "sha512": "YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "type": "package", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.xml", + "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512", + "webapiclient.extensions.dependencyinjection.nuspec" + ] + }, + "WebApiClient.JIT/1.0.3": { + "sha512": "mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "type": "package", + "path": "webapiclient.jit/1.0.3", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/WebApiClient.Analyzers.deps.json", + "analyzers/dotnet/cs/WebApiClient.Analyzers.dll", + "lib/net45/WebApiClient.JIT.dll", + "lib/net45/WebApiClient.JIT.xml", + "lib/netcoreapp2.1/WebApiClient.JIT.dll", + "lib/netcoreapp2.1/WebApiClient.JIT.xml", + "lib/netstandard1.3/WebApiClient.JIT.dll", + "lib/netstandard1.3/WebApiClient.JIT.xml", + "lib/netstandard2.0/WebApiClient.JIT.dll", + "lib/netstandard2.0/WebApiClient.JIT.xml", + "tools/install.ps1", + "tools/uninstall.ps1", + "webapiclient.jit.1.0.3.nupkg.sha512", + "webapiclient.jit.nuspec" + ] + }, + "Yitter.IdGenerator/1.0.12": { + "sha512": "hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "type": "package", + "path": "yitter.idgenerator/1.0.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Yitter.IdGenerator.dll", + "yitter.idgenerator.1.0.12.nupkg.sha512", + "yitter.idgenerator.nuspec" + ] + }, + "zzz.Common/1.0.0": { + "type": "project", + "path": "../zzz.Common/zzz.Common.csproj", + "msbuildProject": "../zzz.Common/zzz.Common.csproj" + }, + "zzz.Model/1.0.0": { + "type": "project", + "path": "../zzz.model/zzz.Model.csproj", + "msbuildProject": "../zzz.model/zzz.Model.csproj" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "path": "../zzz.Repository/zzz.Repository.csproj", + "msbuildProject": "../zzz.Repository/zzz.Repository.csproj" + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "HslCommunication >= 7.0.1", + "zzz.Repository >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\Administrator\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj", + "projectName": "zzz.Services", + "projectPath": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Services\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "HslCommunication": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Services/obj/project.nuget.cache b/yuhong_plc/zzz.Services/obj/project.nuget.cache new file mode 100644 index 0000000..e53d25b --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/project.nuget.cache @@ -0,0 +1,106 @@ +{ + "version": 2, + "dgSpecHash": "jgfIdZYa5s72wOLrzTW5Py86NXH2ej8O7Jss9rahIigqT0VBVuOAn3bPKQMA0Yzo1+p24y1YWe/twcUA4KQhtA==", + "success": true, + "projectFilePath": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Administrator\\.nuget\\packages\\automapper\\11.0.1\\automapper.11.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\11.0.0\\automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\bouncycastle.netcore\\1.8.5\\bouncycastle.netcore.1.8.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\google.protobuf\\3.19.4\\google.protobuf.3.19.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\hslcommunication\\7.0.1\\hslcommunication.7.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4\\1.2.6\\k4os.compression.lz4.1.2.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4.streams\\1.2.6\\k4os.compression.lz4.streams.1.2.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.hash.xxhash\\1.0.6\\k4os.hash.xxhash.1.0.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\log4net\\2.0.14\\log4net.2.0.14.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.connections.abstractions\\2.2.0\\microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.common\\1.1.0\\microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.core\\1.1.0\\microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.protocols.json\\1.1.0\\microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlclient\\2.1.1\\microsoft.data.sqlclient.2.1.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.1.1\\microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlite\\5.0.5\\microsoft.data.sqlite.5.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlite.core\\5.0.5\\microsoft.data.sqlite.core.5.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration\\6.0.1\\microsoft.extensions.configuration.6.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0\\microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.binder\\6.0.0\\microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\6.0.0\\microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.json\\6.0.0\\microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\6.0.0\\microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\6.0.0\\microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\6.0.0\\microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\6.0.0\\microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\2.2.0\\microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identity.client\\4.21.1\\microsoft.identity.client.4.21.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.8.0\\microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.logging\\6.8.0\\microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.8.0\\microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.8.0\\microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.8.0\\microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\mysql.data\\8.0.29\\mysql.data.8.0.29.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\newtonsoft.json\\12.0.2\\newtonsoft.json.12.0.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\npgsql\\5.0.7\\npgsql.5.0.7.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\oracle.manageddataaccess.core\\3.21.1\\oracle.manageddataaccess.core.3.21.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\serilog\\2.11.0\\serilog.2.11.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\serilog.sinks.file\\5.0.0\\serilog.sinks.file.5.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.0.4\\sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.core\\2.0.4\\sqlitepclraw.core.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.0.4\\sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.provider.dynamic_cdecl\\2.0.4\\sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore\\5.0.8\\sqlsugarcore.5.0.8.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore.dm\\1.0.0\\sqlsugarcore.dm.1.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore.kdbndp\\1.0.0\\sqlsugarcore.kdbndp.1.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.0\\system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.performancecounter\\4.7.0\\system.diagnostics.performancecounter.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.directoryservices\\4.7.0\\system.directoryservices.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.directoryservices.protocols\\4.7.0\\system.directoryservices.protocols.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.8.0\\system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem.accesscontrol\\4.7.0\\system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.pipelines\\4.5.2\\system.io.pipelines.4.5.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.json\\6.0.0\\system.text.json.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.channels\\4.5.0\\system.threading.channels.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\webapiclient.extensions.dependencyinjection\\2.0.3\\webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\webapiclient.jit\\1.0.3\\webapiclient.jit.1.0.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\yitter.idgenerator\\1.0.12\\yitter.idgenerator.1.0.12.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Services/obj/zzz.Services.csproj.nuget.dgspec.json b/yuhong_plc/zzz.Services/obj/zzz.Services.csproj.nuget.dgspec.json new file mode 100644 index 0000000..d5f225a --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/zzz.Services.csproj.nuget.dgspec.json @@ -0,0 +1,317 @@ +{ + "format": 1, + "restore": { + "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj": {} + }, + "projects": { + "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj", + "projectName": "zzz.Common", + "projectPath": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Common\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "Microsoft.AspNetCore.SignalR.Core": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.Extensions.Configuration": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.Extensions.Configuration.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Binder": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Json": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Hosting.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.11.0, )" + }, + "Serilog.Sinks.File": { + "target": "Package", + "version": "[5.0.0, )" + }, + "WebApiClient.Extensions.DependencyInjection": { + "target": "Package", + "version": "[2.0.3, )" + }, + "Yitter.IdGenerator": { + "target": "Package", + "version": "[1.0.12, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj", + "projectName": "zzz.Model", + "projectPath": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.model\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.0.0, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.0.8, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj", + "projectName": "zzz.Repository", + "projectPath": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Repository\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj" + }, + "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj", + "projectName": "zzz.Services", + "projectPath": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Services\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "HslCommunication": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Services/obj/zzz.Services.csproj.nuget.g.props b/yuhong_plc/zzz.Services/obj/zzz.Services.csproj.nuget.g.props new file mode 100644 index 0000000..15ee09f --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/zzz.Services.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Administrator\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.2.1 + + + + + + + C:\Users\Administrator\.nuget\packages\webapiclient.jit\1.0.3 + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Services/obj/zzz.Services.csproj.nuget.g.targets b/yuhong_plc/zzz.Services/obj/zzz.Services.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/yuhong_plc/zzz.Services/obj/zzz.Services.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Services/zzz.Services.csproj b/yuhong_plc/zzz.Services/zzz.Services.csproj new file mode 100644 index 0000000..0b8dbad --- /dev/null +++ b/yuhong_plc/zzz.Services/zzz.Services.csproj @@ -0,0 +1,18 @@ + + + + net6.0 + enable + True + ..\zzz.Api\zzz.Services.xml + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Tasks/QuartzNet/ISchedulerCenter.cs b/yuhong_plc/zzz.Tasks/QuartzNet/ISchedulerCenter.cs new file mode 100644 index 0000000..de1457b --- /dev/null +++ b/yuhong_plc/zzz.Tasks/QuartzNet/ISchedulerCenter.cs @@ -0,0 +1,79 @@ + +using System.Collections.Generic; +using System.Threading.Tasks; +using zzz.Model; +using zzz.Model.Entity; +using zzz.Model.ViewModels; + +namespace zzz.Tasks +{ + /// + /// 服务调度接口 + /// + public interface ISchedulerCenter + { + + /// + /// 开启任务调度 + /// + /// + Task> StartScheduleAsync(); + /// + /// 停止任务调度 + /// + /// + Task> StopScheduleAsync(); + /// + /// + /// + /// + /// + Task> AddScheduleJobAsync(TasksQz sysSchedule); + /// + /// 停止一个任务 + /// + /// + /// + Task> StopScheduleJobAsync(TasksQz sysSchedule); + /// + /// 检测任务是否存在 + /// + /// + /// + Task IsExistScheduleJobAsync(TasksQz sysSchedule); + /// + /// 暂停指定的计划任务 + /// + /// + /// + Task> PauseJob(TasksQz sysSchedule); + /// + /// 恢复一个任务 + /// + /// + /// + Task> ResumeJob(TasksQz sysSchedule); + + /// + /// 获取任务触发器状态 + /// + /// + /// + Task> GetTaskStaus(TasksQz sysSchedule); + /// + /// 获取触发器标识 + /// + /// + /// + string GetTriggerState(string key); + + /// + /// 立即执行 一个任务 + /// + /// + /// + Task> ExecuteJobAsync(TasksQz tasksQz); + + } + +} diff --git a/yuhong_plc/zzz.Tasks/QuartzNet/JobFactory.cs b/yuhong_plc/zzz.Tasks/QuartzNet/JobFactory.cs new file mode 100644 index 0000000..bd1dd24 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/QuartzNet/JobFactory.cs @@ -0,0 +1,51 @@ +using Microsoft.Extensions.DependencyInjection; +using Quartz; +using Quartz.Spi; +using System; + +namespace zzz.Tasks +{ + public class JobFactory : IJobFactory + { + /// + /// 注入反射获取依赖对象 + /// + private readonly IServiceProvider _serviceProvider; + public JobFactory(IServiceProvider serviceProvider) + { + _serviceProvider = serviceProvider; + } + /// + /// 实现接口Job + /// + /// + /// + /// + public IJob NewJob(TriggerFiredBundle bundle, IScheduler scheduler) + { + try + { + //需要安装依赖 WebApiClient.Extensions.DependencyInjection + var serviceScope = _serviceProvider.CreateScope(); + var job = serviceScope.ServiceProvider.GetService(bundle.JobDetail.JobType) as IJob; + return job; + + } + catch (Exception) + { + throw; + } + } + + public void ReturnJob(IJob job) + { + var disposable = job as IDisposable; + if (disposable != null) + { + disposable.Dispose(); + } + + } + } + +} diff --git a/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/JobBase.cs b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/JobBase.cs new file mode 100644 index 0000000..5c8ba6e --- /dev/null +++ b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/JobBase.cs @@ -0,0 +1,69 @@ +using zzz; +using zzz.Model.Entity; +using zzz.Services.Sys.TasksQzs; +using Quartz; +using System; +using System.Diagnostics; +using System.Threading.Tasks; + +namespace zzz.Tasks +{ + public class JobBase + { + public ITasksQzServices _tasksQzServices; + /// + /// 执行指定任务 + /// + /// + /// + public async Task ExecuteJob(IJobExecutionContext context, Func func) + { + //记录Job时间 + Stopwatch stopwatch = new Stopwatch(); + //JOBID + long jobid = context.JobDetail.Key.Name.ObjToInt(); + //JOB组名 + string groupName = context.JobDetail.Key.Group; + //日志 + string jobHistory = $"【{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}】【执行开始】【Id:{jobid},组别:{groupName}】"; + //耗时 + double taskSeconds = 0; + try + { + stopwatch.Start(); + await func();//执行任务 + stopwatch.Stop(); + jobHistory += $",【{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}】【执行成功】"; + } + catch (Exception ex) + { + JobExecutionException e2 = new JobExecutionException(ex); + //true 是立即重新执行任务 + e2.RefireImmediately = true; + jobHistory += $",【{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}】【执行失败:{ex.Message}】"; + } + finally + { + taskSeconds = Math.Round(stopwatch.Elapsed.TotalSeconds, 3); + jobHistory += $",【{DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")}】【执行结束】(耗时:{taskSeconds}秒)"; + if (_tasksQzServices != null) + { + var model = await _tasksQzServices.GetOneById(jobid); + if (model != null) + { + model.RunTimes += 1; + var separator = "
"; + // 这里注意数据库字段的长度问题,超过限制,会造成数据库remark不更新问题。 + model.Remark = jobHistory; + //model.Remark = $"{jobHistory}{separator}" + string.Join(separator, StringHelper.GetTopDataBySeparator(model.Remark, separator, 9)); + await _tasksQzServices.UpdOne(model); + } + } + } + + Console.Out.WriteLine(jobHistory); + return jobHistory; + } + } + +} diff --git a/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_Blogs_Quartz.cs b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_Blogs_Quartz.cs new file mode 100644 index 0000000..40c7ee3 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_Blogs_Quartz.cs @@ -0,0 +1,94 @@ +using zzz; +using zzz.Common; +using zzz.Common.LogHelper; +using zzz.Model.Entity; +using zzz.Services.Sys.OperateLogs; +using zzz.Services.Sys.TasksQzs; +using Microsoft.Extensions.Hosting; +using Microsoft.Extensions.Logging; +using Quartz; +using System.Text; + +/// +/// 这里要注意下,命名空间和程序集是一样的,不然反射不到 +/// +namespace zzz.Tasks +{ + public class Job_Blogs_Quartz : JobBase, IJob + { + public ILogger _logger = null; + private readonly IOperateLogServices _operateLogServices; + private readonly IHostEnvironment _environment; + + public Job_Blogs_Quartz( + ILogger logger, + IOperateLogServices operateLogServices, + IHostEnvironment environment, + ITasksQzServices tasksQzServices + ) + { + _logger = logger; + _operateLogServices = operateLogServices; + _environment = environment; + _tasksQzServices = tasksQzServices; + } + public async Task Execute(IJobExecutionContext context) + { + var executeLog = await ExecuteJob(context, async () => await Run(context)); + } + public async Task Run(IJobExecutionContext context) + { + //var list = await _blogArticleServices.Query(); + // 也可以通过数据库配置,获取传递过来的参数 + //JobDataMap data = context.JobDetail.JobDataMap; + //int jobId = data.GetInt("JobParam"); + ConsoleHelper.WriteColorLine("执行任务具体XXXXXXXXXXX", ConsoleColor.Red); + + _logger.LogInformation("执行任务具体XXXXXXXXXXX!"); + + // 可以直接获取 JobDetail 的值 + var jobKey = context.JobDetail.Key; + var jobId = jobKey.Name; + // 也可以通过数据库配置,获取传递过来的参数 + JobDataMap data = context.JobDetail.JobDataMap; + + List excLogs = new List(); + + var exclogContent = LogLock.ReadLog(Path.Combine(_environment.ContentRootPath, "Log"), $"GlobalExceptionLogs_{DateTime.Now.ToString("yyyMMdd")}.log", Encoding.UTF8); + + if (!string.IsNullOrEmpty(exclogContent)) + { + excLogs = exclogContent.Split("--------------------------------") + .Where(d => !string.IsNullOrEmpty(d) && d != "\n" && d != "\r\n") + .Select(d => new LogInfo + { + Datetime = (d.Split("|")[0]).Split(',')[0].ObjToDate(), + Content = d.Split("|")[1]?.Replace("\r\n", "
"), + LogColor = "EXC", + Import = 9, + }).ToList(); + } + + var filterDatetime = DateTime.Now.AddHours(-1); + excLogs = excLogs.Where(d => d.Datetime >= filterDatetime).ToList(); + + var operateLogs = new List() { }; + excLogs.ForEach(m => + { + operateLogs.Add(new OperateLog() + { + LogTime = m.Datetime, + Description = m.Content, + IPAddress = m.IP, + UserId = 0, + }); + }); + + + if (operateLogs.Count > 0) + { + //await _operateLogServices.Add(operateLogs); + } + } + } +} diff --git a/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line13.cs b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line13.cs new file mode 100644 index 0000000..6d8ed32 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line13.cs @@ -0,0 +1,68 @@ +using log4net; +using log4net.Repository.Hierarchy; +using Microsoft.Extensions.Logging; +using Quartz; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using zzz.Common.Helper; +using zzz.Common.LogHelper; +using zzz.Model.Entity; +using zzz.Services.ReadPLC; +using zzz.Services.Sys.OperateLogs; +using zzz.Services.Sys.TasksQzs; + +/// +/// 这里要注意下,命名空间和程序集是一样的,不然反射不到 +/// +namespace zzz.Tasks +{ + public class Job_PLC_read_line13 : JobBase, IJob + { + public ILogger _logger = null; + private readonly IReadPLCDataService _readPlcDataService; + //private readonly IWebHostEnvironment _environment; + + public Job_PLC_read_line13( + ILogger logger, + IReadPLCDataService readPlcDataService, + //IWebHostEnvironment environment, + ITasksQzServices tasksQzServices + ) + { + _logger = logger; + _readPlcDataService = readPlcDataService; + //_environment = environment; + _tasksQzServices = tasksQzServices; + } + public async Task Execute(IJobExecutionContext context) + { + var executeLog = await ExecuteJob(context, async () => await Run(context)); + } + public async Task Run(IJobExecutionContext context) + { + //var list = await _blogArticleServices.Query(); + // 也可以通过数据库配置,获取传递过来的参数 + //JobDataMap data = context.JobDetail.JobDataMap; + //int jobId = data.GetInt("JobParam"); + //ConsoleHelper.WriteColorLine("执行任务具体XXXXXXXXXXX", ConsoleColor.Red); + + + // 可以直接获取 JobDetail 的值 + var jobKey = context.JobDetail.Key; + var jobId = jobKey.Name; + // 也可以通过数据库配置,获取传递过来的参数 + JobDataMap data = context.JobDetail.JobDataMap; + + _logger.LogInformation($"执行任务{jobKey}-{jobId}"); + + var jobParam = JsonHelper.JsonToObj(data["JobParam"].ToString()); + + await _readPlcDataService.ReadDataLine13(jobParam); + + } + } +} diff --git a/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line15.cs b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line15.cs new file mode 100644 index 0000000..2c9c4b9 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line15.cs @@ -0,0 +1,58 @@ +using Microsoft.Extensions.Logging; +using Quartz; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using zzz.Common.Helper; +using zzz.Services.ReadPLC; +using zzz.Services.Sys.TasksQzs; + +namespace zzz.Tasks +{ + public class Job_PLC_read_line15 : JobBase, IJob + { + public ILogger _logger = null; + private readonly IReadPLCDataService _readPlcDataService; + + + public Job_PLC_read_line15( + ILogger logger, + IReadPLCDataService readPlcDataService, + ITasksQzServices tasksQzServices + ) + { + _logger = logger; + _readPlcDataService = readPlcDataService; + _tasksQzServices = tasksQzServices; + } + public async Task Execute(IJobExecutionContext context) + { + var executeLog = await ExecuteJob(context, async () => await Run(context)); + } + public async Task Run(IJobExecutionContext context) + { + //var list = await _blogArticleServices.Query(); + // 也可以通过数据库配置,获取传递过来的参数 + //JobDataMap data = context.JobDetail.JobDataMap; + //int jobId = data.GetInt("JobParam"); + //ConsoleHelper.WriteColorLine("执行任务具体XXXXXXXXXXX", ConsoleColor.Red); + + + // 可以直接获取 JobDetail 的值 + var jobKey = context.JobDetail.Key; + var jobId = jobKey.Name; + // 也可以通过数据库配置,获取传递过来的参数 + JobDataMap data = context.JobDetail.JobDataMap; + + _logger.LogInformation($"执行任务{jobKey}-{jobId}"); + + var jobParam = JsonHelper.JsonToObj(data["JobParam"].ToString()); + + await _readPlcDataService.ReadDataLine15(jobParam); + + } + } +} + diff --git a/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line16.cs b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line16.cs new file mode 100644 index 0000000..3a6702c --- /dev/null +++ b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line16.cs @@ -0,0 +1,68 @@ +using log4net; +using log4net.Repository.Hierarchy; +using Microsoft.Extensions.Logging; +using Quartz; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using zzz.Common.Helper; +using zzz.Common.LogHelper; +using zzz.Model.Entity; +using zzz.Services.ReadPLC; +using zzz.Services.Sys.OperateLogs; +using zzz.Services.Sys.TasksQzs; + +/// +/// 这里要注意下,命名空间和程序集是一样的,不然反射不到 +/// +namespace zzz.Tasks +{ + public class Job_PLC_read_line16 : JobBase, IJob + { + public ILogger _logger = null; + private readonly IReadPLCDataService _readPlcDataService; + //private readonly IWebHostEnvironment _environment; + + public Job_PLC_read_line16( + ILogger logger, + IReadPLCDataService readPlcDataService, + //IWebHostEnvironment environment, + ITasksQzServices tasksQzServices + ) + { + _logger = logger; + _readPlcDataService = readPlcDataService; + //_environment = environment; + _tasksQzServices = tasksQzServices; + } + public async Task Execute(IJobExecutionContext context) + { + var executeLog = await ExecuteJob(context, async () => await Run(context)); + } + public async Task Run(IJobExecutionContext context) + { + //var list = await _blogArticleServices.Query(); + // 也可以通过数据库配置,获取传递过来的参数 + //JobDataMap data = context.JobDetail.JobDataMap; + //int jobId = data.GetInt("JobParam"); + //ConsoleHelper.WriteColorLine("执行任务具体XXXXXXXXXXX", ConsoleColor.Red); + + + // 可以直接获取 JobDetail 的值 + var jobKey = context.JobDetail.Key; + var jobId = jobKey.Name; + // 也可以通过数据库配置,获取传递过来的参数 + JobDataMap data = context.JobDetail.JobDataMap; + + _logger.LogInformation($"执行任务{jobKey}-{jobId}"); + + var jobParam = JsonHelper.JsonToObj(data["JobParam"].ToString()); + + await _readPlcDataService.ReadDataLine16(jobParam); + + } + } +} diff --git a/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line17.cs b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line17.cs new file mode 100644 index 0000000..9d9b610 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line17.cs @@ -0,0 +1,68 @@ +using log4net; +using log4net.Repository.Hierarchy; +using Microsoft.Extensions.Logging; +using Quartz; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using zzz.Common.Helper; +using zzz.Common.LogHelper; +using zzz.Model.Entity; +using zzz.Services.ReadPLC; +using zzz.Services.Sys.OperateLogs; +using zzz.Services.Sys.TasksQzs; + +/// +/// 这里要注意下,命名空间和程序集是一样的,不然反射不到 +/// +namespace zzz.Tasks +{ + public class Job_PLC_read_line17 : JobBase, IJob + { + public ILogger _logger = null; + private readonly IReadPLCDataService _readPlcDataService; + //private readonly IWebHostEnvironment _environment; + + public Job_PLC_read_line17( + ILogger logger, + IReadPLCDataService readPlcDataService, + //IWebHostEnvironment environment, + ITasksQzServices tasksQzServices + ) + { + _logger = logger; + _readPlcDataService = readPlcDataService; + //_environment = environment; + _tasksQzServices = tasksQzServices; + } + public async Task Execute(IJobExecutionContext context) + { + var executeLog = await ExecuteJob(context, async () => await Run(context)); + } + public async Task Run(IJobExecutionContext context) + { + //var list = await _blogArticleServices.Query(); + // 也可以通过数据库配置,获取传递过来的参数 + //JobDataMap data = context.JobDetail.JobDataMap; + //int jobId = data.GetInt("JobParam"); + //ConsoleHelper.WriteColorLine("执行任务具体XXXXXXXXXXX", ConsoleColor.Red); + + + // 可以直接获取 JobDetail 的值 + var jobKey = context.JobDetail.Key; + var jobId = jobKey.Name; + // 也可以通过数据库配置,获取传递过来的参数 + JobDataMap data = context.JobDetail.JobDataMap; + + _logger.LogInformation($"执行任务{jobKey}-{jobId}"); + + var jobParam = JsonHelper.JsonToObj(data["JobParam"].ToString()); + + await _readPlcDataService.ReadDataLine17(jobParam); + + } + } +} diff --git a/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line18.cs b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line18.cs new file mode 100644 index 0000000..58000df --- /dev/null +++ b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line18.cs @@ -0,0 +1,68 @@ +using log4net; +using log4net.Repository.Hierarchy; +using Microsoft.Extensions.Logging; +using Quartz; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using zzz.Common.Helper; +using zzz.Common.LogHelper; +using zzz.Model.Entity; +using zzz.Services.ReadPLC; +using zzz.Services.Sys.OperateLogs; +using zzz.Services.Sys.TasksQzs; + +/// +/// 这里要注意下,命名空间和程序集是一样的,不然反射不到 +/// +namespace zzz.Tasks +{ + public class Job_PLC_read_line18 : JobBase, IJob + { + public ILogger _logger = null; + private readonly IReadPLCDataService _readPlcDataService; + //private readonly IWebHostEnvironment _environment; + + public Job_PLC_read_line18( + ILogger logger, + IReadPLCDataService readPlcDataService, + //IWebHostEnvironment environment, + ITasksQzServices tasksQzServices + ) + { + _logger = logger; + _readPlcDataService = readPlcDataService; + //_environment = environment; + _tasksQzServices = tasksQzServices; + } + public async Task Execute(IJobExecutionContext context) + { + var executeLog = await ExecuteJob(context, async () => await Run(context)); + } + public async Task Run(IJobExecutionContext context) + { + //var list = await _blogArticleServices.Query(); + // 也可以通过数据库配置,获取传递过来的参数 + //JobDataMap data = context.JobDetail.JobDataMap; + //int jobId = data.GetInt("JobParam"); + //ConsoleHelper.WriteColorLine("执行任务具体XXXXXXXXXXX", ConsoleColor.Red); + + + // 可以直接获取 JobDetail 的值 + var jobKey = context.JobDetail.Key; + var jobId = jobKey.Name; + // 也可以通过数据库配置,获取传递过来的参数 + JobDataMap data = context.JobDetail.JobDataMap; + + _logger.LogInformation($"执行任务{jobKey}-{jobId}"); + + var jobParam = JsonHelper.JsonToObj(data["JobParam"].ToString()); + + await _readPlcDataService.ReadDataLine18(jobParam); + + } + } +} diff --git a/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line19.cs b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line19.cs new file mode 100644 index 0000000..aadd724 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line19.cs @@ -0,0 +1,68 @@ +using log4net; +using log4net.Repository.Hierarchy; +using Microsoft.Extensions.Logging; +using Quartz; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using zzz.Common.Helper; +using zzz.Common.LogHelper; +using zzz.Model.Entity; +using zzz.Services.ReadPLC; +using zzz.Services.Sys.OperateLogs; +using zzz.Services.Sys.TasksQzs; + +/// +/// 这里要注意下,命名空间和程序集是一样的,不然反射不到 +/// +namespace zzz.Tasks +{ + public class Job_PLC_read_line19 : JobBase, IJob + { + public ILogger _logger = null; + private readonly IReadPLCDataService _readPlcDataService; + //private readonly IWebHostEnvironment _environment; + + public Job_PLC_read_line19( + ILogger logger, + IReadPLCDataService readPlcDataService, + //IWebHostEnvironment environment, + ITasksQzServices tasksQzServices + ) + { + _logger = logger; + _readPlcDataService = readPlcDataService; + //_environment = environment; + _tasksQzServices = tasksQzServices; + } + public async Task Execute(IJobExecutionContext context) + { + var executeLog = await ExecuteJob(context, async () => await Run(context)); + } + public async Task Run(IJobExecutionContext context) + { + //var list = await _blogArticleServices.Query(); + // 也可以通过数据库配置,获取传递过来的参数 + //JobDataMap data = context.JobDetail.JobDataMap; + //int jobId = data.GetInt("JobParam"); + //ConsoleHelper.WriteColorLine("执行任务具体XXXXXXXXXXX", ConsoleColor.Red); + + + // 可以直接获取 JobDetail 的值 + var jobKey = context.JobDetail.Key; + var jobId = jobKey.Name; + // 也可以通过数据库配置,获取传递过来的参数 + JobDataMap data = context.JobDetail.JobDataMap; + + _logger.LogInformation($"执行任务{jobKey}-{jobId}"); + + var jobParam = JsonHelper.JsonToObj(data["JobParam"].ToString()); + + await _readPlcDataService.ReadDataLine19(jobParam); + + } + } +} diff --git a/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line2.cs b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line2.cs new file mode 100644 index 0000000..060961b --- /dev/null +++ b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line2.cs @@ -0,0 +1,58 @@ +using Microsoft.Extensions.Logging; +using Quartz; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using zzz.Common.Helper; +using zzz.Services.ReadPLC; +using zzz.Services.Sys.TasksQzs; + +namespace zzz.Tasks +{ + public class Job_PLC_read_line2 : JobBase, IJob + { + public ILogger _logger = null; + private readonly IReadPLCDataService _readPlcDataService; + + + public Job_PLC_read_line2( + ILogger logger, + IReadPLCDataService readPlcDataService, + ITasksQzServices tasksQzServices + ) + { + _logger = logger; + _readPlcDataService = readPlcDataService; + _tasksQzServices = tasksQzServices; + } + public async Task Execute(IJobExecutionContext context) + { + var executeLog = await ExecuteJob(context, async () => await Run(context)); + } + public async Task Run(IJobExecutionContext context) + { + //var list = await _blogArticleServices.Query(); + // 也可以通过数据库配置,获取传递过来的参数 + //JobDataMap data = context.JobDetail.JobDataMap; + //int jobId = data.GetInt("JobParam"); + //ConsoleHelper.WriteColorLine("执行任务具体XXXXXXXXXXX", ConsoleColor.Red); + + + // 可以直接获取 JobDetail 的值 + var jobKey = context.JobDetail.Key; + var jobId = jobKey.Name; + // 也可以通过数据库配置,获取传递过来的参数 + JobDataMap data = context.JobDetail.JobDataMap; + + _logger.LogInformation($"执行任务{jobKey}-{jobId}"); + + var jobParam = JsonHelper.JsonToObj(data["JobParam"].ToString()); + + await _readPlcDataService.ReadDataLine2(jobParam); + + } + } +} + diff --git a/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line20.cs b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line20.cs new file mode 100644 index 0000000..c83956e --- /dev/null +++ b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line20.cs @@ -0,0 +1,58 @@ +using Microsoft.Extensions.Logging; +using Quartz; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using zzz.Common.Helper; +using zzz.Services.ReadPLC; +using zzz.Services.Sys.TasksQzs; + +namespace zzz.Tasks +{ + public class Job_PLC_read_line20 : JobBase, IJob + { + public ILogger _logger = null; + private readonly IReadPLCDataService _readPlcDataService; + + + public Job_PLC_read_line20( + ILogger logger, + IReadPLCDataService readPlcDataService, + ITasksQzServices tasksQzServices + ) + { + _logger = logger; + _readPlcDataService = readPlcDataService; + _tasksQzServices = tasksQzServices; + } + public async Task Execute(IJobExecutionContext context) + { + var executeLog = await ExecuteJob(context, async () => await Run(context)); + } + public async Task Run(IJobExecutionContext context) + { + //var list = await _blogArticleServices.Query(); + // 也可以通过数据库配置,获取传递过来的参数 + //JobDataMap data = context.JobDetail.JobDataMap; + //int jobId = data.GetInt("JobParam"); + //ConsoleHelper.WriteColorLine("执行任务具体XXXXXXXXXXX", ConsoleColor.Red); + + + // 可以直接获取 JobDetail 的值 + var jobKey = context.JobDetail.Key; + var jobId = jobKey.Name; + // 也可以通过数据库配置,获取传递过来的参数 + JobDataMap data = context.JobDetail.JobDataMap; + + _logger.LogInformation($"执行任务{jobKey}-{jobId}"); + + var jobParam = JsonHelper.JsonToObj(data["JobParam"].ToString()); + + await _readPlcDataService.ReadDataLine20(jobParam); + + } + } +} + diff --git a/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line7.cs b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line7.cs new file mode 100644 index 0000000..2877282 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/QuartzNet/Jobs/Job_PLC_read_line7.cs @@ -0,0 +1,58 @@ +using Microsoft.Extensions.Logging; +using Quartz; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using zzz.Common.Helper; +using zzz.Services.ReadPLC; +using zzz.Services.Sys.TasksQzs; + +namespace zzz.Tasks +{ + public class Job_PLC_read_line7 : JobBase, IJob + { + public ILogger _logger = null; + private readonly IReadPLCDataService _readPlcDataService; + + + public Job_PLC_read_line7( + ILogger logger, + IReadPLCDataService readPlcDataService, + ITasksQzServices tasksQzServices + ) + { + _logger = logger; + _readPlcDataService = readPlcDataService; + _tasksQzServices = tasksQzServices; + } + public async Task Execute(IJobExecutionContext context) + { + var executeLog = await ExecuteJob(context, async () => await Run(context)); + } + public async Task Run(IJobExecutionContext context) + { + //var list = await _blogArticleServices.Query(); + // 也可以通过数据库配置,获取传递过来的参数 + //JobDataMap data = context.JobDetail.JobDataMap; + //int jobId = data.GetInt("JobParam"); + //ConsoleHelper.WriteColorLine("执行任务具体XXXXXXXXXXX", ConsoleColor.Red); + + + // 可以直接获取 JobDetail 的值 + var jobKey = context.JobDetail.Key; + var jobId = jobKey.Name; + // 也可以通过数据库配置,获取传递过来的参数 + JobDataMap data = context.JobDetail.JobDataMap; + + _logger.LogInformation($"执行任务{jobKey}-{jobId}"); + + var jobParam = JsonHelper.JsonToObj(data["JobParam"].ToString()); + + await _readPlcDataService.ReadDataLine7(jobParam); + + } + } +} + diff --git a/yuhong_plc/zzz.Tasks/QuartzNet/SchedulerCenterServer.cs b/yuhong_plc/zzz.Tasks/QuartzNet/SchedulerCenterServer.cs new file mode 100644 index 0000000..34cd381 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/QuartzNet/SchedulerCenterServer.cs @@ -0,0 +1,491 @@ +using Quartz; +using Quartz.Impl; +using Quartz.Impl.Triggers; +using Quartz.Spi; +using System; +using System.Collections.Generic; +using System.Collections.Specialized; +using System.Reflection; +using System.Threading.Tasks; +using zzz.Model; +using zzz.Model.Entity; +using zzz.Model.ViewModels; + +namespace zzz.Tasks +{ + /// + /// 任务调度管理中心 + /// + public class SchedulerCenterServer : ISchedulerCenter + { + private Task _scheduler; + private readonly IJobFactory _iocjobFactory; + public SchedulerCenterServer(IJobFactory jobFactory) + { + _iocjobFactory = jobFactory; + _scheduler = GetSchedulerAsync(); + } + private Task GetSchedulerAsync() + { + if (_scheduler != null) + return this._scheduler; + else + { + // 从Factory中获取Scheduler实例 + NameValueCollection collection = new NameValueCollection + { + { "quartz.serializer.type", "binary" }, + }; + StdSchedulerFactory factory = new StdSchedulerFactory(collection); + return _scheduler = factory.GetScheduler(); + } + } + + /// + /// 开启任务调度 + /// + /// + public async Task> StartScheduleAsync() + { + var result = new MessageModel(); + try + { + this._scheduler.Result.JobFactory = this._iocjobFactory; + if (!this._scheduler.Result.IsStarted) + { + //等待任务运行完成 + await this._scheduler.Result.Start(); + await Console.Out.WriteLineAsync("任务调度开启!"); + result.success = true; + result.message = $"任务调度开启成功"; + return result; + } + else + { + result.success = false; + result.message = $"任务调度已经开启"; + return result; + } + } + catch (Exception) + { + throw; + } + } + + /// + /// 停止任务调度 + /// + /// + public async Task> StopScheduleAsync() + { + var result = new MessageModel(); + try + { + if (!this._scheduler.Result.IsShutdown) + { + //等待任务运行完成 + await this._scheduler.Result.Shutdown(); + await Console.Out.WriteLineAsync("任务调度停止!"); + result.success = true; + result.message = $"任务调度停止成功"; + return result; + } + else + { + result.success = false; + result.message = $"任务调度已经停止"; + return result; + } + } + catch (Exception) + { + throw; + } + } + + /// + /// 添加一个计划任务(映射程序集指定IJob实现类) + /// + /// + /// + /// + public async Task> AddScheduleJobAsync(TasksQz tasksQz) + { + var result = new MessageModel(); + + if (tasksQz != null) + { + try + { + JobKey jobKey = new JobKey(tasksQz.Id.ToString(), tasksQz.JobGroup); + if (await _scheduler.Result.CheckExists(jobKey)) + { + result.success = false; + result.message = $"该任务计划已经在执行:【{tasksQz.Name}】,请勿重复启动!"; + return result; + } + #region 设置开始时间和结束时间 + + if (tasksQz.BeginTime == null) + { + tasksQz.BeginTime = DateTime.Now; + } + DateTimeOffset starRunTime = DateBuilder.NextGivenSecondDate(tasksQz.BeginTime, 1);//设置开始时间 + if (tasksQz.EndTime == null) + { + tasksQz.EndTime = DateTime.MaxValue.AddDays(-1); + } + DateTimeOffset endRunTime = DateBuilder.NextGivenSecondDate(tasksQz.EndTime, 1);//设置暂停时间 + + #endregion + + #region 通过反射获取程序集类型和类 + + Assembly assembly = Assembly.Load(new AssemblyName(tasksQz.AssemblyName)); + Type jobType = assembly.GetType(tasksQz.AssemblyName + "." + tasksQz.ClassName); + + #endregion + //判断任务调度是否开启 + if (!_scheduler.Result.IsStarted) + { + await StartScheduleAsync(); + } + + //传入反射出来的执行程序集 + IJobDetail job = new JobDetailImpl(tasksQz.Id.ToString(), tasksQz.JobGroup, jobType); + job.JobDataMap.Add("JobParam", tasksQz.JobParams); + ITrigger trigger; + + #region 泛型传递 + //IJobDetail job = JobBuilder.Create() + // .WithIdentity(sysSchedule.Name, sysSchedule.JobGroup) + // .Build(); + #endregion + + if (tasksQz.Cron != null && CronExpression.IsValidExpression(tasksQz.Cron) && tasksQz.TriggerType > 0) + { + trigger = CreateCronTrigger(tasksQz); + + ((CronTriggerImpl)trigger).MisfireInstruction = MisfireInstruction.CronTrigger.DoNothing; + } + else + { + trigger = CreateSimpleTrigger(tasksQz); + } + + // 告诉Quartz使用我们的触发器来安排作业 + await _scheduler.Result.ScheduleJob(job, trigger); + //await Task.Delay(TimeSpan.FromSeconds(120)); + //await Console.Out.WriteLineAsync("关闭了调度器!"); + //await _scheduler.Result.Shutdown(); + result.success = true; + result.message = $"【{tasksQz.Name}】成功"; + return result; + } + catch (Exception ex) + { + result.success = false; + result.message = $"任务计划异常:【{ex.Message}】"; + return result; + } + } + else + { + result.success = false; + result.message = $"任务计划不存在:【{tasksQz?.Name}】"; + return result; + } + } + + /// + /// 任务是否存在? + /// + /// + public async Task IsExistScheduleJobAsync(TasksQz sysSchedule) + { + JobKey jobKey = new JobKey(sysSchedule.Id.ToString(), sysSchedule.JobGroup); + if (await _scheduler.Result.CheckExists(jobKey)) + { + return true; + } + else + { + return false; + } + } + /// + /// 暂停一个指定的计划任务 + /// + /// + public async Task> StopScheduleJobAsync(TasksQz sysSchedule) + { + var result = new MessageModel(); + try + { + JobKey jobKey = new JobKey(sysSchedule.Id.ToString(), sysSchedule.JobGroup); + if (!await _scheduler.Result.CheckExists(jobKey)) + { + result.success = false; + result.message = $"未找到要暂停的任务:【{sysSchedule.Name}】"; + return result; + } + else + { + await this._scheduler.Result.DeleteJob(jobKey); + result.success = true; + result.message = $"【{sysSchedule.Name}】成功"; + return result; + } + } + catch (Exception) + { + throw; + } + } + + /// + /// 恢复指定的计划任务 + /// + /// + /// + public async Task> ResumeJob(TasksQz sysSchedule) + { + var result = new MessageModel(); + try + { + JobKey jobKey = new JobKey(sysSchedule.Id.ToString(), sysSchedule.JobGroup); + if (!await _scheduler.Result.CheckExists(jobKey)) + { + result.success = false; + result.message = $"未找到要恢复的任务:【{sysSchedule.Name}】"; + return result; + } + await this._scheduler.Result.ResumeJob(jobKey); + result.success = true; + result.message = $"【{sysSchedule.Name}】成功"; + return result; + } + catch (Exception) + { + throw; + } + } + /// + /// 暂停指定的计划任务 + /// + /// + /// + public async Task> PauseJob(TasksQz sysSchedule) + { + var result = new MessageModel(); + try + { + JobKey jobKey = new JobKey(sysSchedule.Id.ToString(), sysSchedule.JobGroup); + if (!await _scheduler.Result.CheckExists(jobKey)) + { + result.success = false; + result.message = $"未找到要暂停的任务:【{sysSchedule.Name}】"; + return result; + } + await this._scheduler.Result.PauseJob(jobKey); + result.success = true; + result.message = $"【{sysSchedule.Name}】成功"; + return result; + } + catch (Exception) + { + throw; + } + } + #region 状态状态帮助方法 + public async Task> GetTaskStaus(TasksQz sysSchedule) + { + + var ls = new List(); + var noTask = new List{ new TaskInfoDto { + jobId = sysSchedule.Id.ToString(), + jobGroup = sysSchedule.JobGroup, + triggerId = "", + triggerGroup = "", + triggerStatus = "不存在" + } }; + JobKey jobKey = new JobKey(sysSchedule.Id.ToString(), sysSchedule.JobGroup); + IJobDetail job = await this._scheduler.Result.GetJobDetail(jobKey); + if (job == null) + { + return noTask; + } + //info.Append(string.Format("任务ID:{0}\r\n任务名称:{1}\r\n", job.Key.Name, job.Description)); + var triggers = await this._scheduler.Result.GetTriggersOfJob(jobKey); + if (triggers == null || triggers.Count == 0) + { + return noTask; + } + foreach (var trigger in triggers) + { + var triggerStaus = await this._scheduler.Result.GetTriggerState(trigger.Key); + string state = GetTriggerState(triggerStaus.ToString()); + ls.Add(new TaskInfoDto + { + jobId = job.Key.Name, + jobGroup = job.Key.Group, + triggerId = trigger.Key.Name, + triggerGroup = trigger.Key.Group, + triggerStatus = state + }); + //info.Append(string.Format("触发器ID:{0}\r\n触发器名称:{1}\r\n状态:{2}\r\n", item.Key.Name, item.Description, state)); + + } + return ls; + } + public string GetTriggerState(string key) + { + string state = null; + if (key != null) + key = key.ToUpper(); + switch (key) + { + case "1": + state = "暂停"; + break; + case "2": + state = "完成"; + break; + case "3": + state = "出错"; + break; + case "4": + state = "阻塞"; + break; + case "0": + state = "正常"; + break; + case "-1": + state = "不存在"; + break; + case "BLOCKED": + state = "阻塞"; + break; + case "COMPLETE": + state = "完成"; + break; + case "ERROR": + state = "出错"; + break; + case "NONE": + state = "不存在"; + break; + case "NORMAL": + state = "正常"; + break; + case "PAUSED": + state = "暂停"; + break; + } + return state; + } + #endregion + #region 创建触发器帮助方法 + + /// + /// 创建SimpleTrigger触发器(简单触发器) + /// + /// + /// + /// + /// + private ITrigger CreateSimpleTrigger(TasksQz sysSchedule) + { + if (sysSchedule.CycleRunTimes > 0) + { + ITrigger trigger = TriggerBuilder.Create() + .WithIdentity(sysSchedule.Id.ToString(), sysSchedule.JobGroup) + .StartAt(sysSchedule.BeginTime.Value) + .WithSimpleSchedule(x => x + .WithIntervalInSeconds(sysSchedule.IntervalSecond) + .WithRepeatCount(sysSchedule.CycleRunTimes - 1)) + .EndAt(sysSchedule.EndTime.Value) + .Build(); + return trigger; + } + else + { + ITrigger trigger = TriggerBuilder.Create() + .WithIdentity(sysSchedule.Id.ToString(), sysSchedule.JobGroup) + .StartAt(sysSchedule.BeginTime.Value) + .WithSimpleSchedule(x => x + .WithIntervalInSeconds(sysSchedule.IntervalSecond) + .RepeatForever() + ) + .EndAt(sysSchedule.EndTime.Value) + .Build(); + return trigger; + } + // 触发作业立即运行,然后每10秒重复一次,无限循环 + + } + /// + /// 创建类型Cron的触发器 + /// + /// + /// + private ITrigger CreateCronTrigger(TasksQz sysSchedule) + { + // 作业触发器 + return TriggerBuilder.Create() + .WithIdentity(sysSchedule.Id.ToString(), sysSchedule.JobGroup) + .StartAt(sysSchedule.BeginTime.Value)//开始时间 + .EndAt(sysSchedule.EndTime.Value)//结束数据 + .WithCronSchedule(sysSchedule.Cron)//指定cron表达式 + .ForJob(sysSchedule.Id.ToString(), sysSchedule.JobGroup)//作业名称 + .Build(); + } + #endregion + + + /// + /// 立即执行 一个任务 + /// + /// + /// + public async Task> ExecuteJobAsync(TasksQz tasksQz) + { + var result = new MessageModel(); + try + { + JobKey jobKey = new JobKey(tasksQz.Id.ToString(), tasksQz.JobGroup); + + //判断任务是否存在,存在则 触发一次,不存在则先添加一个任务,触发以后再 停止任务 + if (!await _scheduler.Result.CheckExists(jobKey)) + { + //不存在 则 添加一个计划任务 + await AddScheduleJobAsync(tasksQz); + + //触发执行一次 + await _scheduler.Result.TriggerJob(jobKey); + + //停止任务 + await StopScheduleJobAsync(tasksQz); + + result.success = true; + result.message = $"立即执行计划任务:【{tasksQz.Name}】成功"; + } + else + { + await _scheduler.Result.TriggerJob(jobKey); + result.success = true; + result.message = $"立即执行计划任务:【{tasksQz.Name}】成功"; + } + } + catch (Exception ex) + { + result.message = $"立即执行计划任务失败:【{ex.Message}】"; + } + + return result; + } + + + } +} diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Common.dll b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Common.dll new file mode 100644 index 0000000..993149d Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Common.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Common.pdb b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Common.pdb new file mode 100644 index 0000000..c259918 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Common.pdb differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Model.dll b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Model.dll new file mode 100644 index 0000000..0c5d675 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Model.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Model.pdb b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Model.pdb new file mode 100644 index 0000000..1747c5c Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Model.pdb differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Model.xml b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Model.xml new file mode 100644 index 0000000..5c555d6 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Model.xml @@ -0,0 +1,495 @@ + + + + cjyx.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 角色表 + + + + + 角色名 + + + + + 描述 + + + + + 排序 + + + + + 用户表 + + + + + 账号 + + + + + 密码(默认MD5加密) + + + + + 昵称 + + + + + 姓名 + + + + + 头像 + + + + + 生日 + + + + + 性别-男_1、女_2 CD08 + + + + + 邮箱 + + + + + 手机 + + + + + 最后登录IP + + + + + 最后登录时间 + + + + + 状态-正常_0、停用_1、删除_2 + + + + + 部门 + + + + + 部门 最后个组织 + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Repository.dll b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Repository.dll new file mode 100644 index 0000000..1e7e24e Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Repository.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Repository.pdb b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Repository.pdb new file mode 100644 index 0000000..596330b Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Repository.pdb differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Services.dll b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Services.dll new file mode 100644 index 0000000..59c5489 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Services.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Services.pdb b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Services.pdb new file mode 100644 index 0000000..bf6cd9c Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Services.pdb differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Services.xml b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Services.xml new file mode 100644 index 0000000..8d43a7c --- /dev/null +++ b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Services.xml @@ -0,0 +1,561 @@ + + + + cjyx.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 异步添加种子数据 + + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Tasks.deps.json b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Tasks.deps.json new file mode 100644 index 0000000..9038763 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Tasks.deps.json @@ -0,0 +1,1857 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "cjyx.Tasks/1.0.0": { + "dependencies": { + "Quartz": "3.4.0", + "cjyx.Services": "1.0.0" + }, + "runtime": { + "cjyx.Tasks.dll": {} + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.1", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "Newtonsoft.Json/11.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.2.21924" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Quartz/3.4.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.0.0" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "11.0.2", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.7.1": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.Pipelines/4.5.2": { + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "cjyx.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "cjyx.Common.dll": {} + } + }, + "cjyx.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "cjyx.Model.dll": {} + } + }, + "cjyx.Repository/1.0.0": { + "dependencies": { + "cjyx.Common": "1.0.0", + "cjyx.Model": "1.0.0" + }, + "runtime": { + "cjyx.Repository.dll": {} + } + }, + "cjyx.Services/1.0.0": { + "dependencies": { + "cjyx.Repository": "1.0.0" + }, + "runtime": { + "cjyx.Services.dll": {} + } + } + } + }, + "libraries": { + "cjyx.Tasks/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "Newtonsoft.Json/11.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", + "path": "newtonsoft.json/11.0.2", + "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Quartz/3.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N8350OAlQhd8zKg0ARFikGjh3bfAW/CF/KVxu2fTIlAALB/oC1eg54n/QAPYR5ryHuYyDr5G8/Qa4k+D/7OFRQ==", + "path": "quartz/3.4.0", + "hashPath": "quartz.3.4.0.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==", + "path": "system.diagnostics.diagnosticsource/4.7.1", + "hashPath": "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "path": "system.io.pipelines/4.5.2", + "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "cjyx.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "cjyx.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "cjyx.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "cjyx.Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Tasks.dll b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Tasks.dll new file mode 100644 index 0000000..7fc4043 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Tasks.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Tasks.pdb b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Tasks.pdb new file mode 100644 index 0000000..32e7e3a Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/cjyx.Tasks.pdb differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/ref/cjyx.Tasks.dll b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/ref/cjyx.Tasks.dll new file mode 100644 index 0000000..6918315 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/ref/cjyx.Tasks.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/ref/zzz.Tasks.dll b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/ref/zzz.Tasks.dll new file mode 100644 index 0000000..a385db7 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/ref/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Common.dll b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Common.dll new file mode 100644 index 0000000..6d6f1c6 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Common.pdb b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Common.pdb new file mode 100644 index 0000000..4c5a6d4 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Model.dll b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Model.dll new file mode 100644 index 0000000..98ddff2 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Model.pdb b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Model.pdb new file mode 100644 index 0000000..ee6d136 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Model.xml b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Model.xml new file mode 100644 index 0000000..90ea772 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Model.xml @@ -0,0 +1,1543 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 2线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Repository.dll b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Repository.dll new file mode 100644 index 0000000..991414c Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Repository.pdb b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Repository.pdb new file mode 100644 index 0000000..b9bcd32 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Repository.pdb differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Services.dll b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Services.dll new file mode 100644 index 0000000..691a5d0 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Services.pdb b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Services.pdb new file mode 100644 index 0000000..79fd96c Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Services.pdb differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Services.xml b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Services.xml new file mode 100644 index 0000000..623dba3 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Services.xml @@ -0,0 +1,941 @@ + + + + zzz.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 种子数据 服务 + + + + + 构造 + + + + + + 异步添加种子数据 + + + + + + + + 同步表结构 + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 种子数据 接口 + + + + + 同步表结构 + + + + + + + 设备名称 + + + + + 设备利用率DTO + + + + + x轴 + + + + + series + + + + + 动态月订单信息数据 + + + + + 生产计划达成率 + + + + + 订单交付率 + + + + + 生产数量 + + + + + 设备利用率 + + + + + 产品合格率 + + + + + 大屏生产工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 完成进度 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 各产品生产数量 + + + + + x轴 + + + + + series + + + + + PLC硬件信息 + + + + + eqmt_id + + + + + ip + + + + + 端口 + + + + + 读取PLC数据接口 + + + + + 读取13线数据 + + + + + 读取16线数据 + + + + + 读取17线数据 + + + + + 读取18线数据 + + + + + 读取19线数据 + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 读取PLC数据服务 + + + + + 构造 + + + + + 打开连接 + + + + + + + + 关闭连接 + + + + + 读取13线数据 + + + + + 读取16线数据 + 一个端口 + + + + + 读取19线数据 + 一个端口 + + + + + 读取17线数据 + 两个端口 + + + + + 读取18线数据 + 两个端口 + + + + + 创建间隔采集数据 + + + + + + 班次产量数据 + + + + + + 计算OEE + + + + + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Tasks.deps.json b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Tasks.deps.json new file mode 100644 index 0000000..3c332e0 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Tasks.deps.json @@ -0,0 +1,1876 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Tasks/1.0.0": { + "dependencies": { + "Quartz": "3.4.0", + "zzz.Services": "1.0.0" + }, + "runtime": { + "zzz.Tasks.dll": {} + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "HslCommunication/7.0.1": { + "dependencies": { + "Newtonsoft.Json": "12.0.2" + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": { + "assemblyVersion": "7.0.1.0", + "fileVersion": "7.0.1.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Newtonsoft.Json": "12.0.2", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "12.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.1", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "Newtonsoft.Json/12.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.2.23222" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Quartz/3.4.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.0.0" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "12.0.2", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.7.1": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.Pipelines/4.5.2": { + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Newtonsoft.Json": "12.0.2", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "runtime": { + "zzz.Repository.dll": {} + } + }, + "zzz.Services/1.0.0": { + "dependencies": { + "HslCommunication": "7.0.1", + "zzz.Repository": "1.0.0" + }, + "runtime": { + "zzz.Services.dll": {} + } + } + } + }, + "libraries": { + "zzz.Tasks/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "HslCommunication/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "path": "hslcommunication/7.0.1", + "hashPath": "hslcommunication.7.0.1.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "Newtonsoft.Json/12.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==", + "path": "newtonsoft.json/12.0.2", + "hashPath": "newtonsoft.json.12.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Quartz/3.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N8350OAlQhd8zKg0ARFikGjh3bfAW/CF/KVxu2fTIlAALB/oC1eg54n/QAPYR5ryHuYyDr5G8/Qa4k+D/7OFRQ==", + "path": "quartz/3.4.0", + "hashPath": "quartz.3.4.0.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==", + "path": "system.diagnostics.diagnosticsource/4.7.1", + "hashPath": "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "path": "system.io.pipelines/4.5.2", + "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Tasks.dll b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Tasks.dll new file mode 100644 index 0000000..57d97c0 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Tasks.pdb b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Tasks.pdb new file mode 100644 index 0000000..e87eaee Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Debug/net6.0/zzz.Tasks.pdb differ diff --git a/yuhong_plc/zzz.Tasks/bin/Release/net6.0/ref/zzz.Tasks.dll b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/ref/zzz.Tasks.dll new file mode 100644 index 0000000..645acba Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/ref/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Common.dll b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Common.dll new file mode 100644 index 0000000..64d9d86 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Common.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Common.pdb b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Common.pdb new file mode 100644 index 0000000..72c1cc3 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Common.pdb differ diff --git a/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Model.dll b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Model.dll new file mode 100644 index 0000000..9fb27f0 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Model.pdb b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Model.pdb new file mode 100644 index 0000000..2d4df51 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Model.xml b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Model.xml new file mode 100644 index 0000000..90ea772 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Model.xml @@ -0,0 +1,1543 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 2线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Repository.dll b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Repository.dll new file mode 100644 index 0000000..7d79fb4 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Repository.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Repository.pdb b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Repository.pdb new file mode 100644 index 0000000..b02178a Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Repository.pdb differ diff --git a/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Services.dll b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Services.dll new file mode 100644 index 0000000..120d205 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Services.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Services.pdb b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Services.pdb new file mode 100644 index 0000000..14b8434 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Services.pdb differ diff --git a/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Services.xml b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Services.xml new file mode 100644 index 0000000..623dba3 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Services.xml @@ -0,0 +1,941 @@ + + + + zzz.Services + + + + + 服务 + + + + + + + + + + + 构造 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 服务接口 + + + + + + 根据主键取数据 + + + + + + + + + 取分页数据 + + + + + + + + + + + 新增 实体 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + + 删除 + + + + + + + 种子数据 服务 + + + + + 构造 + + + + + + 异步添加种子数据 + + + + + + + + 同步表结构 + + + + + + + 下拉框DTO + + + + + + 通用主键 Input + + + + + + 主键 + + + + + 通用主键 Input + + + + + + ID + + + + + 更新时间 如果有值,会进行最后更新时间校验 + + + + + 分页共同画面 + + + + + 当前页码 + + + + + 页码容量 + + + + + 排序字段 + + + + + 排序方法,默认升序,前端传入的值是 descending ascending elementUI默认固定值 + + + + + 拼接好的sql 排序 + + + + + 权限 + + + + + 种子数据 接口 + + + + + 同步表结构 + + + + + + + 设备名称 + + + + + 设备利用率DTO + + + + + x轴 + + + + + series + + + + + 动态月订单信息数据 + + + + + 生产计划达成率 + + + + + 订单交付率 + + + + + 生产数量 + + + + + 设备利用率 + + + + + 产品合格率 + + + + + 大屏生产工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 完成进度 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 各产品生产数量 + + + + + x轴 + + + + + series + + + + + PLC硬件信息 + + + + + eqmt_id + + + + + ip + + + + + 端口 + + + + + 读取PLC数据接口 + + + + + 读取13线数据 + + + + + 读取16线数据 + + + + + 读取17线数据 + + + + + 读取18线数据 + + + + + 读取19线数据 + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 读取PLC数据服务 + + + + + 构造 + + + + + 打开连接 + + + + + + + + 关闭连接 + + + + + 读取13线数据 + + + + + 读取16线数据 + 一个端口 + + + + + 读取19线数据 + 一个端口 + + + + + 读取17线数据 + 两个端口 + + + + + 读取18线数据 + 两个端口 + + + + + 创建间隔采集数据 + + + + + + 班次产量数据 + + + + + + 计算OEE + + + + + + + + + 读取15线数据 + + + + + 读取7线数据 + + + + + + + 读取2线数据 + + + + + + + 读取20线数据 + + + + + + + 定时任务 列表 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 实现IJob的类 + + + + + 命名空间 + + + + + 类名 + + + + + 备注 + + + + + 计量单位 新增/编辑Dto + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 编辑Dto + + + + + 主键 + + + + + 更新时间 + + + + + 文字1 + + + + + 文字1 + + + + + 计量单位 显示Dto + + + + + 主键 + + + + + 更新时间 + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 排序 + + + + + 备注 + + + + + 计量单位 检索条件Dto + + + + + 单位编码 + + + + + 单位名称 + + + + + 助记符 + + + + + 备注 + + + + + + + + + + + + + + + + + + + + 取编辑数据 + + + + + + + 取列表分页数据 + + + + + + + 新增 + + + + + + + 编辑 + + + + + + + 编辑 + + + + + + + 删除 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Tasks.deps.json b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Tasks.deps.json new file mode 100644 index 0000000..3c332e0 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Tasks.deps.json @@ -0,0 +1,1876 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Tasks/1.0.0": { + "dependencies": { + "Quartz": "3.4.0", + "zzz.Services": "1.0.0" + }, + "runtime": { + "zzz.Tasks.dll": {} + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "HslCommunication/7.0.1": { + "dependencies": { + "Newtonsoft.Json": "12.0.2" + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": { + "assemblyVersion": "7.0.1.0", + "fileVersion": "7.0.1.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "log4net/2.0.14": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": { + "assemblyVersion": "2.0.14.0", + "fileVersion": "2.0.14.0" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "6.0.0", + "Newtonsoft.Json": "12.0.2", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "12.0.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.18316" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.1", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.322.12309" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "Newtonsoft.Json/12.0.2": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.2.23222" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "Quartz/3.4.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.0.0" + } + } + }, + "Serilog/2.11.0": { + "runtime": { + "lib/net5.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.11.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.11.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "12.0.2", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.7.1": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.Pipelines/4.5.2": { + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "WebApiClient.JIT/1.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Newtonsoft.Json": "12.0.2", + "System.Runtime.Caching": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": { + "assemblyVersion": "1.0.3.0", + "fileVersion": "1.0.3.0" + } + } + }, + "Yitter.IdGenerator/1.0.12": { + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": { + "assemblyVersion": "1.0.12.0", + "fileVersion": "1.0.12.0" + } + } + }, + "zzz.Common/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "runtime": { + "zzz.Common.dll": {} + } + }, + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "runtime": { + "zzz.Repository.dll": {} + } + }, + "zzz.Services/1.0.0": { + "dependencies": { + "HslCommunication": "7.0.1", + "zzz.Repository": "1.0.0" + }, + "runtime": { + "zzz.Services.dll": {} + } + } + } + }, + "libraries": { + "zzz.Tasks/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "HslCommunication/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "path": "hslcommunication/7.0.1", + "hashPath": "hslcommunication.7.0.1.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "log4net/2.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "path": "log4net/2.0.14", + "hashPath": "log4net.2.0.14.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "path": "microsoft.extensions.configuration/6.0.1", + "hashPath": "microsoft.extensions.configuration.6.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "path": "microsoft.extensions.configuration.json/6.0.0", + "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "Newtonsoft.Json/12.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==", + "path": "newtonsoft.json/12.0.2", + "hashPath": "newtonsoft.json.12.0.2.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "Quartz/3.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N8350OAlQhd8zKg0ARFikGjh3bfAW/CF/KVxu2fTIlAALB/oC1eg54n/QAPYR5ryHuYyDr5G8/Qa4k+D/7OFRQ==", + "path": "quartz/3.4.0", + "hashPath": "quartz.3.4.0.nupkg.sha512" + }, + "Serilog/2.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "path": "serilog/2.11.0", + "hashPath": "serilog.2.11.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==", + "path": "system.diagnostics.diagnosticsource/4.7.1", + "hashPath": "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "path": "system.io.pipelines/4.5.2", + "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "path": "system.text.json/6.0.0", + "hashPath": "system.text.json.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "hashPath": "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512" + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "path": "webapiclient.jit/1.0.3", + "hashPath": "webapiclient.jit.1.0.3.nupkg.sha512" + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "path": "yitter.idgenerator/1.0.12", + "hashPath": "yitter.idgenerator.1.0.12.nupkg.sha512" + }, + "zzz.Common/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "zzz.Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Tasks.dll b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Tasks.dll new file mode 100644 index 0000000..0d4ef26 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Tasks.pdb b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Tasks.pdb new file mode 100644 index 0000000..54a9137 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/bin/Release/net6.0/zzz.Tasks.pdb differ diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.AssemblyInfo.cs b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.AssemblyInfo.cs new file mode 100644 index 0000000..3aa5bcc --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("cjyx.Tasks")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("cjyx.Tasks")] +[assembly: System.Reflection.AssemblyTitleAttribute("cjyx.Tasks")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.AssemblyInfoInputs.cache new file mode 100644 index 0000000..36fc6a7 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +885d4c976ca640f26dcdfa2e2bd1a1381dfc38e6 diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d28e172 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = cjyx.Tasks +build_property.ProjectDir = D:\work\长江云息\Src\cjyx\cjyx.Tasks\ diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.GlobalUsings.g.cs b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.assets.cache b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.assets.cache new file mode 100644 index 0000000..c214954 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.assets.cache differ diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.csproj.AssemblyReference.cache new file mode 100644 index 0000000..204fdef Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.csproj.CopyComplete b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a5bef8a --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c774634fca7d3d61fc39548251e80b1e6d91c35a diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..7a1042a --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.csproj.FileListAbsolute.txt @@ -0,0 +1,23 @@ +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\cjyx.Tasks.csproj.AssemblyReference.cache +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\cjyx.Tasks.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\cjyx.Tasks.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\cjyx.Tasks.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\cjyx.Tasks.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\cjyx.Tasks.deps.json +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\cjyx.Tasks.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\ref\cjyx.Tasks.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\cjyx.Tasks.pdb +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\cjyx.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\cjyx.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\cjyx.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\cjyx.Services.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\cjyx.Services.pdb +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\cjyx.Common.pdb +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\cjyx.Model.pdb +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\cjyx.Repository.pdb +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\cjyx.Tasks.csproj.CopyComplete +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\cjyx.Tasks.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\ref\cjyx.Tasks.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\cjyx.Tasks.pdb +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\cjyx.Model.xml +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\cjyx.Services.xml diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.dll b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.dll new file mode 100644 index 0000000..7fc4043 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.dll differ diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.pdb b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.pdb new file mode 100644 index 0000000..32e7e3a Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/cjyx.Tasks.pdb differ diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/ref/cjyx.Tasks.dll b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/ref/cjyx.Tasks.dll new file mode 100644 index 0000000..6918315 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/ref/cjyx.Tasks.dll differ diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/ref/zzz.Tasks.dll b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/ref/zzz.Tasks.dll new file mode 100644 index 0000000..2e9ea0a Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/ref/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/refint/zzz.Tasks.dll b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/refint/zzz.Tasks.dll new file mode 100644 index 0000000..2e9ea0a Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/refint/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.AssemblyInfo.cs b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.AssemblyInfo.cs new file mode 100644 index 0000000..ef208ad --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("zzz.Tasks")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("zzz.Tasks")] +[assembly: System.Reflection.AssemblyTitleAttribute("zzz.Tasks")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.AssemblyInfoInputs.cache new file mode 100644 index 0000000..7df7a71 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +aaa039b8e9a41dac1dbbebbbb9780fe903fb103e diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3af5835 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = zzz.Tasks +build_property.ProjectDir = F:\yuhong_plc\zzz.Tasks\ diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.GlobalUsings.g.cs b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.assets.cache b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.assets.cache new file mode 100644 index 0000000..a2678ef Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.assets.cache differ diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.csproj.AssemblyReference.cache new file mode 100644 index 0000000..bbce7b2 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.csproj.CopyComplete b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..3e5ea5c --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a06f6118ed7f8ae72871b370b3cf16422fba8496 diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..1049ded --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.csproj.FileListAbsolute.txt @@ -0,0 +1,136 @@ +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\zzz.Tasks.deps.json +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\ref\zzz.Tasks.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\zzz.Tasks.pdb +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\Src\cjyx\cjyx.Tasks\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.AssemblyReference.cache +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\zzz.Tasks.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\zzz.Tasks.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\zzz.Tasks.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.CopyComplete +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\ref\zzz.Tasks.dll +D:\work\长江云息\Src\cjyx\cjyx.Tasks\obj\Debug\net6.0\zzz.Tasks.pdb +D:\work\长江云息\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.AssemblyReference.cache +D:\work\长江云息\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\ref\zzz.Tasks.dll +D:\work\长江云息\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.pdb +D:\work\长江云息\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Tasks.deps.json +D:\work\长江云息\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\ref\zzz.Tasks.dll +D:\work\长江云息\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Tasks.pdb +D:\work\长江云息\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Services.xml +D:\work\长江云息\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Tasks.deps.json +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\ref\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Tasks.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Services.xml +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\ref\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Tasks.deps.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\ref\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Tasks.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Services.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Services.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\ref\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Tasks.deps.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Tasks.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Tasks.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Repository.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Services.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Services.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Services.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Model.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Debug\net6.0\zzz.Repository.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.GeneratedMSBuildEditorConfig.editorconfig +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.AssemblyInfoInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.AssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.CoreCompileInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.CopyComplete +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\refint\zzz.Tasks.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Debug\net6.0\ref\zzz.Tasks.dll +F:\yuhong_plc\zzz.Tasks\bin\Debug\net6.0\zzz.Tasks.deps.json +F:\yuhong_plc\zzz.Tasks\bin\Debug\net6.0\zzz.Tasks.dll +F:\yuhong_plc\zzz.Tasks\bin\Debug\net6.0\zzz.Tasks.pdb +F:\yuhong_plc\zzz.Tasks\bin\Debug\net6.0\zzz.Common.dll +F:\yuhong_plc\zzz.Tasks\bin\Debug\net6.0\zzz.Model.dll +F:\yuhong_plc\zzz.Tasks\bin\Debug\net6.0\zzz.Repository.dll +F:\yuhong_plc\zzz.Tasks\bin\Debug\net6.0\zzz.Services.dll +F:\yuhong_plc\zzz.Tasks\bin\Debug\net6.0\zzz.Services.pdb +F:\yuhong_plc\zzz.Tasks\bin\Debug\net6.0\zzz.Services.xml +F:\yuhong_plc\zzz.Tasks\bin\Debug\net6.0\zzz.Common.pdb +F:\yuhong_plc\zzz.Tasks\bin\Debug\net6.0\zzz.Model.pdb +F:\yuhong_plc\zzz.Tasks\bin\Debug\net6.0\zzz.Model.xml +F:\yuhong_plc\zzz.Tasks\bin\Debug\net6.0\zzz.Repository.pdb +F:\yuhong_plc\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.AssemblyReference.cache +F:\yuhong_plc\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.GeneratedMSBuildEditorConfig.editorconfig +F:\yuhong_plc\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.AssemblyInfoInputs.cache +F:\yuhong_plc\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.AssemblyInfo.cs +F:\yuhong_plc\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.CoreCompileInputs.cache +F:\yuhong_plc\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.csproj.CopyComplete +F:\yuhong_plc\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.dll +F:\yuhong_plc\zzz.Tasks\obj\Debug\net6.0\refint\zzz.Tasks.dll +F:\yuhong_plc\zzz.Tasks\obj\Debug\net6.0\zzz.Tasks.pdb +F:\yuhong_plc\zzz.Tasks\obj\Debug\net6.0\ref\zzz.Tasks.dll diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.dll b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.dll new file mode 100644 index 0000000..57d97c0 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.pdb b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.pdb new file mode 100644 index 0000000..e87eaee Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Debug/net6.0/zzz.Tasks.pdb differ diff --git a/yuhong_plc/zzz.Tasks/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/yuhong_plc/zzz.Tasks/obj/Release/net6.0/ref/zzz.Tasks.dll b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/ref/zzz.Tasks.dll new file mode 100644 index 0000000..a5b60c4 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/ref/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Tasks/obj/Release/net6.0/refint/zzz.Tasks.dll b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/refint/zzz.Tasks.dll new file mode 100644 index 0000000..a5b60c4 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/refint/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.AssemblyInfo.cs b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.AssemblyInfo.cs new file mode 100644 index 0000000..13805ab --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("zzz.Tasks")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("zzz.Tasks")] +[assembly: System.Reflection.AssemblyTitleAttribute("zzz.Tasks")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.AssemblyInfoInputs.cache b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c5825c0 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +1bf9baeb6209d6e2b6ab28e551868f8557ccd2aa diff --git a/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3af5835 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = zzz.Tasks +build_property.ProjectDir = F:\yuhong_plc\zzz.Tasks\ diff --git a/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.GlobalUsings.g.cs b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.assets.cache b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.assets.cache new file mode 100644 index 0000000..eb27c03 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.assets.cache differ diff --git a/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.csproj.AssemblyReference.cache b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.csproj.AssemblyReference.cache new file mode 100644 index 0000000..fcb564d Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.csproj.BuildWithSkipAnalyzers b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.csproj.CopyComplete b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..59354a1 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c9d21df9f9f97da32bcf06fe3b66fe260d9a8a34 diff --git a/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e03d5b9 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.csproj.FileListAbsolute.txt @@ -0,0 +1,69 @@ +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Tasks.deps.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\ref\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Tasks.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Common.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Repository.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Services.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Services.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Services.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Common.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Repository.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.csproj.CopyComplete +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\ref\zzz.Tasks.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Tasks.deps.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Tasks.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Tasks.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Common.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Repository.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Services.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Services.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Services.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Common.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Model.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\bin\Release\net6.0\zzz.Repository.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.GeneratedMSBuildEditorConfig.editorconfig +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.AssemblyInfoInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.AssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.csproj.CoreCompileInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.csproj.CopyComplete +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\refint\zzz.Tasks.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.Tasks\obj\Release\net6.0\ref\zzz.Tasks.dll +F:\yuhong_plc\zzz.Tasks\bin\Release\net6.0\zzz.Tasks.deps.json +F:\yuhong_plc\zzz.Tasks\bin\Release\net6.0\zzz.Tasks.dll +F:\yuhong_plc\zzz.Tasks\bin\Release\net6.0\zzz.Tasks.pdb +F:\yuhong_plc\zzz.Tasks\bin\Release\net6.0\zzz.Common.dll +F:\yuhong_plc\zzz.Tasks\bin\Release\net6.0\zzz.Model.dll +F:\yuhong_plc\zzz.Tasks\bin\Release\net6.0\zzz.Repository.dll +F:\yuhong_plc\zzz.Tasks\bin\Release\net6.0\zzz.Services.dll +F:\yuhong_plc\zzz.Tasks\bin\Release\net6.0\zzz.Services.pdb +F:\yuhong_plc\zzz.Tasks\bin\Release\net6.0\zzz.Services.xml +F:\yuhong_plc\zzz.Tasks\bin\Release\net6.0\zzz.Common.pdb +F:\yuhong_plc\zzz.Tasks\bin\Release\net6.0\zzz.Model.pdb +F:\yuhong_plc\zzz.Tasks\bin\Release\net6.0\zzz.Model.xml +F:\yuhong_plc\zzz.Tasks\bin\Release\net6.0\zzz.Repository.pdb +F:\yuhong_plc\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.csproj.AssemblyReference.cache +F:\yuhong_plc\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.GeneratedMSBuildEditorConfig.editorconfig +F:\yuhong_plc\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.AssemblyInfoInputs.cache +F:\yuhong_plc\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.AssemblyInfo.cs +F:\yuhong_plc\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.csproj.CoreCompileInputs.cache +F:\yuhong_plc\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.csproj.CopyComplete +F:\yuhong_plc\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.dll +F:\yuhong_plc\zzz.Tasks\obj\Release\net6.0\refint\zzz.Tasks.dll +F:\yuhong_plc\zzz.Tasks\obj\Release\net6.0\zzz.Tasks.pdb +F:\yuhong_plc\zzz.Tasks\obj\Release\net6.0\ref\zzz.Tasks.dll diff --git a/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.dll b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.dll new file mode 100644 index 0000000..0d4ef26 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.dll differ diff --git a/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.pdb b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.pdb new file mode 100644 index 0000000..54a9137 Binary files /dev/null and b/yuhong_plc/zzz.Tasks/obj/Release/net6.0/zzz.Tasks.pdb differ diff --git a/yuhong_plc/zzz.Tasks/obj/cjyx.Tasks.csproj.nuget.dgspec.json b/yuhong_plc/zzz.Tasks/obj/cjyx.Tasks.csproj.nuget.dgspec.json new file mode 100644 index 0000000..6d69ad3 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/cjyx.Tasks.csproj.nuget.dgspec.json @@ -0,0 +1,383 @@ +{ + "format": 1, + "restore": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\cjyx.Tasks.csproj": {} + }, + "projects": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\zzz.Common.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\zzz.Common.csproj", + "projectName": "zzz.Common", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\zzz.Common.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "Microsoft.AspNetCore.SignalR.Core": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.Extensions.Configuration": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.Extensions.Configuration.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Binder": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Json": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Hosting.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.11.0, )" + }, + "Serilog.Sinks.File": { + "target": "Package", + "version": "[5.0.0, )" + }, + "WebApiClient.Extensions.DependencyInjection": { + "target": "Package", + "version": "[2.0.3, )" + }, + "Yitter.IdGenerator": { + "target": "Package", + "version": "[1.0.12, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj", + "projectName": "cjyx.Model", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.0.0, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.0.8, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj", + "projectName": "cjyx.Repository", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\zzz.Common.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Common\\zzz.Common.csproj" + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj", + "projectName": "cjyx.Services", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Repository\\cjyx.Repository.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\cjyx.Tasks.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\cjyx.Tasks.csproj", + "projectName": "cjyx.Tasks", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\cjyx.Tasks.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Tasks\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj": { + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.Services\\cjyx.Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Quartz": { + "target": "Package", + "version": "[3.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Tasks/obj/cjyx.Tasks.csproj.nuget.g.props b/yuhong_plc/zzz.Tasks/obj/cjyx.Tasks.csproj.nuget.g.props new file mode 100644 index 0000000..2b6b4fc --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/cjyx.Tasks.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\BLACK\.nuget\packages\;D:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.0.0 + + + + + + + C:\Users\BLACK\.nuget\packages\webapiclient.jit\1.0.3 + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Tasks/obj/cjyx.Tasks.csproj.nuget.g.targets b/yuhong_plc/zzz.Tasks/obj/cjyx.Tasks.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/cjyx.Tasks.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Tasks/obj/project.assets.json b/yuhong_plc/zzz.Tasks/obj/project.assets.json new file mode 100644 index 0000000..ac04102 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/project.assets.json @@ -0,0 +1,4601 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "AutoMapper/11.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "compile": { + "lib/netstandard2.1/AutoMapper.dll": {} + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": {} + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "dependencies": { + "AutoMapper": "11.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} + } + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + } + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "compile": { + "lib/net5.0/Google.Protobuf.dll": {} + }, + "runtime": { + "lib/net5.0/Google.Protobuf.dll": {} + } + }, + "HslCommunication/7.0.1": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.2" + }, + "compile": { + "lib/netstandard2.0/HslCommunication.dll": {} + }, + "runtime": { + "lib/netstandard2.0/HslCommunication.dll": {} + } + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": {} + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": {} + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "compile": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {} + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {} + } + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": {} + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": {} + } + }, + "log4net/2.0.14": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/log4net.dll": {} + }, + "runtime": { + "lib/netstandard2.0/log4net.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Newtonsoft.Json": "11.0.2", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {} + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MySql.Data/8.0.29": { + "type": "package", + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.4.1", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.4.0" + }, + "compile": { + "lib/net6.0/MySql.Data.dll": {}, + "lib/net6.0/Ubiety.Dns.Core.dll": {}, + "lib/net6.0/ZstdNet.dll": {} + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": {}, + "lib/net6.0/Ubiety.Dns.Core.dll": {}, + "lib/net6.0/ZstdNet.dll": {} + } + }, + "Newtonsoft.Json/12.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Npgsql/5.0.7": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "4.6.0" + }, + "compile": { + "lib/net5.0/Npgsql.dll": {} + }, + "runtime": { + "lib/net5.0/Npgsql.dll": {} + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "4.7.1" + }, + "compile": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + } + }, + "Quartz/3.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.1.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "compile": { + "lib/netstandard2.0/Quartz.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": {} + } + }, + "Serilog/2.11.0": { + "type": "package", + "compile": { + "lib/net5.0/Serilog.dll": {} + }, + "runtime": { + "lib/net5.0/Serilog.dll": {} + } + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.File.dll": {} + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "compile": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} + } + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "alpine-x64" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + } + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "10.0.3", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/SqlSugar.dll": {} + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": {} + } + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/DmProvider.dll": {} + }, + "runtime": { + "lib/netstandard2.0/DmProvider.dll": {} + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Kdbndp.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": {} + } + }, + "System.Buffers/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Data.Common/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.7.1": { + "type": "package", + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.DirectoryServices.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "compile": { + "ref/netstandard1.3/System.IO.Pipelines.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.IO.Pipelines.dll": {} + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + } + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/System.Threading.Channels.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Threading.Channels.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0", + "WebApiClient.JIT": "1.0.3" + }, + "compile": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll": {} + } + }, + "WebApiClient.JIT/1.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "1.0.0", + "Newtonsoft.Json": "9.0.1", + "System.Runtime.Caching": "4.5.0" + }, + "compile": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/WebApiClient.JIT.dll": {} + } + }, + "Yitter.IdGenerator/1.0.12": { + "type": "package", + "compile": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Yitter.IdGenerator.dll": {} + } + }, + "zzz.Common/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.Extensions.Configuration": "6.0.1", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "6.0.0", + "Serilog": "2.11.0", + "Serilog.Sinks.File": "5.0.0", + "WebApiClient.Extensions.DependencyInjection": "2.0.3", + "Yitter.IdGenerator": "1.0.12", + "log4net": "2.0.14" + }, + "compile": { + "bin/placeholder/zzz.Common.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Common.dll": {} + } + }, + "zzz.Model/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "compile": { + "bin/placeholder/zzz.Model.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Model.dll": {} + } + }, + "zzz.Repository/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "zzz.Common": "1.0.0", + "zzz.Model": "1.0.0" + }, + "compile": { + "bin/placeholder/zzz.Repository.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Repository.dll": {} + } + }, + "zzz.Services/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "HslCommunication": "7.0.1", + "zzz.Repository": "1.0.0" + }, + "compile": { + "bin/placeholder/zzz.Services.dll": {} + }, + "runtime": { + "bin/placeholder/zzz.Services.dll": {} + } + } + } + }, + "libraries": { + "AutoMapper/11.0.1": { + "sha512": "WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "type": "package", + "path": "automapper/11.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.11.0.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/netstandard2.1/AutoMapper.dll", + "lib/netstandard2.1/AutoMapper.xml" + ] + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "sha512": "0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "type": "package", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", + "automapper.extensions.microsoft.dependencyinjection.nuspec", + "icon.png", + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll" + ] + }, + "BouncyCastle.NetCore/1.8.5": { + "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "type": "package", + "path": "bouncycastle.netcore/1.8.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bouncycastle.netcore.1.8.5.nupkg.sha512", + "bouncycastle.netcore.nuspec", + "lib/Mono/BouncyCastle.Crypto.dll", + "lib/Mono/BouncyCastle.Crypto.xml", + "lib/MonoAndroid/BouncyCastle.Crypto.dll", + "lib/MonoAndroid/BouncyCastle.Crypto.xml", + "lib/MonoMac/BouncyCastle.Crypto.dll", + "lib/MonoMac/BouncyCastle.Crypto.xml", + "lib/MonoTouch/BouncyCastle.Crypto.dll", + "lib/MonoTouch/BouncyCastle.Crypto.xml", + "lib/net20/BouncyCastle.Crypto.dll", + "lib/net20/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "lib/xamarinios/BouncyCastle.Crypto.dll", + "lib/xamarinios/BouncyCastle.Crypto.xml" + ] + }, + "Google.Protobuf/3.19.4": { + "sha512": "fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "type": "package", + "path": "google.protobuf/3.19.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "google.protobuf.3.19.4.nupkg.sha512", + "google.protobuf.nuspec", + "lib/net45/Google.Protobuf.dll", + "lib/net45/Google.Protobuf.pdb", + "lib/net45/Google.Protobuf.xml", + "lib/net5.0/Google.Protobuf.dll", + "lib/net5.0/Google.Protobuf.pdb", + "lib/net5.0/Google.Protobuf.xml", + "lib/netstandard1.1/Google.Protobuf.dll", + "lib/netstandard1.1/Google.Protobuf.pdb", + "lib/netstandard1.1/Google.Protobuf.xml", + "lib/netstandard2.0/Google.Protobuf.dll", + "lib/netstandard2.0/Google.Protobuf.pdb", + "lib/netstandard2.0/Google.Protobuf.xml" + ] + }, + "HslCommunication/7.0.1": { + "sha512": "0bCqL+x6ExItJmb4tFAxh0tNsUdpuUH+PUC08H+SmENY0YKD/TeaA29bcWP7M4nxfGNqhSf8qLhR8eUGSUK+6A==", + "type": "package", + "path": "hslcommunication/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "hslcommunication.7.0.1.nupkg.sha512", + "hslcommunication.nuspec", + "lib/net35/HslCommunication.dll", + "lib/net35/HslCommunication.xml", + "lib/net451/HslCommunication.dll", + "lib/net451/HslCommunication.xml", + "lib/netstandard2.0/HslCommunication.dll", + "lib/netstandard2.0/HslCommunication.xml" + ] + }, + "K4os.Compression.LZ4/1.2.6": { + "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "type": "package", + "path": "k4os.compression.lz4/1.2.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.1.2.6.nupkg.sha512", + "k4os.compression.lz4.nuspec", + "lib/net45/K4os.Compression.LZ4.dll", + "lib/net45/K4os.Compression.LZ4.xml", + "lib/net46/K4os.Compression.LZ4.dll", + "lib/net46/K4os.Compression.LZ4.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.xml" + ] + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "type": "package", + "path": "k4os.compression.lz4.streams/1.2.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.streams.1.2.6.nupkg.sha512", + "k4os.compression.lz4.streams.nuspec", + "lib/net45/K4os.Compression.LZ4.Streams.dll", + "lib/net45/K4os.Compression.LZ4.Streams.xml", + "lib/net46/K4os.Compression.LZ4.Streams.dll", + "lib/net46/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml" + ] + }, + "K4os.Hash.xxHash/1.0.6": { + "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "type": "package", + "path": "k4os.hash.xxhash/1.0.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.hash.xxhash.1.0.6.nupkg.sha512", + "k4os.hash.xxhash.nuspec", + "lib/net45/K4os.Hash.xxHash.dll", + "lib/net45/K4os.Hash.xxHash.xml", + "lib/net46/K4os.Hash.xxHash.dll", + "lib/net46/K4os.Hash.xxHash.xml", + "lib/netstandard1.6/K4os.Hash.xxHash.dll", + "lib/netstandard1.6/K4os.Hash.xxHash.xml", + "lib/netstandard2.0/K4os.Hash.xxHash.dll", + "lib/netstandard2.0/K4os.Hash.xxHash.xml" + ] + }, + "log4net/2.0.14": { + "sha512": "KevyXUuhOyhx7l1jWwq6ZGVlRC2Aetg0qDp6rJpfSZGcDPKQDwfOE6yEuVkVf0kEP08NQqBDn/TQ/TJv4wgyhw==", + "type": "package", + "path": "log4net/2.0.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/log4net.dll", + "lib/net20/log4net.xml", + "lib/net35-client/log4net.dll", + "lib/net35-client/log4net.xml", + "lib/net35/log4net.dll", + "lib/net35/log4net.xml", + "lib/net40-client/log4net.dll", + "lib/net40-client/log4net.xml", + "lib/net40/log4net.dll", + "lib/net40/log4net.xml", + "lib/net45/log4net.dll", + "lib/net45/log4net.xml", + "lib/netstandard1.3/log4net.dll", + "lib/netstandard1.3/log4net.xml", + "lib/netstandard2.0/log4net.dll", + "lib/netstandard2.0/log4net.xml", + "log4net.2.0.14.nupkg.sha512", + "log4net.nuspec", + "package-icon.png" + ] + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "sha512": "Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "type": "package", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml", + "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.connections.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "sha512": "TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.SignalR.Common.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.xml", + "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.common.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "sha512": "mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.xml", + "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.core.nuspec" + ] + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "sha512": "BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "type": "package", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml", + "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512", + "microsoft.aspnetcore.signalr.protocols.json.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/2.1.1": { + "sha512": "qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "type": "package", + "path": "microsoft.data.sqlclient/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.Data.SqlClient.dll", + "lib/net46/Microsoft.Data.SqlClient.pdb", + "lib/net46/Microsoft.Data.SqlClient.xml", + "lib/net46/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "microsoft.data.sqlclient.2.1.1.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net46/Microsoft.Data.SqlClient.dll", + "ref/net46/Microsoft.Data.SqlClient.pdb", + "ref/net46/Microsoft.Data.SqlClient.xml", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.Data.Sqlite/5.0.5": { + "sha512": "zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "type": "package", + "path": "microsoft.data.sqlite/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/_._", + "microsoft.data.sqlite.5.0.5.nupkg.sha512", + "microsoft.data.sqlite.nuspec" + ] + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "sha512": "tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "type": "package", + "path": "microsoft.data.sqlite.core/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.5.0.5.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/6.0.1": { + "sha512": "BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==", + "type": "package", + "path": "microsoft.extensions.configuration/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.dll", + "lib/net461/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.6.0.1.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net461/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "type": "package", + "path": "microsoft.extensions.configuration.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Json.dll", + "lib/net461/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/6.0.0": { + "sha512": "GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "sha512": "B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "type": "package", + "path": "microsoft.extensions.options/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.21.1": { + "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "type": "package", + "path": "microsoft.identity.client/4.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid10.0/Microsoft.Identity.Client.dll", + "lib/monoandroid10.0/Microsoft.Identity.Client.xml", + "lib/monoandroid90/Microsoft.Identity.Client.dll", + "lib/monoandroid90/Microsoft.Identity.Client.xml", + "lib/net45/Microsoft.Identity.Client.dll", + "lib/net45/Microsoft.Identity.Client.xml", + "lib/net461/Microsoft.Identity.Client.dll", + "lib/net461/Microsoft.Identity.Client.xml", + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll", + "lib/netcoreapp2.1/Microsoft.Identity.Client.xml", + "lib/netstandard1.3/Microsoft.Identity.Client.dll", + "lib/netstandard1.3/Microsoft.Identity.Client.xml", + "lib/uap10.0/Microsoft.Identity.Client.dll", + "lib/uap10.0/Microsoft.Identity.Client.pri", + "lib/uap10.0/Microsoft.Identity.Client.xml", + "lib/xamarinios10/Microsoft.Identity.Client.dll", + "lib/xamarinios10/Microsoft.Identity.Client.xml", + "lib/xamarinmac20/Microsoft.Identity.Client.dll", + "lib/xamarinmac20/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.21.1.nupkg.sha512", + "microsoft.identity.client.nuspec", + "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll", + "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml", + "ref/net45/Microsoft.Identity.Client.dll", + "ref/net45/Microsoft.Identity.Client.xml", + "ref/net461/Microsoft.Identity.Client.dll", + "ref/net461/Microsoft.Identity.Client.xml", + "ref/netcoreapp2.1/Microsoft.Identity.Client.dll", + "ref/netcoreapp2.1/Microsoft.Identity.Client.xml", + "ref/netstandard1.3/Microsoft.Identity.Client.dll", + "ref/netstandard1.3/Microsoft.Identity.Client.xml", + "ref/uap10.0/Microsoft.Identity.Client.dll", + "ref/uap10.0/Microsoft.Identity.Client.xml", + "ref/xamarinmac20/Microsoft.Identity.Client.dll", + "ref/xamarinmac20/Microsoft.Identity.Client.xml" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "sha512": "+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "sha512": "Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "sha512": "OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "sha512": "X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "sha512": "gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "type": "package", + "path": "microsoft.win32.systemevents/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/net472/Microsoft.Win32.SystemEvents.dll", + "ref/net472/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MySql.Data/8.0.29": { + "sha512": "3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "type": "package", + "path": "mysql.data/8.0.29", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/MySql.Data.dll", + "lib/net452/MySql.Data.xml", + "lib/net452/Ubiety.Dns.Core.dll", + "lib/net452/ZstdNet.dll", + "lib/net48/MySql.Data.dll", + "lib/net48/MySql.Data.xml", + "lib/net48/Ubiety.Dns.Core.dll", + "lib/net48/ZstdNet.dll", + "lib/net5.0/MySql.Data.dll", + "lib/net5.0/MySql.Data.xml", + "lib/net5.0/Ubiety.Dns.Core.dll", + "lib/net5.0/ZstdNet.dll", + "lib/net6.0/MySql.Data.dll", + "lib/net6.0/MySql.Data.xml", + "lib/net6.0/Ubiety.Dns.Core.dll", + "lib/net6.0/ZstdNet.dll", + "lib/netstandard2.0/MySql.Data.dll", + "lib/netstandard2.0/MySql.Data.xml", + "lib/netstandard2.0/Ubiety.Dns.Core.dll", + "lib/netstandard2.0/ZstdNet.dll", + "lib/netstandard2.1/MySql.Data.dll", + "lib/netstandard2.1/MySql.Data.xml", + "lib/netstandard2.1/Ubiety.Dns.Core.dll", + "lib/netstandard2.1/ZstdNet.dll", + "mysql.data.8.0.29.nupkg.sha512", + "mysql.data.nuspec" + ] + }, + "Newtonsoft.Json/12.0.2": { + "sha512": "rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==", + "type": "package", + "path": "newtonsoft.json/12.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.12.0.2.nupkg.sha512", + "newtonsoft.json.nuspec" + ] + }, + "Npgsql/5.0.7": { + "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "type": "package", + "path": "npgsql/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Npgsql.dll", + "lib/net5.0/Npgsql.xml", + "lib/netcoreapp3.1/Npgsql.dll", + "lib/netcoreapp3.1/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.5.0.7.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "sha512": "SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "type": "package", + "path": "oracle.manageddataaccess.core/3.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PerfCounters/register_odpc_perfmon_counters.ps1", + "PerfCounters/unregister_odpc_perfmon_counters.ps1", + "info.txt", + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll", + "oracle.manageddataaccess.core.3.21.1.nupkg.sha512", + "oracle.manageddataaccess.core.nuspec", + "readme.txt" + ] + }, + "Quartz/3.4.0": { + "sha512": "N8350OAlQhd8zKg0ARFikGjh3bfAW/CF/KVxu2fTIlAALB/oC1eg54n/QAPYR5ryHuYyDr5G8/Qa4k+D/7OFRQ==", + "type": "package", + "path": "quartz/3.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Quartz.dll", + "lib/net462/Quartz.xml", + "lib/net472/Quartz.dll", + "lib/net472/Quartz.xml", + "lib/netstandard2.0/Quartz.dll", + "lib/netstandard2.0/Quartz.xml", + "quartz-logo-small.png", + "quartz.3.4.0.nupkg.sha512", + "quartz.nuspec" + ] + }, + "Serilog/2.11.0": { + "sha512": "ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==", + "type": "package", + "path": "serilog/2.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.dll", + "lib/net45/Serilog.xml", + "lib/net46/Serilog.dll", + "lib/net46/Serilog.xml", + "lib/net5.0/Serilog.dll", + "lib/net5.0/Serilog.xml", + "lib/netstandard1.0/Serilog.dll", + "lib/netstandard1.0/Serilog.xml", + "lib/netstandard1.3/Serilog.dll", + "lib/netstandard1.3/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.2.11.0.nupkg.sha512", + "serilog.nuspec" + ] + }, + "Serilog.Sinks.File/5.0.0": { + "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "type": "package", + "path": "serilog.sinks.file/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "images/icon.png", + "lib/net45/Serilog.Sinks.File.dll", + "lib/net45/Serilog.Sinks.File.pdb", + "lib/net45/Serilog.Sinks.File.xml", + "lib/net5.0/Serilog.Sinks.File.dll", + "lib/net5.0/Serilog.Sinks.File.pdb", + "lib/net5.0/Serilog.Sinks.File.xml", + "lib/netstandard1.3/Serilog.Sinks.File.dll", + "lib/netstandard1.3/Serilog.Sinks.File.pdb", + "lib/netstandard1.3/Serilog.Sinks.File.xml", + "lib/netstandard2.0/Serilog.Sinks.File.dll", + "lib/netstandard2.0/Serilog.Sinks.File.pdb", + "lib/netstandard2.0/Serilog.Sinks.File.xml", + "lib/netstandard2.1/Serilog.Sinks.File.dll", + "lib/netstandard2.1/Serilog.Sinks.File.pdb", + "lib/netstandard2.1/Serilog.Sinks.File.xml", + "serilog.sinks.file.5.0.0.nupkg.sha512", + "serilog.sinks.file.nuspec" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "sha512": "f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.nativelibrary.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.0.4": { + "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "type": "package", + "path": "sqlitepclraw.core/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.0.4.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/alpine-x64/native/libe_sqlite3.so", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "type": "package", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll", + "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "sqlitepclraw.provider.dynamic_cdecl.nuspec" + ] + }, + "SqlSugarCore/5.0.8": { + "sha512": "20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "type": "package", + "path": "sqlsugarcore/5.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.1/SqlSugar.dll", + "sqlsugarcore.5.0.8.nupkg.sha512", + "sqlsugarcore.nuspec" + ] + }, + "SqlSugarCore.Dm/1.0.0": { + "sha512": "TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "type": "package", + "path": "sqlsugarcore.dm/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/DmProvider.dll", + "sqlsugarcore.dm.1.0.0.nupkg.sha512", + "sqlsugarcore.dm.nuspec" + ] + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "sha512": "xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "type": "package", + "path": "sqlsugarcore.kdbndp/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Kdbndp.dll", + "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512", + "sqlsugarcore.kdbndp.nuspec" + ] + }, + "System.Buffers/4.5.1": { + "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "type": "package", + "path": "system.buffers/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Buffers.dll", + "lib/net461/System.Buffers.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.1.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "type": "package", + "path": "system.configuration.configurationmanager/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Data.Common/4.3.0": { + "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "type": "package", + "path": "system.data.common/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.Common.dll", + "lib/netstandard1.2/System.Data.Common.dll", + "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.xml", + "ref/netstandard1.2/de/System.Data.Common.xml", + "ref/netstandard1.2/es/System.Data.Common.xml", + "ref/netstandard1.2/fr/System.Data.Common.xml", + "ref/netstandard1.2/it/System.Data.Common.xml", + "ref/netstandard1.2/ja/System.Data.Common.xml", + "ref/netstandard1.2/ko/System.Data.Common.xml", + "ref/netstandard1.2/ru/System.Data.Common.xml", + "ref/netstandard1.2/zh-hans/System.Data.Common.xml", + "ref/netstandard1.2/zh-hant/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.data.common.4.3.0.nupkg.sha512", + "system.data.common.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.7.1": { + "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.7.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "sha512": "kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "type": "package", + "path": "system.diagnostics.performancecounter/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Diagnostics.PerformanceCounter.dll", + "ref/net461/System.Diagnostics.PerformanceCounter.xml", + "ref/net472/System.Diagnostics.PerformanceCounter.dll", + "ref/net472/System.Diagnostics.PerformanceCounter.xml", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.4.7.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.DirectoryServices/4.7.0": { + "sha512": "NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "type": "package", + "path": "system.directoryservices/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.DirectoryServices.dll", + "ref/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml", + "system.directoryservices.4.7.0.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.DirectoryServices.Protocols/4.7.0": { + "sha512": "yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "type": "package", + "path": "system.directoryservices.protocols/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.DirectoryServices.Protocols.dll", + "ref/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.4.7.0.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/4.7.0": { + "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "type": "package", + "path": "system.drawing.common/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.4.7.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "sha512": "5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "sha512": "vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Pipelines/4.5.2": { + "sha512": "NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "type": "package", + "path": "system.io.pipelines/4.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/System.IO.Pipelines.dll", + "lib/netcoreapp2.1/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netstandard1.3/System.IO.Pipelines.dll", + "system.io.pipelines.4.5.2.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/4.7.0": { + "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "type": "package", + "path": "system.runtime.caching/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard2.0/System.Runtime.Caching.dll", + "ref/netstandard2.0/System.Runtime.Caching.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", + "system.runtime.caching.4.7.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Security.AccessControl/4.7.0": { + "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "type": "package", + "path": "system.security.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.7.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Permissions/4.7.0": { + "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "type": "package", + "path": "system.security.permissions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.7.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.7.0": { + "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "type": "package", + "path": "system.text.encoding.codepages/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.4.7.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/6.0.0": { + "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "type": "package", + "path": "system.text.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "build/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/netcoreapp3.1/System.Text.Json.dll", + "lib/netcoreapp3.1/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.6.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading.Channels/4.5.0": { + "sha512": "MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "type": "package", + "path": "system.threading.channels/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/System.Threading.Channels.dll", + "lib/netcoreapp2.1/System.Threading.Channels.xml", + "lib/netstandard1.3/System.Threading.Channels.dll", + "lib/netstandard1.3/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "system.threading.channels.4.5.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Windows.Extensions/4.7.0": { + "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "type": "package", + "path": "system.windows.extensions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.4.7.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "WebApiClient.Extensions.DependencyInjection/2.0.3": { + "sha512": "YI4bDq5+xyiolk9Y7d1gBl1nzAtqIBon/ZRMxbYZ0lX8Jpq47S69T6fC317iFJZPdOe0226wV76pfcC4MDwM3Q==", + "type": "package", + "path": "webapiclient.extensions.dependencyinjection/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/WebApiClient.Extensions.DependencyInjection.xml", + "webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512", + "webapiclient.extensions.dependencyinjection.nuspec" + ] + }, + "WebApiClient.JIT/1.0.3": { + "sha512": "mBQftLZFge3XK6oLHNUU/O9Eqeb3/MLSgVcVZWLkDKGnERPE5BUfi+no1vxsEzPEPSy4XXxsF4q7OVkgbS5Hfw==", + "type": "package", + "path": "webapiclient.jit/1.0.3", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/WebApiClient.Analyzers.deps.json", + "analyzers/dotnet/cs/WebApiClient.Analyzers.dll", + "lib/net45/WebApiClient.JIT.dll", + "lib/net45/WebApiClient.JIT.xml", + "lib/netcoreapp2.1/WebApiClient.JIT.dll", + "lib/netcoreapp2.1/WebApiClient.JIT.xml", + "lib/netstandard1.3/WebApiClient.JIT.dll", + "lib/netstandard1.3/WebApiClient.JIT.xml", + "lib/netstandard2.0/WebApiClient.JIT.dll", + "lib/netstandard2.0/WebApiClient.JIT.xml", + "tools/install.ps1", + "tools/uninstall.ps1", + "webapiclient.jit.1.0.3.nupkg.sha512", + "webapiclient.jit.nuspec" + ] + }, + "Yitter.IdGenerator/1.0.12": { + "sha512": "hDtqOe+7tuEQHUhTwySxupbotkHJTHKo7qV2s7bnpATsakqYU6p7S2q6FLg7xhGzsA625Prk3EVpMGw/2oXoig==", + "type": "package", + "path": "yitter.idgenerator/1.0.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Yitter.IdGenerator.dll", + "yitter.idgenerator.1.0.12.nupkg.sha512", + "yitter.idgenerator.nuspec" + ] + }, + "zzz.Common/1.0.0": { + "type": "project", + "path": "../zzz.Common/zzz.Common.csproj", + "msbuildProject": "../zzz.Common/zzz.Common.csproj" + }, + "zzz.Model/1.0.0": { + "type": "project", + "path": "../zzz.model/zzz.Model.csproj", + "msbuildProject": "../zzz.model/zzz.Model.csproj" + }, + "zzz.Repository/1.0.0": { + "type": "project", + "path": "../zzz.Repository/zzz.Repository.csproj", + "msbuildProject": "../zzz.Repository/zzz.Repository.csproj" + }, + "zzz.Services/1.0.0": { + "type": "project", + "path": "../zzz.Services/zzz.Services.csproj", + "msbuildProject": "../zzz.Services/zzz.Services.csproj" + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "Quartz >= 3.4.0", + "zzz.Services >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\Administrator\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj", + "projectName": "zzz.Tasks", + "projectPath": "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Tasks\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Quartz": { + "target": "Package", + "version": "[3.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Tasks/obj/project.nuget.cache b/yuhong_plc/zzz.Tasks/obj/project.nuget.cache new file mode 100644 index 0000000..ebaa701 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/project.nuget.cache @@ -0,0 +1,107 @@ +{ + "version": 2, + "dgSpecHash": "S6p53xcyk6oHwUIuJdL11tpUJ7tJvmaUSk4xEtU2FOtegEpmhfLVQLQF+0iS2bR7utcb7tvXpil/RjHH6EI71A==", + "success": true, + "projectFilePath": "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Administrator\\.nuget\\packages\\automapper\\11.0.1\\automapper.11.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\11.0.0\\automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\bouncycastle.netcore\\1.8.5\\bouncycastle.netcore.1.8.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\google.protobuf\\3.19.4\\google.protobuf.3.19.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\hslcommunication\\7.0.1\\hslcommunication.7.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4\\1.2.6\\k4os.compression.lz4.1.2.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4.streams\\1.2.6\\k4os.compression.lz4.streams.1.2.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.hash.xxhash\\1.0.6\\k4os.hash.xxhash.1.0.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\log4net\\2.0.14\\log4net.2.0.14.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.connections.abstractions\\2.2.0\\microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.common\\1.1.0\\microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.core\\1.1.0\\microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.signalr.protocols.json\\1.1.0\\microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlclient\\2.1.1\\microsoft.data.sqlclient.2.1.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.1.1\\microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlite\\5.0.5\\microsoft.data.sqlite.5.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlite.core\\5.0.5\\microsoft.data.sqlite.core.5.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration\\6.0.1\\microsoft.extensions.configuration.6.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0\\microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.binder\\6.0.0\\microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\6.0.0\\microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.configuration.json\\6.0.0\\microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\6.0.0\\microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\6.0.0\\microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\6.0.0\\microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\6.0.0\\microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\2.2.0\\microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identity.client\\4.21.1\\microsoft.identity.client.4.21.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.8.0\\microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.logging\\6.8.0\\microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.8.0\\microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.8.0\\microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.8.0\\microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\mysql.data\\8.0.29\\mysql.data.8.0.29.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\newtonsoft.json\\12.0.2\\newtonsoft.json.12.0.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\npgsql\\5.0.7\\npgsql.5.0.7.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\oracle.manageddataaccess.core\\3.21.1\\oracle.manageddataaccess.core.3.21.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\quartz\\3.4.0\\quartz.3.4.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\serilog\\2.11.0\\serilog.2.11.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\serilog.sinks.file\\5.0.0\\serilog.sinks.file.5.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.0.4\\sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.core\\2.0.4\\sqlitepclraw.core.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.0.4\\sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.provider.dynamic_cdecl\\2.0.4\\sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore\\5.0.8\\sqlsugarcore.5.0.8.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore.dm\\1.0.0\\sqlsugarcore.dm.1.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore.kdbndp\\1.0.0\\sqlsugarcore.kdbndp.1.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.performancecounter\\4.7.0\\system.diagnostics.performancecounter.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.directoryservices\\4.7.0\\system.directoryservices.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.directoryservices.protocols\\4.7.0\\system.directoryservices.protocols.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.8.0\\system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem.accesscontrol\\4.7.0\\system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.pipelines\\4.5.2\\system.io.pipelines.4.5.2.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.json\\6.0.0\\system.text.json.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.channels\\4.5.0\\system.threading.channels.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\webapiclient.extensions.dependencyinjection\\2.0.3\\webapiclient.extensions.dependencyinjection.2.0.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\webapiclient.jit\\1.0.3\\webapiclient.jit.1.0.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\yitter.idgenerator\\1.0.12\\yitter.idgenerator.1.0.12.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Tasks/obj/zzz.Tasks.csproj.nuget.dgspec.json b/yuhong_plc/zzz.Tasks/obj/zzz.Tasks.csproj.nuget.dgspec.json new file mode 100644 index 0000000..dc645b4 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/zzz.Tasks.csproj.nuget.dgspec.json @@ -0,0 +1,384 @@ +{ + "format": 1, + "restore": { + "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj": {} + }, + "projects": { + "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj", + "projectName": "zzz.Common", + "projectPath": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Common\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "Microsoft.AspNetCore.SignalR.Core": { + "target": "Package", + "version": "[1.1.0, )" + }, + "Microsoft.Extensions.Configuration": { + "target": "Package", + "version": "[6.0.1, )" + }, + "Microsoft.Extensions.Configuration.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Binder": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Configuration.Json": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.Extensions.Hosting.Abstractions": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.11.0, )" + }, + "Serilog.Sinks.File": { + "target": "Package", + "version": "[5.0.0, )" + }, + "WebApiClient.Extensions.DependencyInjection": { + "target": "Package", + "version": "[2.0.3, )" + }, + "Yitter.IdGenerator": { + "target": "Package", + "version": "[1.0.12, )" + }, + "log4net": { + "target": "Package", + "version": "[2.0.14, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj", + "projectName": "zzz.Model", + "projectPath": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.model\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.0.0, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.0.8, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj", + "projectName": "zzz.Repository", + "projectPath": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Repository\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Common\\zzz.Common.csproj" + }, + "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj", + "projectName": "zzz.Services", + "projectPath": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Services\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Repository\\zzz.Repository.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "HslCommunication": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + }, + "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj", + "projectName": "zzz.Tasks", + "projectPath": "F:\\yuhong_plc\\zzz.Tasks\\zzz.Tasks.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.Tasks\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj": { + "projectPath": "F:\\yuhong_plc\\zzz.Services\\zzz.Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Quartz": { + "target": "Package", + "version": "[3.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.Tasks/obj/zzz.Tasks.csproj.nuget.g.props b/yuhong_plc/zzz.Tasks/obj/zzz.Tasks.csproj.nuget.g.props new file mode 100644 index 0000000..15ee09f --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/zzz.Tasks.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Administrator\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.2.1 + + + + + + + C:\Users\Administrator\.nuget\packages\webapiclient.jit\1.0.3 + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Tasks/obj/zzz.Tasks.csproj.nuget.g.targets b/yuhong_plc/zzz.Tasks/obj/zzz.Tasks.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/yuhong_plc/zzz.Tasks/obj/zzz.Tasks.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/yuhong_plc/zzz.Tasks/zzz.Tasks.csproj b/yuhong_plc/zzz.Tasks/zzz.Tasks.csproj new file mode 100644 index 0000000..90c0ca6 --- /dev/null +++ b/yuhong_plc/zzz.Tasks/zzz.Tasks.csproj @@ -0,0 +1,16 @@ + + + + net6.0 + enable + + + + + + + + + + + diff --git a/yuhong_plc/zzz.model/Base/RootEntityAutoKey.cs b/yuhong_plc/zzz.model/Base/RootEntityAutoKey.cs new file mode 100644 index 0000000..34a837a --- /dev/null +++ b/yuhong_plc/zzz.model/Base/RootEntityAutoKey.cs @@ -0,0 +1,21 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model +{ + /// + /// 自增表 + /// + public class RootEntityAutoKey + { + /// + /// 自增 ID + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true,ColumnDescription = "自增主键")] + public long Id { get; set; } + } +} diff --git a/yuhong_plc/zzz.model/Base/RootEntityTkey.cs b/yuhong_plc/zzz.model/Base/RootEntityTkey.cs new file mode 100644 index 0000000..c962ab4 --- /dev/null +++ b/yuhong_plc/zzz.model/Base/RootEntityTkey.cs @@ -0,0 +1,65 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model +{ + /// + /// + /// + /// + public class RootEntityTkey where Tkey : IEquatable + { + /// + /// ID + /// 泛型主键Tkey + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true,ColumnDescription ="主键")] + public Tkey Id { get; set; } + + /// + /// 创建ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建者ID")] + public long? CreateId { get; set; } + + /// + /// 创建者 + /// + [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "创建者名称")] + public string CreateBy { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? CreateTime { get; set; } = DateTime.Now; + + /// + /// 修改ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改ID")] + public long? ModifyId { get; set; } + + /// + /// 修改者 + /// + [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "修改者名称")] + public string ModifyBy { get; set; } + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? ModifyTime { get; set; } + + /// + ///获取或设置是否禁用,逻辑上的删除,非物理删除 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "逻辑删除")] + public bool IsDeleted { get; set; } = false; + } +} diff --git a/yuhong_plc/zzz.model/Entity/ERP/plan_order.cs b/yuhong_plc/zzz.model/Entity/ERP/plan_order.cs new file mode 100644 index 0000000..ef49b7e --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/ERP/plan_order.cs @@ -0,0 +1,157 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 生成工单 + /// + [SugarTable("plan_order")] + public class plan_order + { + /// + /// 内码 + /// + [SugarColumn(IsNullable = false, ColumnDescription = "内码", ColumnDataType = "int")] + public long FID { get; set; } + + /// + /// 单据编号 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "单据编号", Length = 255)] + public string FBILL_NO { get; set; } + + /// + /// 单据类型 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "单据类型", Length = 255)] + public string FBILL_TYPE { get; set; } + + /// + /// 单据时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "单据时间")] + public DateTime? FDATE { get; set; } + + /// + /// 单据状态 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "单据状态", Length = 255)] + public string FDOCUMENT_STATUS { get; set; } + + /// + /// 产品类型 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "产品类型", Length = 255)] + public string FPRODUCT_TYPE { get; set; } + + /// + /// 入库编号 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "入库编号")] + public long FENTRY_ID { get; set; } + + /// + /// 物料编码 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "物料编码", Length = 255)] + public string FMATERIAL_ID { get; set; } + + /// + /// 产品编码 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "产品编码", Length = 255)] + public string FNUMBER { get; set; } + + /// + /// 产品名称 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "产品名称", Length = 255)] + public string FMATERIAL_NAME { get; set; } + + /// + /// 产品规格 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "产品规格", Length = 255)] + public string FSPECIFICATION { get; set; } + + /// + /// 生产车间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "生产车间", Length = 255)] + public string FWORK_SHOP { get; set; } + + /// + /// 单位 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "单位", Length = 255)] + public string FUNIT_ID { get; set; } + + /// + /// 计划生产数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "单据状态")] + public decimal? FQTY { get; set; } + + /// + /// 合格品数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "合格品数量")] + public decimal? FREPQUAAUX_QTY { get; set; } + + /// + /// 不良品数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "不良品数量")] + public decimal? FREPFAILAUX_QTY { get; set; } + + /// + /// 生产状态 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "生产状态", Length = 255)] + public string FSTATUS { get; set; } + + /// + /// 计划开始时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "计划开始时间", Length = 255)] + public string FPLAN_START_DATE { get; set; } + + /// + /// 计划完成时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "计划完成时间", Length = 255)] + public string FPLAN_FINISH_DATE { get; set; } + + /// + /// 开工时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "开工时间", Length = 255)] + public string FSTART_DATE { get; set; } + + /// + /// 完工时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "完工时间", Length = 255)] + public string FFINISH_DATE { get; set; } + + + + + + + + + + + + + + + + } +} diff --git a/yuhong_plc/zzz.model/Entity/ERP/salesout_delivery_order.cs b/yuhong_plc/zzz.model/Entity/ERP/salesout_delivery_order.cs new file mode 100644 index 0000000..791b19b --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/ERP/salesout_delivery_order.cs @@ -0,0 +1,42 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 销售出库单 + /// + [SugarTable("salesout_delivery_order")] + public class salesout_delivery_order + { + + /// + /// 内码 + /// + [SugarColumn(IsNullable = false, ColumnDescription = "内码", ColumnDataType = "int")] + public long FID { get; set; } + + /// + /// 单据时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "单据时间")] + public string FDATE { get; set; } + + /// + /// 预定销售 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "预定销售")] + public decimal FMUST_QTY { get; set; } + + /// + /// 实际出库 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "实际出库")] + public decimal FREAL_QTY { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/Eqmt13.cs b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt13.cs new file mode 100644 index 0000000..4049bc4 --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt13.cs @@ -0,0 +1,349 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 13线 + /// + [SugarTable("eqmt_collect_data13")] + public class Eqmt13 + { + /// + /// id + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] + public long id { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + /// + /// 收集唯一ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "收集唯一ID")] + public string collect_id { get; set; } + + /// + /// + /// + public int eqmt_id { get; set; } + public byte l271 { get; set; } + public byte l272 { get; set; } + public byte l273 { get; set; } + public int d60 { get; set; } + public int d5030 { get; set; } + public int d5032 { get; set; } + public int d10398 { get; set; } + public int d10448 { get; set; } + public decimal d10650 { get; set; } + public int d10700 { get; set; } + public int d10750 { get; set; } + public byte m88 { get; set; } + public int d10240 { get; set; } + public int d10250 { get; set; } + public int d10260 { get; set; } + public int d10270 { get; set; } + public int d900 { get; set; } + public int d901 { get; set; } + public int d902 { get; set; } + public int d903 { get; set; } + public int d904 { get; set; } + public int d905 { get; set; } + public int d906 { get; set; } + public int d907 { get; set; } + public int d908 { get; set; } + public int d909 { get; set; } + public int d910 { get; set; } + public int d911 { get; set; } + public int d950 { get; set; } + public int d952 { get; set; } + public int d954 { get; set; } + public int d10900 { get; set; } + public int d10950 { get; set; } + public int d10970 { get; set; } + public byte m160 { get; set; } + public byte m161 { get; set; } + public byte m162 { get; set; } + public byte m163 { get; set; } + public byte m164 { get; set; } + public byte m165 { get; set; } + public byte m166 { get; set; } + public byte m167 { get; set; } + public byte m168 { get; set; } + public byte m169 { get; set; } + public byte m170 { get; set; } + public byte m171 { get; set; } + public byte m172 { get; set; } + public byte m173 { get; set; } + public byte m174 { get; set; } + public byte m175 { get; set; } + public byte m176 { get; set; } + public byte m177 { get; set; } + public byte m178 { get; set; } + public byte m179 { get; set; } + public byte m180 { get; set; } + public byte m181 { get; set; } + public byte m182 { get; set; } + public byte m183 { get; set; } + public byte m184 { get; set; } + public byte m185 { get; set; } + public byte m186 { get; set; } + public byte m187 { get; set; } + public byte m188 { get; set; } + public byte m190 { get; set; } + public byte m70 { get; set; } + public byte m700 { get; set; } + public byte m701 { get; set; } + public byte m702 { get; set; } + public byte m703 { get; set; } + public byte m704 { get; set; } + public byte m705 { get; set; } + public byte m706 { get; set; } + public byte m707 { get; set; } + public byte m708 { get; set; } + public byte m709 { get; set; } + public byte m710 { get; set; } + public byte m711 { get; set; } + public byte m712 { get; set; } + public byte m713 { get; set; } + public byte m714 { get; set; } + public byte m728 { get; set; } + public byte m715 { get; set; } + public byte m716 { get; set; } + public byte m717 { get; set; } + public byte m718 { get; set; } + public byte m719 { get; set; } + public byte m720 { get; set; } + public byte m721 { get; set; } + public byte m722 { get; set; } + public byte m723 { get; set; } + public byte m724 { get; set; } + public byte m725 { get; set; } + public byte m736 { get; set; } + public byte m737 { get; set; } + public byte m738 { get; set; } + public byte m739 { get; set; } + public byte m740 { get; set; } + public byte m741 { get; set; } + public byte m742 { get; set; } + public byte m743 { get; set; } + public byte m744 { get; set; } + public byte m745 { get; set; } + public byte m108 { get; set; } + public byte m110 { get; set; } + public byte m109 { get; set; } + public byte m111 { get; set; } + public byte m112 { get; set; } + public byte m113 { get; set; } + public byte m114 { get; set; } + public byte m115 { get; set; } + public byte m116 { get; set; } + public byte m117 { get; set; } + public byte m118 { get; set; } + public byte m119 { get; set; } + public byte m120 { get; set; } + public byte m121 { get; set; } + public byte m50 { get; set; } + public byte m380 { get; set; } + public byte m381 { get; set; } + public byte m382 { get; set; } + public byte m383 { get; set; } + public byte m384 { get; set; } + public byte m385 { get; set; } + public byte m386 { get; set; } + public byte m387 { get; set; } + public byte m388 { get; set; } + public byte m389 { get; set; } + public byte m390 { get; set; } + public byte m391 { get; set; } + public byte m392 { get; set; } + public byte m393 { get; set; } + public byte m394 { get; set; } + public byte b00010 { get; set; } + public byte b00011 { get; set; } + public byte b00012 { get; set; } + public byte b00013 { get; set; } + public byte b00014 { get; set; } + public byte b00015 { get; set; } + public byte b00016 { get; set; } + public byte b00017 { get; set; } + public byte b00018 { get; set; } + public byte b00019 { get; set; } + public byte b0001a { get; set; } + public byte b0001b { get; set; } + public byte b0001c { get; set; } + public byte b0001d { get; set; } + public byte b0001e { get; set; } + public byte b0001f { get; set; } + public byte b00020 { get; set; } + public byte b00021 { get; set; } + public byte b00022 { get; set; } + public byte b00023 { get; set; } + public byte b00024 { get; set; } + public byte b00025 { get; set; } + public byte b00026 { get; set; } + public byte b00027 { get; set; } + public byte b00028 { get; set; } + public byte b00029 { get; set; } + public byte b0002a { get; set; } + public byte b0002b { get; set; } + public byte b0002c { get; set; } + public byte b0002d { get; set; } + public byte b0002e { get; set; } + public byte b0002f { get; set; } + public byte b00510 { get; set; } + public byte b00511 { get; set; } + public byte b00512 { get; set; } + public byte b00513 { get; set; } + public byte b00514 { get; set; } + public byte b00515 { get; set; } + public byte b00516 { get; set; } + public byte b00517 { get; set; } + public byte b00518 { get; set; } + public byte b00519 { get; set; } + public byte b0051a { get; set; } + public byte b0051b { get; set; } + public byte b0051c { get; set; } + public byte b0051d { get; set; } + public byte b0051e { get; set; } + public byte b0051f { get; set; } + public byte b00520 { get; set; } + public byte b00521 { get; set; } + public byte b00522 { get; set; } + public byte b00523 { get; set; } + public byte b00524 { get; set; } + public byte b00525 { get; set; } + public byte b00526 { get; set; } + public byte b00527 { get; set; } + public byte b00528 { get; set; } + public byte b00529 { get; set; } + public byte b0052a { get; set; } + public byte b0052b { get; set; } + public byte b0052c { get; set; } + public byte b0052d { get; set; } + public byte b0052e { get; set; } + public byte b0052f { get; set; } + public byte b00a10 { get; set; } + public byte b00a11 { get; set; } + public byte b00a12 { get; set; } + public byte b00a13 { get; set; } + public byte b00a14 { get; set; } + public byte b00a15 { get; set; } + public byte b00a16 { get; set; } + public byte b00a17 { get; set; } + public byte b00a18 { get; set; } + public byte b00a19 { get; set; } + public byte b00a1a { get; set; } + public byte b00a1b { get; set; } + public byte b00a1c { get; set; } + public byte b00a1d { get; set; } + public byte b00a1e { get; set; } + public byte b00a1f { get; set; } + public byte b00a20 { get; set; } + public byte b00a21 { get; set; } + public byte b00a22 { get; set; } + public byte b00a23 { get; set; } + public byte b00a24 { get; set; } + public byte b00a25 { get; set; } + public byte b00a26 { get; set; } + public byte b00a27 { get; set; } + public byte b00a28 { get; set; } + public byte b00a29 { get; set; } + public byte b00a2a { get; set; } + public byte b00a2b { get; set; } + public byte b00a2c { get; set; } + public byte b00a2d { get; set; } + public byte b00a2e { get; set; } + public byte b00a2f { get; set; } + public byte b01810 { get; set; } + public byte b01811 { get; set; } + public byte b01812 { get; set; } + public byte b01813 { get; set; } + public byte b01814 { get; set; } + public byte b01815 { get; set; } + public byte b01816 { get; set; } + public byte b01817 { get; set; } + public byte b01818 { get; set; } + public byte b01819 { get; set; } + public byte l100 { get; set; } + public byte l101 { get; set; } + public byte l102 { get; set; } + public byte l103 { get; set; } + public byte l104 { get; set; } + public byte l105 { get; set; } + public byte l106 { get; set; } + public byte l107 { get; set; } + public byte l108 { get; set; } + public byte l109 { get; set; } + public byte l110 { get; set; } + public byte l111 { get; set; } + public byte l112 { get; set; } + public byte l113 { get; set; } + public byte l114 { get; set; } + public byte l115 { get; set; } + public byte l116 { get; set; } + public byte l117 { get; set; } + public byte m800 { get; set; } + public byte m801 { get; set; } + public byte m802 { get; set; } + public byte m803 { get; set; } + public byte m804 { get; set; } + public byte m805 { get; set; } + public byte m806 { get; set; } + public byte m807 { get; set; } + public byte m808 { get; set; } + public byte m809 { get; set; } + public byte m810 { get; set; } + public byte m811 { get; set; } + public byte m812 { get; set; } + public byte m813 { get; set; } + public byte m814 { get; set; } + public byte m820 { get; set; } + public byte m821 { get; set; } + public byte m822 { get; set; } + public byte m823 { get; set; } + public byte m824 { get; set; } + public byte m825 { get; set; } + public byte m826 { get; set; } + public byte m827 { get; set; } + public byte m828 { get; set; } + public byte m829 { get; set; } + public byte m830 { get; set; } + public byte m831 { get; set; } + public byte m832 { get; set; } + public byte m834 { get; set; } + public byte m860 { get; set; } + public byte m861 { get; set; } + public byte m862 { get; set; } + public byte m863 { get; set; } + public byte m864 { get; set; } + public byte m865 { get; set; } + public byte m866 { get; set; } + public byte m867 { get; set; } + public byte m868 { get; set; } + public byte m869 { get; set; } + public byte m870 { get; set; } + public byte m871 { get; set; } + public byte m872 { get; set; } + public byte m874 { get; set; } + public byte sm52 { get; set; } + public byte b0000f { get; set; } + public byte b0050f { get; set; } + public byte b00a0f { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/Eqmt15.cs b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt15.cs new file mode 100644 index 0000000..96a6457 --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt15.cs @@ -0,0 +1,349 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 15线 + /// + [SugarTable("eqmt_collect_data15")] + public class Eqmt15 + { + /// + /// id + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] + public long id { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + /// + /// 收集唯一ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "收集唯一ID")] + public string collect_id { get; set; } + + /// + /// + /// + public int eqmt_id { get; set; } + public byte l271 { get; set; } + public byte l272 { get; set; } + public byte l273 { get; set; } + public int d60 { get; set; } + public int d5030 { get; set; } + public int d5032 { get; set; } + public int d10398 { get; set; } + public int d10448 { get; set; } + public decimal d10650 { get; set; } + public int d10700 { get; set; } + public int d10750 { get; set; } + public byte m88 { get; set; } + public int d10240 { get; set; } + public int d10250 { get; set; } + public int d10260 { get; set; } + public int d10270 { get; set; } + public int d900 { get; set; } + public int d901 { get; set; } + public int d902 { get; set; } + public int d903 { get; set; } + public int d904 { get; set; } + public int d905 { get; set; } + public int d906 { get; set; } + public int d907 { get; set; } + public int d908 { get; set; } + public int d909 { get; set; } + public int d910 { get; set; } + public int d911 { get; set; } + public int d950 { get; set; } + public int d952 { get; set; } + public int d954 { get; set; } + public int d10900 { get; set; } + public int d10950 { get; set; } + public int d10970 { get; set; } + public byte m160 { get; set; } + public byte m161 { get; set; } + public byte m162 { get; set; } + public byte m163 { get; set; } + public byte m164 { get; set; } + public byte m165 { get; set; } + public byte m166 { get; set; } + public byte m167 { get; set; } + public byte m168 { get; set; } + public byte m169 { get; set; } + public byte m170 { get; set; } + public byte m171 { get; set; } + public byte m172 { get; set; } + public byte m173 { get; set; } + public byte m174 { get; set; } + public byte m175 { get; set; } + public byte m176 { get; set; } + public byte m177 { get; set; } + public byte m178 { get; set; } + public byte m179 { get; set; } + public byte m180 { get; set; } + public byte m181 { get; set; } + public byte m182 { get; set; } + public byte m183 { get; set; } + public byte m184 { get; set; } + public byte m185 { get; set; } + public byte m186 { get; set; } + public byte m187 { get; set; } + public byte m188 { get; set; } + public byte m190 { get; set; } + public byte m70 { get; set; } + public byte m700 { get; set; } + public byte m701 { get; set; } + public byte m702 { get; set; } + public byte m703 { get; set; } + public byte m704 { get; set; } + public byte m705 { get; set; } + public byte m706 { get; set; } + public byte m707 { get; set; } + public byte m708 { get; set; } + public byte m709 { get; set; } + public byte m710 { get; set; } + public byte m711 { get; set; } + public byte m712 { get; set; } + public byte m713 { get; set; } + public byte m714 { get; set; } + public byte m728 { get; set; } + public byte m715 { get; set; } + public byte m716 { get; set; } + public byte m717 { get; set; } + public byte m718 { get; set; } + public byte m719 { get; set; } + public byte m720 { get; set; } + public byte m721 { get; set; } + public byte m722 { get; set; } + public byte m723 { get; set; } + public byte m724 { get; set; } + public byte m725 { get; set; } + public byte m736 { get; set; } + public byte m737 { get; set; } + public byte m738 { get; set; } + public byte m739 { get; set; } + public byte m740 { get; set; } + public byte m741 { get; set; } + public byte m742 { get; set; } + public byte m743 { get; set; } + public byte m744 { get; set; } + public byte m745 { get; set; } + public byte m108 { get; set; } + public byte m110 { get; set; } + public byte m109 { get; set; } + public byte m111 { get; set; } + public byte m112 { get; set; } + public byte m113 { get; set; } + public byte m114 { get; set; } + public byte m115 { get; set; } + public byte m116 { get; set; } + public byte m117 { get; set; } + public byte m118 { get; set; } + public byte m119 { get; set; } + public byte m120 { get; set; } + public byte m121 { get; set; } + public byte m50 { get; set; } + public byte m380 { get; set; } + public byte m381 { get; set; } + public byte m382 { get; set; } + public byte m383 { get; set; } + public byte m384 { get; set; } + public byte m385 { get; set; } + public byte m386 { get; set; } + public byte m387 { get; set; } + public byte m388 { get; set; } + public byte m389 { get; set; } + public byte m390 { get; set; } + public byte m391 { get; set; } + public byte m392 { get; set; } + public byte m393 { get; set; } + public byte m394 { get; set; } + public byte b00010 { get; set; } + public byte b00011 { get; set; } + public byte b00012 { get; set; } + public byte b00013 { get; set; } + public byte b00014 { get; set; } + public byte b00015 { get; set; } + public byte b00016 { get; set; } + public byte b00017 { get; set; } + public byte b00018 { get; set; } + public byte b00019 { get; set; } + public byte b0001a { get; set; } + public byte b0001b { get; set; } + public byte b0001c { get; set; } + public byte b0001d { get; set; } + public byte b0001e { get; set; } + public byte b0001f { get; set; } + public byte b00020 { get; set; } + public byte b00021 { get; set; } + public byte b00022 { get; set; } + public byte b00023 { get; set; } + public byte b00024 { get; set; } + public byte b00025 { get; set; } + public byte b00026 { get; set; } + public byte b00027 { get; set; } + public byte b00028 { get; set; } + public byte b00029 { get; set; } + public byte b0002a { get; set; } + public byte b0002b { get; set; } + public byte b0002c { get; set; } + public byte b0002d { get; set; } + public byte b0002e { get; set; } + public byte b0002f { get; set; } + public byte b00510 { get; set; } + public byte b00511 { get; set; } + public byte b00512 { get; set; } + public byte b00513 { get; set; } + public byte b00514 { get; set; } + public byte b00515 { get; set; } + public byte b00516 { get; set; } + public byte b00517 { get; set; } + public byte b00518 { get; set; } + public byte b00519 { get; set; } + public byte b0051a { get; set; } + public byte b0051b { get; set; } + public byte b0051c { get; set; } + public byte b0051d { get; set; } + public byte b0051e { get; set; } + public byte b0051f { get; set; } + public byte b00520 { get; set; } + public byte b00521 { get; set; } + public byte b00522 { get; set; } + public byte b00523 { get; set; } + public byte b00524 { get; set; } + public byte b00525 { get; set; } + public byte b00526 { get; set; } + public byte b00527 { get; set; } + public byte b00528 { get; set; } + public byte b00529 { get; set; } + public byte b0052a { get; set; } + public byte b0052b { get; set; } + public byte b0052c { get; set; } + public byte b0052d { get; set; } + public byte b0052e { get; set; } + public byte b0052f { get; set; } + public byte b00a10 { get; set; } + public byte b00a11 { get; set; } + public byte b00a12 { get; set; } + public byte b00a13 { get; set; } + public byte b00a14 { get; set; } + public byte b00a15 { get; set; } + public byte b00a16 { get; set; } + public byte b00a17 { get; set; } + public byte b00a18 { get; set; } + public byte b00a19 { get; set; } + public byte b00a1a { get; set; } + public byte b00a1b { get; set; } + public byte b00a1c { get; set; } + public byte b00a1d { get; set; } + public byte b00a1e { get; set; } + public byte b00a1f { get; set; } + public byte b00a20 { get; set; } + public byte b00a21 { get; set; } + public byte b00a22 { get; set; } + public byte b00a23 { get; set; } + public byte b00a24 { get; set; } + public byte b00a25 { get; set; } + public byte b00a26 { get; set; } + public byte b00a27 { get; set; } + public byte b00a28 { get; set; } + public byte b00a29 { get; set; } + public byte b00a2a { get; set; } + public byte b00a2b { get; set; } + public byte b00a2c { get; set; } + public byte b00a2d { get; set; } + public byte b00a2e { get; set; } + public byte b00a2f { get; set; } + public byte b01810 { get; set; } + public byte b01811 { get; set; } + public byte b01812 { get; set; } + public byte b01813 { get; set; } + public byte b01814 { get; set; } + public byte b01815 { get; set; } + public byte b01816 { get; set; } + public byte b01817 { get; set; } + public byte b01818 { get; set; } + public byte b01819 { get; set; } + public byte l100 { get; set; } + public byte l101 { get; set; } + public byte l102 { get; set; } + public byte l103 { get; set; } + public byte l104 { get; set; } + public byte l105 { get; set; } + public byte l106 { get; set; } + public byte l107 { get; set; } + public byte l108 { get; set; } + public byte l109 { get; set; } + public byte l110 { get; set; } + public byte l111 { get; set; } + public byte l112 { get; set; } + public byte l113 { get; set; } + public byte l114 { get; set; } + public byte l115 { get; set; } + public byte l116 { get; set; } + public byte l117 { get; set; } + public byte m800 { get; set; } + public byte m801 { get; set; } + public byte m802 { get; set; } + public byte m803 { get; set; } + public byte m804 { get; set; } + public byte m805 { get; set; } + public byte m806 { get; set; } + public byte m807 { get; set; } + public byte m808 { get; set; } + public byte m809 { get; set; } + public byte m810 { get; set; } + public byte m811 { get; set; } + public byte m812 { get; set; } + public byte m813 { get; set; } + public byte m814 { get; set; } + public byte m820 { get; set; } + public byte m821 { get; set; } + public byte m822 { get; set; } + public byte m823 { get; set; } + public byte m824 { get; set; } + public byte m825 { get; set; } + public byte m826 { get; set; } + public byte m827 { get; set; } + public byte m828 { get; set; } + public byte m829 { get; set; } + public byte m830 { get; set; } + public byte m831 { get; set; } + public byte m832 { get; set; } + public byte m834 { get; set; } + public byte m860 { get; set; } + public byte m861 { get; set; } + public byte m862 { get; set; } + public byte m863 { get; set; } + public byte m864 { get; set; } + public byte m865 { get; set; } + public byte m866 { get; set; } + public byte m867 { get; set; } + public byte m868 { get; set; } + public byte m869 { get; set; } + public byte m870 { get; set; } + public byte m871 { get; set; } + public byte m872 { get; set; } + public byte m874 { get; set; } + public byte sm52 { get; set; } + public byte b0000f { get; set; } + public byte b0050f { get; set; } + public byte b00a0f { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/Eqmt16.cs b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt16.cs new file mode 100644 index 0000000..6b86044 --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt16.cs @@ -0,0 +1,706 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 16线 + /// + [SugarTable("eqmt_collect_data16")] + public class Eqmt16 + { + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + public int eqmt_id { get; set; } + public string collect_id { get; set; } + public int d10 { get; set; } + public int d0 { get; set; } + public int d4000 { get; set; } + public int d4002 { get; set; } + public int d4004 { get; set; } + public int d4006 { get; set; } + public decimal d4008 { get; set; } + public int d4022 { get; set; } + public int d4030 { get; set; } + public int d4032 { get; set; } + public int d4042 { get; set; } + public int d4050 { get; set; } + public int d4052 { get; set; } + public int d4062 { get; set; } + public int d4070 { get; set; } + public int d4072 { get; set; } + public decimal d4080 { get; set; } + public byte m40 { get; set; } + public byte m6490 { get; set; } + public byte m6001 { get; set; } + public byte m6002 { get; set; } + public byte m6003 { get; set; } + public byte m6004 { get; set; } + public byte m6005 { get; set; } + public byte m6006 { get; set; } + public byte m6007 { get; set; } + public byte m6008 { get; set; } + public byte m6009 { get; set; } + public byte m6010 { get; set; } + public byte m6011 { get; set; } + public byte m6012 { get; set; } + public byte m6013 { get; set; } + public byte m6014 { get; set; } + public byte m6015 { get; set; } + public byte m6016 { get; set; } + public byte m6017 { get; set; } + public byte m6018 { get; set; } + public byte m6019 { get; set; } + public byte m6020 { get; set; } + public byte m6021 { get; set; } + public byte m6022 { get; set; } + public byte m6023 { get; set; } + public byte m6024 { get; set; } + public byte m6025 { get; set; } + public byte m6026 { get; set; } + public byte m6027 { get; set; } + public byte m6028 { get; set; } + public byte m6029 { get; set; } + public byte m6030 { get; set; } + public byte m6031 { get; set; } + public byte m6032 { get; set; } + public byte m6033 { get; set; } + public byte m6034 { get; set; } + public byte m6035 { get; set; } + public byte m6036 { get; set; } + public byte m6037 { get; set; } + public byte m6038 { get; set; } + public byte m6039 { get; set; } + public byte m6040 { get; set; } + public byte m6041 { get; set; } + public byte m6042 { get; set; } + public byte m6043 { get; set; } + public byte m6044 { get; set; } + public byte m6045 { get; set; } + public byte m6046 { get; set; } + public byte m6047 { get; set; } + public byte m6048 { get; set; } + public byte m6049 { get; set; } + public byte m6050 { get; set; } + public byte m6051 { get; set; } + public byte m6052 { get; set; } + public byte m6053 { get; set; } + public byte m6054 { get; set; } + public byte m6055 { get; set; } + public byte m6056 { get; set; } + public byte m6057 { get; set; } + public byte m6058 { get; set; } + public byte m6059 { get; set; } + public byte m6060 { get; set; } + public byte m6061 { get; set; } + public byte m6062 { get; set; } + public byte m6063 { get; set; } + public byte m6064 { get; set; } + public byte m6065 { get; set; } + public byte m6066 { get; set; } + public byte m6067 { get; set; } + public byte m6068 { get; set; } + public byte m6069 { get; set; } + public byte m6070 { get; set; } + public byte m6071 { get; set; } + public byte m6072 { get; set; } + public byte m6073 { get; set; } + public byte m6074 { get; set; } + public byte m6075 { get; set; } + public byte m6076 { get; set; } + public byte m6077 { get; set; } + public byte m6078 { get; set; } + public byte m6079 { get; set; } + public byte m6080 { get; set; } + public byte m6081 { get; set; } + public byte m6082 { get; set; } + public byte m6083 { get; set; } + public byte m6084 { get; set; } + public byte m6085 { get; set; } + public byte m6086 { get; set; } + public byte m6087 { get; set; } + public byte m6088 { get; set; } + public byte m6089 { get; set; } + public byte m6090 { get; set; } + public byte m6091 { get; set; } + public byte m6092 { get; set; } + public byte m6093 { get; set; } + public byte m6094 { get; set; } + public byte m6095 { get; set; } + public byte m6096 { get; set; } + public byte m6097 { get; set; } + public byte m6098 { get; set; } + public byte m6099 { get; set; } + public byte m6100 { get; set; } + public byte m6101 { get; set; } + public byte m6102 { get; set; } + public byte m6103 { get; set; } + public byte m6104 { get; set; } + public byte m6105 { get; set; } + public byte m6106 { get; set; } + public byte m6107 { get; set; } + public byte m6108 { get; set; } + public byte m6109 { get; set; } + public byte m6110 { get; set; } + public byte m6111 { get; set; } + public byte m6112 { get; set; } + public byte m6113 { get; set; } + public byte m6114 { get; set; } + public byte m6115 { get; set; } + public byte m6116 { get; set; } + public byte m6117 { get; set; } + public byte m6118 { get; set; } + public byte m6119 { get; set; } + public byte m6120 { get; set; } + public byte m6121 { get; set; } + public byte m6122 { get; set; } + public byte m6123 { get; set; } + public byte m6124 { get; set; } + public byte m6125 { get; set; } + public byte m6126 { get; set; } + public byte m6127 { get; set; } + public byte m6128 { get; set; } + public byte m6129 { get; set; } + public byte m6130 { get; set; } + public byte m6131 { get; set; } + public byte m6132 { get; set; } + public byte m6133 { get; set; } + public byte m6134 { get; set; } + public byte m6135 { get; set; } + public byte m6136 { get; set; } + public byte m6137 { get; set; } + public byte m6138 { get; set; } + public byte m6139 { get; set; } + public byte m6140 { get; set; } + public byte m6141 { get; set; } + public byte m6142 { get; set; } + public byte m6143 { get; set; } + public byte m6144 { get; set; } + public byte m6145 { get; set; } + public byte m6146 { get; set; } + public byte m6147 { get; set; } + public byte m6148 { get; set; } + public byte m6149 { get; set; } + public byte m6150 { get; set; } + public byte m6151 { get; set; } + public byte m6152 { get; set; } + public byte m6153 { get; set; } + public byte m6154 { get; set; } + public byte m6155 { get; set; } + public byte m6156 { get; set; } + public byte m6157 { get; set; } + public byte m6158 { get; set; } + public byte m6159 { get; set; } + public byte m6160 { get; set; } + public byte m6161 { get; set; } + public byte m6162 { get; set; } + public byte m6163 { get; set; } + public byte m6164 { get; set; } + public byte m6165 { get; set; } + public byte m6166 { get; set; } + public byte m6167 { get; set; } + public byte m6168 { get; set; } + public byte m6169 { get; set; } + public byte m6170 { get; set; } + public byte m6171 { get; set; } + public byte m6172 { get; set; } + public byte m6173 { get; set; } + public byte m6174 { get; set; } + public byte m6175 { get; set; } + public byte m6176 { get; set; } + public byte m6177 { get; set; } + public byte m6178 { get; set; } + public byte m6179 { get; set; } + public byte m6180 { get; set; } + public byte m6181 { get; set; } + public byte m6182 { get; set; } + public byte m6183 { get; set; } + public byte m6184 { get; set; } + public byte m6185 { get; set; } + public byte m6186 { get; set; } + public byte m6187 { get; set; } + public byte m6188 { get; set; } + public byte m6189 { get; set; } + public byte m6190 { get; set; } + public byte m6191 { get; set; } + public byte m6192 { get; set; } + public byte m6193 { get; set; } + public byte m6194 { get; set; } + public byte m6195 { get; set; } + public byte m6196 { get; set; } + public byte m6197 { get; set; } + public byte m6198 { get; set; } + public byte m6199 { get; set; } + public byte m6200 { get; set; } + public byte m6201 { get; set; } + public byte m6202 { get; set; } + public byte m6203 { get; set; } + public byte m6204 { get; set; } + public byte m6205 { get; set; } + public byte m6206 { get; set; } + public byte m6207 { get; set; } + public byte m6208 { get; set; } + public byte m6209 { get; set; } + public byte m6210 { get; set; } + public byte m6211 { get; set; } + public byte m6212 { get; set; } + public byte m6213 { get; set; } + public byte m6214 { get; set; } + public byte m6215 { get; set; } + public byte m6216 { get; set; } + public byte m6217 { get; set; } + public byte m6218 { get; set; } + public byte m6219 { get; set; } + public byte m6220 { get; set; } + public byte m6221 { get; set; } + public byte m6222 { get; set; } + public byte m6223 { get; set; } + public byte m6224 { get; set; } + public byte m6225 { get; set; } + public byte m6226 { get; set; } + public byte m6227 { get; set; } + public byte m6228 { get; set; } + public byte m6229 { get; set; } + public byte m6230 { get; set; } + public byte m6231 { get; set; } + public byte m6232 { get; set; } + public byte m6233 { get; set; } + public byte m6234 { get; set; } + public byte m6235 { get; set; } + public byte m6236 { get; set; } + public byte m6237 { get; set; } + public byte m6238 { get; set; } + public byte m6239 { get; set; } + public byte m6240 { get; set; } + public byte m6241 { get; set; } + public byte m6242 { get; set; } + public byte m6243 { get; set; } + public byte m6244 { get; set; } + public byte m6245 { get; set; } + public byte m6246 { get; set; } + public byte m6247 { get; set; } + public byte m6248 { get; set; } + public byte m6249 { get; set; } + public byte m6250 { get; set; } + public byte m6251 { get; set; } + public byte m6252 { get; set; } + public byte m6253 { get; set; } + public byte m6254 { get; set; } + public byte m6255 { get; set; } + public byte m6256 { get; set; } + public byte m6257 { get; set; } + public byte m6258 { get; set; } + public byte m6259 { get; set; } + public byte m6260 { get; set; } + public byte m6261 { get; set; } + public byte m6262 { get; set; } + public byte m6263 { get; set; } + public byte m6264 { get; set; } + public byte m6265 { get; set; } + public byte m6266 { get; set; } + public byte m6267 { get; set; } + public byte m6268 { get; set; } + public byte m6269 { get; set; } + public byte m6270 { get; set; } + public byte m6271 { get; set; } + public byte m6272 { get; set; } + public byte m6273 { get; set; } + public byte m6274 { get; set; } + public byte m6275 { get; set; } + public byte m6276 { get; set; } + public byte m6277 { get; set; } + public byte m6278 { get; set; } + public byte m6279 { get; set; } + public byte m6280 { get; set; } + public byte m6281 { get; set; } + public byte m6282 { get; set; } + public byte m6283 { get; set; } + public byte m6284 { get; set; } + public byte m6285 { get; set; } + public byte m6286 { get; set; } + public byte m6287 { get; set; } + public byte m6288 { get; set; } + public byte m6289 { get; set; } + public byte m6290 { get; set; } + public byte m6291 { get; set; } + public byte m6292 { get; set; } + public byte m6293 { get; set; } + public byte m6294 { get; set; } + public byte m6295 { get; set; } + public byte m6296 { get; set; } + public byte m6297 { get; set; } + public byte m6298 { get; set; } + public byte m6299 { get; set; } + public byte m6300 { get; set; } + public byte m6301 { get; set; } + public byte m6302 { get; set; } + public byte m6303 { get; set; } + public byte m6304 { get; set; } + public byte m6305 { get; set; } + public byte m6306 { get; set; } + public byte m6307 { get; set; } + public byte m6308 { get; set; } + public byte m6309 { get; set; } + public byte m6310 { get; set; } + public byte m6311 { get; set; } + public byte m6312 { get; set; } + public byte m6313 { get; set; } + public byte m6314 { get; set; } + public byte m6315 { get; set; } + public byte m6316 { get; set; } + public byte m6317 { get; set; } + public byte m6318 { get; set; } + public byte m6319 { get; set; } + public byte m6320 { get; set; } + public byte m6321 { get; set; } + public byte m6322 { get; set; } + public byte m6323 { get; set; } + public byte m6324 { get; set; } + public byte m6325 { get; set; } + public byte m6326 { get; set; } + public byte m6327 { get; set; } + public byte m6328 { get; set; } + public byte m6329 { get; set; } + public byte m6330 { get; set; } + public byte m6331 { get; set; } + public byte m6332 { get; set; } + public byte m6333 { get; set; } + public byte m6334 { get; set; } + public byte m6335 { get; set; } + public byte m6336 { get; set; } + public byte m6501 { get; set; } + public byte m6502 { get; set; } + public byte m6503 { get; set; } + public byte m6504 { get; set; } + public byte m6505 { get; set; } + public byte m6506 { get; set; } + public byte m6507 { get; set; } + public byte m6508 { get; set; } + public byte m6509 { get; set; } + public byte m6510 { get; set; } + public byte m6511 { get; set; } + public byte m6512 { get; set; } + public byte m6513 { get; set; } + public byte m6514 { get; set; } + public byte m6515 { get; set; } + public byte m6516 { get; set; } + public byte m6517 { get; set; } + public byte m6518 { get; set; } + public byte m6519 { get; set; } + public byte m6520 { get; set; } + public byte m6521 { get; set; } + public byte m6522 { get; set; } + public byte m6523 { get; set; } + public byte m6524 { get; set; } + public byte m6525 { get; set; } + public byte m6526 { get; set; } + public byte m6527 { get; set; } + public byte m6528 { get; set; } + public byte m6529 { get; set; } + public byte m6530 { get; set; } + public byte m6531 { get; set; } + public byte m6532 { get; set; } + public byte m6533 { get; set; } + public byte m6534 { get; set; } + public byte m6535 { get; set; } + public byte m6536 { get; set; } + public byte m6537 { get; set; } + public byte m6538 { get; set; } + public byte m6539 { get; set; } + public byte m6540 { get; set; } + public byte m6541 { get; set; } + public byte m6542 { get; set; } + public byte m6543 { get; set; } + public byte m6544 { get; set; } + public byte m6545 { get; set; } + public byte m6546 { get; set; } + public byte m6547 { get; set; } + public byte m6548 { get; set; } + public byte m6549 { get; set; } + public byte m6550 { get; set; } + public byte m6551 { get; set; } + public byte m6552 { get; set; } + public byte m6553 { get; set; } + public byte m6554 { get; set; } + public byte m6555 { get; set; } + public byte m6556 { get; set; } + public byte m6557 { get; set; } + public byte m6558 { get; set; } + public byte m6559 { get; set; } + public byte m6560 { get; set; } + public byte m6561 { get; set; } + public byte m6562 { get; set; } + public byte m6563 { get; set; } + public byte m6564 { get; set; } + public byte m6565 { get; set; } + public byte m6566 { get; set; } + public byte m6567 { get; set; } + public byte m6568 { get; set; } + public byte m6569 { get; set; } + public byte m6570 { get; set; } + public byte m6571 { get; set; } + public byte m6572 { get; set; } + public byte m6573 { get; set; } + public byte m6574 { get; set; } + public byte m6575 { get; set; } + public byte m6576 { get; set; } + public byte m6577 { get; set; } + public byte m6578 { get; set; } + public byte m6579 { get; set; } + public byte m6580 { get; set; } + public byte m6581 { get; set; } + public byte m6582 { get; set; } + public byte m6583 { get; set; } + public byte m6584 { get; set; } + public byte m6585 { get; set; } + public byte m6586 { get; set; } + public byte m6587 { get; set; } + public byte m6588 { get; set; } + public byte m6589 { get; set; } + public byte m6590 { get; set; } + public byte m6591 { get; set; } + public byte m6592 { get; set; } + public byte m6593 { get; set; } + public byte m6594 { get; set; } + public byte m6595 { get; set; } + public byte m6596 { get; set; } + public byte m6597 { get; set; } + public byte m6598 { get; set; } + public byte m6599 { get; set; } + public byte m6600 { get; set; } + public byte m6601 { get; set; } + public byte m6602 { get; set; } + public byte m6603 { get; set; } + public byte m6604 { get; set; } + public byte m6605 { get; set; } + public byte m6606 { get; set; } + public byte m6607 { get; set; } + public byte m6608 { get; set; } + public byte m6609 { get; set; } + public byte m6610 { get; set; } + public byte m6611 { get; set; } + public byte m6612 { get; set; } + public byte m6613 { get; set; } + public byte m6614 { get; set; } + public byte m6615 { get; set; } + public byte m6616 { get; set; } + public byte m6617 { get; set; } + public byte m6618 { get; set; } + public byte m6619 { get; set; } + public byte m6620 { get; set; } + public byte m6621 { get; set; } + public byte m6622 { get; set; } + public byte m6623 { get; set; } + public byte m6624 { get; set; } + public byte m6625 { get; set; } + public byte m6626 { get; set; } + public byte m6627 { get; set; } + public byte m6628 { get; set; } + public byte m6629 { get; set; } + public byte m6630 { get; set; } + public byte m6631 { get; set; } + public byte m6632 { get; set; } + public byte m6633 { get; set; } + public byte m6634 { get; set; } + public byte m6635 { get; set; } + public byte m6636 { get; set; } + public byte m6637 { get; set; } + public byte m6638 { get; set; } + public byte m6639 { get; set; } + public byte m6640 { get; set; } + public byte m6641 { get; set; } + public byte m6642 { get; set; } + public byte m6643 { get; set; } + public byte m6644 { get; set; } + public byte m6645 { get; set; } + public byte m6646 { get; set; } + public byte m6647 { get; set; } + public byte m6648 { get; set; } + public byte m6649 { get; set; } + public byte m6650 { get; set; } + public byte m6651 { get; set; } + public byte m6652 { get; set; } + public byte m6653 { get; set; } + public byte m6654 { get; set; } + public byte m6655 { get; set; } + public byte m6656 { get; set; } + public byte m6657 { get; set; } + public byte m6658 { get; set; } + public byte m6659 { get; set; } + public byte m6660 { get; set; } + public byte m6661 { get; set; } + public byte m6662 { get; set; } + public byte m6663 { get; set; } + public byte m6664 { get; set; } + public byte m6665 { get; set; } + public byte m6666 { get; set; } + public byte m6667 { get; set; } + public byte m6668 { get; set; } + public byte m6669 { get; set; } + public byte m6670 { get; set; } + public byte m6671 { get; set; } + public byte m6672 { get; set; } + public byte m6673 { get; set; } + public byte m6674 { get; set; } + public byte m6675 { get; set; } + public byte m6676 { get; set; } + public byte m6677 { get; set; } + public byte m6678 { get; set; } + public byte m6679 { get; set; } + public byte m6680 { get; set; } + public byte m6681 { get; set; } + public byte m6682 { get; set; } + public byte m6683 { get; set; } + public byte m6684 { get; set; } + public byte m6685 { get; set; } + public byte m6686 { get; set; } + public byte m6687 { get; set; } + public byte m6688 { get; set; } + public byte m6689 { get; set; } + public byte m6690 { get; set; } + public byte m6691 { get; set; } + public byte m6692 { get; set; } + public byte m6693 { get; set; } + public byte m6694 { get; set; } + public byte m6695 { get; set; } + public byte m6696 { get; set; } + public byte m6697 { get; set; } + public byte m6698 { get; set; } + public byte m6699 { get; set; } + public byte m6700 { get; set; } + public byte m6701 { get; set; } + public byte m6702 { get; set; } + public byte m6703 { get; set; } + public byte m6704 { get; set; } + public byte m6705 { get; set; } + public byte m6706 { get; set; } + public byte m6707 { get; set; } + public byte m6708 { get; set; } + public byte m6709 { get; set; } + public byte m6710 { get; set; } + public byte m6711 { get; set; } + public byte m6712 { get; set; } + public byte m6713 { get; set; } + public byte m6714 { get; set; } + public byte m6715 { get; set; } + public byte m6716 { get; set; } + public byte m6717 { get; set; } + public byte m6718 { get; set; } + public byte m6719 { get; set; } + public byte m6720 { get; set; } + public byte m6721 { get; set; } + public byte m6722 { get; set; } + public byte m6723 { get; set; } + public byte m6724 { get; set; } + public byte m6725 { get; set; } + public byte m6726 { get; set; } + public byte m6727 { get; set; } + public byte m6728 { get; set; } + public byte m6729 { get; set; } + public byte m6730 { get; set; } + public byte m6731 { get; set; } + public byte m6732 { get; set; } + public byte m6733 { get; set; } + public byte m6734 { get; set; } + public byte m6735 { get; set; } + public byte m6736 { get; set; } + public byte m6737 { get; set; } + public byte m6738 { get; set; } + public byte m6739 { get; set; } + public byte m6740 { get; set; } + public byte m6741 { get; set; } + public byte m6742 { get; set; } + public byte m6743 { get; set; } + public byte m6744 { get; set; } + public byte m6745 { get; set; } + public byte m6746 { get; set; } + public byte m6747 { get; set; } + public byte m6748 { get; set; } + public byte m6749 { get; set; } + public byte m6750 { get; set; } + public byte m6751 { get; set; } + public byte m6752 { get; set; } + public byte m6753 { get; set; } + public byte m6754 { get; set; } + public byte m6755 { get; set; } + public byte m6756 { get; set; } + public int r401 { get; set; } + public int r402 { get; set; } + public int r403 { get; set; } + public int r404 { get; set; } + public int r405 { get; set; } + public int r406 { get; set; } + public int r407 { get; set; } + public int r408 { get; set; } + public int r409 { get; set; } + public int r410 { get; set; } + public int r411 { get; set; } + public int r412 { get; set; } + public int r413 { get; set; } + public int r414 { get; set; } + public int r415 { get; set; } + public int r416 { get; set; } + public int r417 { get; set; } + public int r418 { get; set; } + public int r419 { get; set; } + public int r420 { get; set; } + public int r421 { get; set; } + public int r422 { get; set; } + public int r423 { get; set; } + public int r424 { get; set; } + public int r425 { get; set; } + public int r426 { get; set; } + public int r427 { get; set; } + public int r428 { get; set; } + public int r429 { get; set; } + public int r430 { get; set; } + public int r431 { get; set; } + public int r432 { get; set; } + public int r433 { get; set; } + public int r434 { get; set; } + public int r435 { get; set; } + public int r436 { get; set; } + public int r437 { get; set; } + public int r438 { get; set; } + public int r439 { get; set; } + public int r440 { get; set; } + public int r441 { get; set; } + public int r442 { get; set; } + public int r443 { get; set; } + public int r444 { get; set; } + public int r445 { get; set; } + public int r446 { get; set; } + public int r447 { get; set; } + public int r448 { get; set; } + public int r449 { get; set; } + public int r450 { get; set; } + public int r451 { get; set; } + public int r452 { get; set; } + public int r453 { get; set; } + public int r454 { get; set; } + public int r455 { get; set; } + public int r456 { get; set; } + public int r457 { get; set; } + public int r458 { get; set; } + public int r459 { get; set; } + public int r460 { get; set; } + public int r461 { get; set; } + public int r462 { get; set; } + public int r463 { get; set; } + public int r464 { get; set; } + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/Eqmt17.cs b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt17.cs new file mode 100644 index 0000000..7b808e9 --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt17.cs @@ -0,0 +1,705 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 17线 + /// + [SugarTable("eqmt_collect_data17")] + public class Eqmt17 + { + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + public int eqmt_id { get; set; } + public string collect_id { get; set; } + public string d10 { get; set; } + public int d0 { get; set; } + public int r622 { get; set; } + public int r602 { get; set; } + public int r600 { get; set; } + public int r604 { get; set; } + public decimal r612 { get; set; } + public int r651 { get; set; } + public int r652 { get; set; } + public int r661 { get; set; } + public int r662 { get; set; } + public int r702 { get; set; } + public int r700 { get; set; } + public decimal r682 { get; set; } + public int r689 { get; set; } + public int m610 { get; set; } + public int m6490 { get; set; } + public byte m6001 { get; set; } + public byte m6002 { get; set; } + public byte m6003 { get; set; } + public byte m6004 { get; set; } + public byte m6005 { get; set; } + public byte m6006 { get; set; } + public byte m6007 { get; set; } + public byte m6008 { get; set; } + public byte m6009 { get; set; } + public byte m6010 { get; set; } + public byte m6011 { get; set; } + public byte m6012 { get; set; } + public byte m6013 { get; set; } + public byte m6014 { get; set; } + public byte m6015 { get; set; } + public byte m6016 { get; set; } + public byte m6017 { get; set; } + public byte m6018 { get; set; } + public byte m6019 { get; set; } + public byte m6020 { get; set; } + public byte m6021 { get; set; } + public byte m6022 { get; set; } + public byte m6023 { get; set; } + public byte m6024 { get; set; } + public byte m6025 { get; set; } + public byte m6026 { get; set; } + public byte m6027 { get; set; } + public byte m6028 { get; set; } + public byte m6029 { get; set; } + public byte m6030 { get; set; } + public byte m6031 { get; set; } + public byte m6032 { get; set; } + public byte m6033 { get; set; } + public byte m6034 { get; set; } + public byte m6035 { get; set; } + public byte m6036 { get; set; } + public byte m6037 { get; set; } + public byte m6038 { get; set; } + public byte m6039 { get; set; } + public byte m6040 { get; set; } + public byte m6041 { get; set; } + public byte m6042 { get; set; } + public byte m6043 { get; set; } + public byte m6044 { get; set; } + public byte m6045 { get; set; } + public byte m6046 { get; set; } + public byte m6047 { get; set; } + public byte m6048 { get; set; } + public byte m6049 { get; set; } + public byte m6050 { get; set; } + public byte m6051 { get; set; } + public byte m6052 { get; set; } + public byte m6053 { get; set; } + public byte m6054 { get; set; } + public byte m6055 { get; set; } + public byte m6056 { get; set; } + public byte m6057 { get; set; } + public byte m6058 { get; set; } + public byte m6059 { get; set; } + public byte m6060 { get; set; } + public byte m6061 { get; set; } + public byte m6062 { get; set; } + public byte m6063 { get; set; } + public byte m6064 { get; set; } + public byte m6065 { get; set; } + public byte m6066 { get; set; } + public byte m6067 { get; set; } + public byte m6068 { get; set; } + public byte m6069 { get; set; } + public byte m6070 { get; set; } + public byte m6071 { get; set; } + public byte m6072 { get; set; } + public byte m6073 { get; set; } + public byte m6074 { get; set; } + public byte m6075 { get; set; } + public byte m6076 { get; set; } + public byte m6077 { get; set; } + public byte m6078 { get; set; } + public byte m6079 { get; set; } + public byte m6080 { get; set; } + public byte m6081 { get; set; } + public byte m6082 { get; set; } + public byte m6083 { get; set; } + public byte m6084 { get; set; } + public byte m6085 { get; set; } + public byte m6086 { get; set; } + public byte m6087 { get; set; } + public byte m6088 { get; set; } + public byte m6089 { get; set; } + public byte m6090 { get; set; } + public byte m6091 { get; set; } + public byte m6092 { get; set; } + public byte m6093 { get; set; } + public byte m6094 { get; set; } + public byte m6095 { get; set; } + public byte m6096 { get; set; } + public byte m6097 { get; set; } + public byte m6098 { get; set; } + public byte m6099 { get; set; } + public byte m6100 { get; set; } + public byte m6101 { get; set; } + public byte m6102 { get; set; } + public byte m6103 { get; set; } + public byte m6104 { get; set; } + public byte m6105 { get; set; } + public byte m6106 { get; set; } + public byte m6107 { get; set; } + public byte m6108 { get; set; } + public byte m6109 { get; set; } + public byte m6110 { get; set; } + public byte m6111 { get; set; } + public byte m6112 { get; set; } + public byte m6113 { get; set; } + public byte m6114 { get; set; } + public byte m6115 { get; set; } + public byte m6116 { get; set; } + public byte m6117 { get; set; } + public byte m6118 { get; set; } + public byte m6119 { get; set; } + public byte m6120 { get; set; } + public byte m6121 { get; set; } + public byte m6122 { get; set; } + public byte m6123 { get; set; } + public byte m6124 { get; set; } + public byte m6125 { get; set; } + public byte m6126 { get; set; } + public byte m6127 { get; set; } + public byte m6128 { get; set; } + public byte m6129 { get; set; } + public byte m6130 { get; set; } + public byte m6131 { get; set; } + public byte m6132 { get; set; } + public byte m6133 { get; set; } + public byte m6134 { get; set; } + public byte m6135 { get; set; } + public byte m6136 { get; set; } + public byte m6137 { get; set; } + public byte m6138 { get; set; } + public byte m6139 { get; set; } + public byte m6140 { get; set; } + public byte m6141 { get; set; } + public byte m6142 { get; set; } + public byte m6143 { get; set; } + public byte m6144 { get; set; } + public byte m6145 { get; set; } + public byte m6146 { get; set; } + public byte m6147 { get; set; } + public byte m6148 { get; set; } + public byte m6149 { get; set; } + public byte m6150 { get; set; } + public byte m6151 { get; set; } + public byte m6152 { get; set; } + public byte m6153 { get; set; } + public byte m6154 { get; set; } + public byte m6155 { get; set; } + public byte m6156 { get; set; } + public byte m6157 { get; set; } + public byte m6158 { get; set; } + public byte m6159 { get; set; } + public byte m6160 { get; set; } + public byte m6161 { get; set; } + public byte m6162 { get; set; } + public byte m6163 { get; set; } + public byte m6164 { get; set; } + public byte m6165 { get; set; } + public byte m6166 { get; set; } + public byte m6167 { get; set; } + public byte m6168 { get; set; } + public byte m6169 { get; set; } + public byte m6170 { get; set; } + public byte m6171 { get; set; } + public byte m6172 { get; set; } + public byte m6173 { get; set; } + public byte m6174 { get; set; } + public byte m6175 { get; set; } + public byte m6176 { get; set; } + public byte m6177 { get; set; } + public byte m6178 { get; set; } + public byte m6179 { get; set; } + public byte m6180 { get; set; } + public byte m6181 { get; set; } + public byte m6182 { get; set; } + public byte m6183 { get; set; } + public byte m6184 { get; set; } + public byte m6185 { get; set; } + public byte m6186 { get; set; } + public byte m6187 { get; set; } + public byte m6188 { get; set; } + public byte m6189 { get; set; } + public byte m6190 { get; set; } + public byte m6191 { get; set; } + public byte m6192 { get; set; } + public byte m6193 { get; set; } + public byte m6194 { get; set; } + public byte m6195 { get; set; } + public byte m6196 { get; set; } + public byte m6197 { get; set; } + public byte m6198 { get; set; } + public byte m6199 { get; set; } + public byte m6200 { get; set; } + public byte m6201 { get; set; } + public byte m6202 { get; set; } + public byte m6203 { get; set; } + public byte m6204 { get; set; } + public byte m6205 { get; set; } + public byte m6206 { get; set; } + public byte m6207 { get; set; } + public byte m6208 { get; set; } + public byte m6209 { get; set; } + public byte m6210 { get; set; } + public byte m6211 { get; set; } + public byte m6212 { get; set; } + public byte m6213 { get; set; } + public byte m6214 { get; set; } + public byte m6215 { get; set; } + public byte m6216 { get; set; } + public byte m6217 { get; set; } + public byte m6218 { get; set; } + public byte m6219 { get; set; } + public byte m6220 { get; set; } + public byte m6221 { get; set; } + public byte m6222 { get; set; } + public byte m6223 { get; set; } + public byte m6224 { get; set; } + public byte m6225 { get; set; } + public byte m6226 { get; set; } + public byte m6227 { get; set; } + public byte m6228 { get; set; } + public byte m6229 { get; set; } + public byte m6230 { get; set; } + public byte m6231 { get; set; } + public byte m6232 { get; set; } + public byte m6233 { get; set; } + public byte m6234 { get; set; } + public byte m6235 { get; set; } + public byte m6236 { get; set; } + public byte m6237 { get; set; } + public byte m6238 { get; set; } + public byte m6239 { get; set; } + public byte m6240 { get; set; } + public byte m6241 { get; set; } + public byte m6242 { get; set; } + public byte m6243 { get; set; } + public byte m6244 { get; set; } + public byte m6245 { get; set; } + public byte m6246 { get; set; } + public byte m6247 { get; set; } + public byte m6248 { get; set; } + public byte m6249 { get; set; } + public byte m6250 { get; set; } + public byte m6251 { get; set; } + public byte m6252 { get; set; } + public byte m6253 { get; set; } + public byte m6254 { get; set; } + public byte m6255 { get; set; } + public byte m6256 { get; set; } + public byte m6257 { get; set; } + public byte m6258 { get; set; } + public byte m6259 { get; set; } + public byte m6260 { get; set; } + public byte m6261 { get; set; } + public byte m6262 { get; set; } + public byte m6263 { get; set; } + public byte m6264 { get; set; } + public byte m6265 { get; set; } + public byte m6266 { get; set; } + public byte m6267 { get; set; } + public byte m6268 { get; set; } + public byte m6269 { get; set; } + public byte m6270 { get; set; } + public byte m6271 { get; set; } + public byte m6272 { get; set; } + public byte m6273 { get; set; } + public byte m6274 { get; set; } + public byte m6275 { get; set; } + public byte m6276 { get; set; } + public byte m6277 { get; set; } + public byte m6278 { get; set; } + public byte m6279 { get; set; } + public byte m6280 { get; set; } + public byte m6281 { get; set; } + public byte m6282 { get; set; } + public byte m6283 { get; set; } + public byte m6284 { get; set; } + public byte m6285 { get; set; } + public byte m6286 { get; set; } + public byte m6287 { get; set; } + public byte m6288 { get; set; } + public byte m6289 { get; set; } + public byte m6290 { get; set; } + public byte m6291 { get; set; } + public byte m6292 { get; set; } + public byte m6293 { get; set; } + public byte m6294 { get; set; } + public byte m6295 { get; set; } + public byte m6296 { get; set; } + public byte m6297 { get; set; } + public byte m6298 { get; set; } + public byte m6299 { get; set; } + public byte m6300 { get; set; } + public byte m6301 { get; set; } + public byte m6302 { get; set; } + public byte m6303 { get; set; } + public byte m6304 { get; set; } + public byte m6305 { get; set; } + public byte m6306 { get; set; } + public byte m6307 { get; set; } + public byte m6308 { get; set; } + public byte m6309 { get; set; } + public byte m6310 { get; set; } + public byte m6311 { get; set; } + public byte m6312 { get; set; } + public byte m6313 { get; set; } + public byte m6314 { get; set; } + public byte m6315 { get; set; } + public byte m6316 { get; set; } + public byte m6317 { get; set; } + public byte m6318 { get; set; } + public byte m6319 { get; set; } + public byte m6320 { get; set; } + public byte m6321 { get; set; } + public byte m6322 { get; set; } + public byte m6323 { get; set; } + public byte m6324 { get; set; } + public byte m6325 { get; set; } + public byte m6326 { get; set; } + public byte m6327 { get; set; } + public byte m6328 { get; set; } + public byte m6329 { get; set; } + public byte m6330 { get; set; } + public byte m6331 { get; set; } + public byte m6332 { get; set; } + public byte m6333 { get; set; } + public byte m6334 { get; set; } + public byte m6335 { get; set; } + public byte m6336 { get; set; } + public byte m6501 { get; set; } + public byte m6502 { get; set; } + public byte m6503 { get; set; } + public byte m6504 { get; set; } + public byte m6505 { get; set; } + public byte m6506 { get; set; } + public byte m6507 { get; set; } + public byte m6508 { get; set; } + public byte m6509 { get; set; } + public byte m6510 { get; set; } + public byte m6511 { get; set; } + public byte m6512 { get; set; } + public byte m6513 { get; set; } + public byte m6514 { get; set; } + public byte m6515 { get; set; } + public byte m6516 { get; set; } + public byte m6517 { get; set; } + public byte m6518 { get; set; } + public byte m6519 { get; set; } + public byte m6520 { get; set; } + public byte m6521 { get; set; } + public byte m6522 { get; set; } + public byte m6523 { get; set; } + public byte m6524 { get; set; } + public byte m6525 { get; set; } + public byte m6526 { get; set; } + public byte m6527 { get; set; } + public byte m6528 { get; set; } + public byte m6529 { get; set; } + public byte m6530 { get; set; } + public byte m6531 { get; set; } + public byte m6532 { get; set; } + public byte m6533 { get; set; } + public byte m6534 { get; set; } + public byte m6535 { get; set; } + public byte m6536 { get; set; } + public byte m6537 { get; set; } + public byte m6538 { get; set; } + public byte m6539 { get; set; } + public byte m6540 { get; set; } + public byte m6541 { get; set; } + public byte m6542 { get; set; } + public byte m6543 { get; set; } + public byte m6544 { get; set; } + public byte m6545 { get; set; } + public byte m6546 { get; set; } + public byte m6547 { get; set; } + public byte m6548 { get; set; } + public byte m6549 { get; set; } + public byte m6550 { get; set; } + public byte m6551 { get; set; } + public byte m6552 { get; set; } + public byte m6553 { get; set; } + public byte m6554 { get; set; } + public byte m6555 { get; set; } + public byte m6556 { get; set; } + public byte m6557 { get; set; } + public byte m6558 { get; set; } + public byte m6559 { get; set; } + public byte m6560 { get; set; } + public byte m6561 { get; set; } + public byte m6562 { get; set; } + public byte m6563 { get; set; } + public byte m6564 { get; set; } + public byte m6565 { get; set; } + public byte m6566 { get; set; } + public byte m6567 { get; set; } + public byte m6568 { get; set; } + public byte m6569 { get; set; } + public byte m6570 { get; set; } + public byte m6571 { get; set; } + public byte m6572 { get; set; } + public byte m6573 { get; set; } + public byte m6574 { get; set; } + public byte m6575 { get; set; } + public byte m6576 { get; set; } + public byte m6577 { get; set; } + public byte m6578 { get; set; } + public byte m6579 { get; set; } + public byte m6580 { get; set; } + public byte m6581 { get; set; } + public byte m6582 { get; set; } + public byte m6583 { get; set; } + public byte m6584 { get; set; } + public byte m6585 { get; set; } + public byte m6586 { get; set; } + public byte m6587 { get; set; } + public byte m6588 { get; set; } + public byte m6589 { get; set; } + public byte m6590 { get; set; } + public byte m6591 { get; set; } + public byte m6592 { get; set; } + public byte m6593 { get; set; } + public byte m6594 { get; set; } + public byte m6595 { get; set; } + public byte m6596 { get; set; } + public byte m6597 { get; set; } + public byte m6598 { get; set; } + public byte m6599 { get; set; } + public byte m6600 { get; set; } + public byte m6601 { get; set; } + public byte m6602 { get; set; } + public byte m6603 { get; set; } + public byte m6604 { get; set; } + public byte m6605 { get; set; } + public byte m6606 { get; set; } + public byte m6607 { get; set; } + public byte m6608 { get; set; } + public byte m6609 { get; set; } + public byte m6610 { get; set; } + public byte m6611 { get; set; } + public byte m6612 { get; set; } + public byte m6613 { get; set; } + public byte m6614 { get; set; } + public byte m6615 { get; set; } + public byte m6616 { get; set; } + public byte m6617 { get; set; } + public byte m6618 { get; set; } + public byte m6619 { get; set; } + public byte m6620 { get; set; } + public byte m6621 { get; set; } + public byte m6622 { get; set; } + public byte m6623 { get; set; } + public byte m6624 { get; set; } + public byte m6625 { get; set; } + public byte m6626 { get; set; } + public byte m6627 { get; set; } + public byte m6628 { get; set; } + public byte m6629 { get; set; } + public byte m6630 { get; set; } + public byte m6631 { get; set; } + public byte m6632 { get; set; } + public byte m6633 { get; set; } + public byte m6634 { get; set; } + public byte m6635 { get; set; } + public byte m6636 { get; set; } + public byte m6637 { get; set; } + public byte m6638 { get; set; } + public byte m6639 { get; set; } + public byte m6640 { get; set; } + public byte m6641 { get; set; } + public byte m6642 { get; set; } + public byte m6643 { get; set; } + public byte m6644 { get; set; } + public byte m6645 { get; set; } + public byte m6646 { get; set; } + public byte m6647 { get; set; } + public byte m6648 { get; set; } + public byte m6649 { get; set; } + public byte m6650 { get; set; } + public byte m6651 { get; set; } + public byte m6652 { get; set; } + public byte m6653 { get; set; } + public byte m6654 { get; set; } + public byte m6655 { get; set; } + public byte m6656 { get; set; } + public byte m6657 { get; set; } + public byte m6658 { get; set; } + public byte m6659 { get; set; } + public byte m6660 { get; set; } + public byte m6661 { get; set; } + public byte m6662 { get; set; } + public byte m6663 { get; set; } + public byte m6664 { get; set; } + public byte m6665 { get; set; } + public byte m6666 { get; set; } + public byte m6667 { get; set; } + public byte m6668 { get; set; } + public byte m6669 { get; set; } + public byte m6670 { get; set; } + public byte m6671 { get; set; } + public byte m6672 { get; set; } + public byte m6673 { get; set; } + public byte m6674 { get; set; } + public byte m6675 { get; set; } + public byte m6676 { get; set; } + public byte m6677 { get; set; } + public byte m6678 { get; set; } + public byte m6679 { get; set; } + public byte m6680 { get; set; } + public byte m6681 { get; set; } + public byte m6682 { get; set; } + public byte m6683 { get; set; } + public byte m6684 { get; set; } + public byte m6685 { get; set; } + public byte m6686 { get; set; } + public byte m6687 { get; set; } + public byte m6688 { get; set; } + public byte m6689 { get; set; } + public byte m6690 { get; set; } + public byte m6691 { get; set; } + public byte m6692 { get; set; } + public byte m6693 { get; set; } + public byte m6694 { get; set; } + public byte m6695 { get; set; } + public byte m6696 { get; set; } + public byte m6697 { get; set; } + public byte m6698 { get; set; } + public byte m6699 { get; set; } + public byte m6700 { get; set; } + public byte m6701 { get; set; } + public byte m6702 { get; set; } + public byte m6703 { get; set; } + public byte m6704 { get; set; } + public byte m6705 { get; set; } + public byte m6706 { get; set; } + public byte m6707 { get; set; } + public byte m6708 { get; set; } + public byte m6709 { get; set; } + public byte m6710 { get; set; } + public byte m6711 { get; set; } + public byte m6712 { get; set; } + public byte m6713 { get; set; } + public byte m6714 { get; set; } + public byte m6715 { get; set; } + public byte m6716 { get; set; } + public byte m6717 { get; set; } + public byte m6718 { get; set; } + public byte m6719 { get; set; } + public byte m6720 { get; set; } + public byte m6721 { get; set; } + public byte m6722 { get; set; } + public byte m6723 { get; set; } + public byte m6724 { get; set; } + public byte m6725 { get; set; } + public byte m6726 { get; set; } + public byte m6727 { get; set; } + public byte m6728 { get; set; } + public byte m6729 { get; set; } + public byte m6730 { get; set; } + public byte m6731 { get; set; } + public byte m6732 { get; set; } + public byte m6733 { get; set; } + public byte m6734 { get; set; } + public byte m6735 { get; set; } + public byte m6736 { get; set; } + public byte m6737 { get; set; } + public byte m6738 { get; set; } + public byte m6739 { get; set; } + public byte m6740 { get; set; } + public byte m6741 { get; set; } + public byte m6742 { get; set; } + public byte m6743 { get; set; } + public byte m6744 { get; set; } + public byte m6745 { get; set; } + public byte m6746 { get; set; } + public byte m6747 { get; set; } + public byte m6748 { get; set; } + public byte m6749 { get; set; } + public byte m6750 { get; set; } + public byte m6751 { get; set; } + public byte m6752 { get; set; } + public byte m6753 { get; set; } + public byte m6754 { get; set; } + public byte m6755 { get; set; } + public byte m6756 { get; set; } + public int r801 { get; set; } + public int r802 { get; set; } + public int r803 { get; set; } + public int r804 { get; set; } + public int r805 { get; set; } + public int r806 { get; set; } + public int r807 { get; set; } + public int r808 { get; set; } + public int r809 { get; set; } + public int r810 { get; set; } + public int r811 { get; set; } + public int r812 { get; set; } + public int r813 { get; set; } + public int r814 { get; set; } + public int r815 { get; set; } + public int r816 { get; set; } + public int r817 { get; set; } + public int r818 { get; set; } + public int r819 { get; set; } + public int r820 { get; set; } + public int r821 { get; set; } + public int r822 { get; set; } + public int r823 { get; set; } + public int r824 { get; set; } + public int r825 { get; set; } + public int r826 { get; set; } + public int r827 { get; set; } + public int r828 { get; set; } + public int r829 { get; set; } + public int r830 { get; set; } + public int r831 { get; set; } + public int r832 { get; set; } + public int r833 { get; set; } + public int r834 { get; set; } + public int r835 { get; set; } + public int r836 { get; set; } + public int r837 { get; set; } + public int r838 { get; set; } + public int r839 { get; set; } + public int r840 { get; set; } + public int r841 { get; set; } + public int r842 { get; set; } + public int r843 { get; set; } + public int r844 { get; set; } + public int r845 { get; set; } + public int r846 { get; set; } + public int r847 { get; set; } + public int r848 { get; set; } + public int r849 { get; set; } + public int r850 { get; set; } + public int r851 { get; set; } + public int r852 { get; set; } + public int r853 { get; set; } + public int r854 { get; set; } + public int r855 { get; set; } + public int r856 { get; set; } + public int r857 { get; set; } + public int r858 { get; set; } + public int r859 { get; set; } + public int r860 { get; set; } + public int r861 { get; set; } + public int r862 { get; set; } + public int r863 { get; set; } + public int r864 { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/Eqmt18.cs b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt18.cs new file mode 100644 index 0000000..1c4a7d9 --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt18.cs @@ -0,0 +1,705 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 18线 + /// + [SugarTable("eqmt_collect_data18")] + public class Eqmt18 + { + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + public int eqmt_id { get; set; } + public string collect_id { get; set; } + public string d10 { get; set; } + public int d0 { get; set; } + public int r622 { get; set; } + public int r602 { get; set; } + public int r600 { get; set; } + public int r604 { get; set; } + public decimal r612 { get; set; } + public int r651 { get; set; } + public int r652 { get; set; } + public int r661 { get; set; } + public int r662 { get; set; } + public int r702 { get; set; } + public int r700 { get; set; } + public decimal r682 { get; set; } + public int r689 { get; set; } + public byte m610 { get; set; } + public byte m6490 { get; set; } + public byte m6001 { get; set; } + public byte m6002 { get; set; } + public byte m6003 { get; set; } + public byte m6004 { get; set; } + public byte m6005 { get; set; } + public byte m6006 { get; set; } + public byte m6007 { get; set; } + public byte m6008 { get; set; } + public byte m6009 { get; set; } + public byte m6010 { get; set; } + public byte m6011 { get; set; } + public byte m6012 { get; set; } + public byte m6013 { get; set; } + public byte m6014 { get; set; } + public byte m6015 { get; set; } + public byte m6016 { get; set; } + public byte m6017 { get; set; } + public byte m6018 { get; set; } + public byte m6019 { get; set; } + public byte m6020 { get; set; } + public byte m6021 { get; set; } + public byte m6022 { get; set; } + public byte m6023 { get; set; } + public byte m6024 { get; set; } + public byte m6025 { get; set; } + public byte m6026 { get; set; } + public byte m6027 { get; set; } + public byte m6028 { get; set; } + public byte m6029 { get; set; } + public byte m6030 { get; set; } + public byte m6031 { get; set; } + public byte m6032 { get; set; } + public byte m6033 { get; set; } + public byte m6034 { get; set; } + public byte m6035 { get; set; } + public byte m6036 { get; set; } + public byte m6037 { get; set; } + public byte m6038 { get; set; } + public byte m6039 { get; set; } + public byte m6040 { get; set; } + public byte m6041 { get; set; } + public byte m6042 { get; set; } + public byte m6043 { get; set; } + public byte m6044 { get; set; } + public byte m6045 { get; set; } + public byte m6046 { get; set; } + public byte m6047 { get; set; } + public byte m6048 { get; set; } + public byte m6049 { get; set; } + public byte m6050 { get; set; } + public byte m6051 { get; set; } + public byte m6052 { get; set; } + public byte m6053 { get; set; } + public byte m6054 { get; set; } + public byte m6055 { get; set; } + public byte m6056 { get; set; } + public byte m6057 { get; set; } + public byte m6058 { get; set; } + public byte m6059 { get; set; } + public byte m6060 { get; set; } + public byte m6061 { get; set; } + public byte m6062 { get; set; } + public byte m6063 { get; set; } + public byte m6064 { get; set; } + public byte m6065 { get; set; } + public byte m6066 { get; set; } + public byte m6067 { get; set; } + public byte m6068 { get; set; } + public byte m6069 { get; set; } + public byte m6070 { get; set; } + public byte m6071 { get; set; } + public byte m6072 { get; set; } + public byte m6073 { get; set; } + public byte m6074 { get; set; } + public byte m6075 { get; set; } + public byte m6076 { get; set; } + public byte m6077 { get; set; } + public byte m6078 { get; set; } + public byte m6079 { get; set; } + public byte m6080 { get; set; } + public byte m6081 { get; set; } + public byte m6082 { get; set; } + public byte m6083 { get; set; } + public byte m6084 { get; set; } + public byte m6085 { get; set; } + public byte m6086 { get; set; } + public byte m6087 { get; set; } + public byte m6088 { get; set; } + public byte m6089 { get; set; } + public byte m6090 { get; set; } + public byte m6091 { get; set; } + public byte m6092 { get; set; } + public byte m6093 { get; set; } + public byte m6094 { get; set; } + public byte m6095 { get; set; } + public byte m6096 { get; set; } + public byte m6097 { get; set; } + public byte m6098 { get; set; } + public byte m6099 { get; set; } + public byte m6100 { get; set; } + public byte m6101 { get; set; } + public byte m6102 { get; set; } + public byte m6103 { get; set; } + public byte m6104 { get; set; } + public byte m6105 { get; set; } + public byte m6106 { get; set; } + public byte m6107 { get; set; } + public byte m6108 { get; set; } + public byte m6109 { get; set; } + public byte m6110 { get; set; } + public byte m6111 { get; set; } + public byte m6112 { get; set; } + public byte m6113 { get; set; } + public byte m6114 { get; set; } + public byte m6115 { get; set; } + public byte m6116 { get; set; } + public byte m6117 { get; set; } + public byte m6118 { get; set; } + public byte m6119 { get; set; } + public byte m6120 { get; set; } + public byte m6121 { get; set; } + public byte m6122 { get; set; } + public byte m6123 { get; set; } + public byte m6124 { get; set; } + public byte m6125 { get; set; } + public byte m6126 { get; set; } + public byte m6127 { get; set; } + public byte m6128 { get; set; } + public byte m6129 { get; set; } + public byte m6130 { get; set; } + public byte m6131 { get; set; } + public byte m6132 { get; set; } + public byte m6133 { get; set; } + public byte m6134 { get; set; } + public byte m6135 { get; set; } + public byte m6136 { get; set; } + public byte m6137 { get; set; } + public byte m6138 { get; set; } + public byte m6139 { get; set; } + public byte m6140 { get; set; } + public byte m6141 { get; set; } + public byte m6142 { get; set; } + public byte m6143 { get; set; } + public byte m6144 { get; set; } + public byte m6145 { get; set; } + public byte m6146 { get; set; } + public byte m6147 { get; set; } + public byte m6148 { get; set; } + public byte m6149 { get; set; } + public byte m6150 { get; set; } + public byte m6151 { get; set; } + public byte m6152 { get; set; } + public byte m6153 { get; set; } + public byte m6154 { get; set; } + public byte m6155 { get; set; } + public byte m6156 { get; set; } + public byte m6157 { get; set; } + public byte m6158 { get; set; } + public byte m6159 { get; set; } + public byte m6160 { get; set; } + public byte m6161 { get; set; } + public byte m6162 { get; set; } + public byte m6163 { get; set; } + public byte m6164 { get; set; } + public byte m6165 { get; set; } + public byte m6166 { get; set; } + public byte m6167 { get; set; } + public byte m6168 { get; set; } + public byte m6169 { get; set; } + public byte m6170 { get; set; } + public byte m6171 { get; set; } + public byte m6172 { get; set; } + public byte m6173 { get; set; } + public byte m6174 { get; set; } + public byte m6175 { get; set; } + public byte m6176 { get; set; } + public byte m6177 { get; set; } + public byte m6178 { get; set; } + public byte m6179 { get; set; } + public byte m6180 { get; set; } + public byte m6181 { get; set; } + public byte m6182 { get; set; } + public byte m6183 { get; set; } + public byte m6184 { get; set; } + public byte m6185 { get; set; } + public byte m6186 { get; set; } + public byte m6187 { get; set; } + public byte m6188 { get; set; } + public byte m6189 { get; set; } + public byte m6190 { get; set; } + public byte m6191 { get; set; } + public byte m6192 { get; set; } + public byte m6193 { get; set; } + public byte m6194 { get; set; } + public byte m6195 { get; set; } + public byte m6196 { get; set; } + public byte m6197 { get; set; } + public byte m6198 { get; set; } + public byte m6199 { get; set; } + public byte m6200 { get; set; } + public byte m6201 { get; set; } + public byte m6202 { get; set; } + public byte m6203 { get; set; } + public byte m6204 { get; set; } + public byte m6205 { get; set; } + public byte m6206 { get; set; } + public byte m6207 { get; set; } + public byte m6208 { get; set; } + public byte m6209 { get; set; } + public byte m6210 { get; set; } + public byte m6211 { get; set; } + public byte m6212 { get; set; } + public byte m6213 { get; set; } + public byte m6214 { get; set; } + public byte m6215 { get; set; } + public byte m6216 { get; set; } + public byte m6217 { get; set; } + public byte m6218 { get; set; } + public byte m6219 { get; set; } + public byte m6220 { get; set; } + public byte m6221 { get; set; } + public byte m6222 { get; set; } + public byte m6223 { get; set; } + public byte m6224 { get; set; } + public byte m6225 { get; set; } + public byte m6226 { get; set; } + public byte m6227 { get; set; } + public byte m6228 { get; set; } + public byte m6229 { get; set; } + public byte m6230 { get; set; } + public byte m6231 { get; set; } + public byte m6232 { get; set; } + public byte m6233 { get; set; } + public byte m6234 { get; set; } + public byte m6235 { get; set; } + public byte m6236 { get; set; } + public byte m6237 { get; set; } + public byte m6238 { get; set; } + public byte m6239 { get; set; } + public byte m6240 { get; set; } + public byte m6241 { get; set; } + public byte m6242 { get; set; } + public byte m6243 { get; set; } + public byte m6244 { get; set; } + public byte m6245 { get; set; } + public byte m6246 { get; set; } + public byte m6247 { get; set; } + public byte m6248 { get; set; } + public byte m6249 { get; set; } + public byte m6250 { get; set; } + public byte m6251 { get; set; } + public byte m6252 { get; set; } + public byte m6253 { get; set; } + public byte m6254 { get; set; } + public byte m6255 { get; set; } + public byte m6256 { get; set; } + public byte m6257 { get; set; } + public byte m6258 { get; set; } + public byte m6259 { get; set; } + public byte m6260 { get; set; } + public byte m6261 { get; set; } + public byte m6262 { get; set; } + public byte m6263 { get; set; } + public byte m6264 { get; set; } + public byte m6265 { get; set; } + public byte m6266 { get; set; } + public byte m6267 { get; set; } + public byte m6268 { get; set; } + public byte m6269 { get; set; } + public byte m6270 { get; set; } + public byte m6271 { get; set; } + public byte m6272 { get; set; } + public byte m6273 { get; set; } + public byte m6274 { get; set; } + public byte m6275 { get; set; } + public byte m6276 { get; set; } + public byte m6277 { get; set; } + public byte m6278 { get; set; } + public byte m6279 { get; set; } + public byte m6280 { get; set; } + public byte m6281 { get; set; } + public byte m6282 { get; set; } + public byte m6283 { get; set; } + public byte m6284 { get; set; } + public byte m6285 { get; set; } + public byte m6286 { get; set; } + public byte m6287 { get; set; } + public byte m6288 { get; set; } + public byte m6289 { get; set; } + public byte m6290 { get; set; } + public byte m6291 { get; set; } + public byte m6292 { get; set; } + public byte m6293 { get; set; } + public byte m6294 { get; set; } + public byte m6295 { get; set; } + public byte m6296 { get; set; } + public byte m6297 { get; set; } + public byte m6298 { get; set; } + public byte m6299 { get; set; } + public byte m6300 { get; set; } + public byte m6301 { get; set; } + public byte m6302 { get; set; } + public byte m6303 { get; set; } + public byte m6304 { get; set; } + public byte m6305 { get; set; } + public byte m6306 { get; set; } + public byte m6307 { get; set; } + public byte m6308 { get; set; } + public byte m6309 { get; set; } + public byte m6310 { get; set; } + public byte m6311 { get; set; } + public byte m6312 { get; set; } + public byte m6313 { get; set; } + public byte m6314 { get; set; } + public byte m6315 { get; set; } + public byte m6316 { get; set; } + public byte m6317 { get; set; } + public byte m6318 { get; set; } + public byte m6319 { get; set; } + public byte m6320 { get; set; } + public byte m6321 { get; set; } + public byte m6322 { get; set; } + public byte m6323 { get; set; } + public byte m6324 { get; set; } + public byte m6325 { get; set; } + public byte m6326 { get; set; } + public byte m6327 { get; set; } + public byte m6328 { get; set; } + public byte m6329 { get; set; } + public byte m6330 { get; set; } + public byte m6331 { get; set; } + public byte m6332 { get; set; } + public byte m6333 { get; set; } + public byte m6334 { get; set; } + public byte m6335 { get; set; } + public byte m6336 { get; set; } + public byte m6501 { get; set; } + public byte m6502 { get; set; } + public byte m6503 { get; set; } + public byte m6504 { get; set; } + public byte m6505 { get; set; } + public byte m6506 { get; set; } + public byte m6507 { get; set; } + public byte m6508 { get; set; } + public byte m6509 { get; set; } + public byte m6510 { get; set; } + public byte m6511 { get; set; } + public byte m6512 { get; set; } + public byte m6513 { get; set; } + public byte m6514 { get; set; } + public byte m6515 { get; set; } + public byte m6516 { get; set; } + public byte m6517 { get; set; } + public byte m6518 { get; set; } + public byte m6519 { get; set; } + public byte m6520 { get; set; } + public byte m6521 { get; set; } + public byte m6522 { get; set; } + public byte m6523 { get; set; } + public byte m6524 { get; set; } + public byte m6525 { get; set; } + public byte m6526 { get; set; } + public byte m6527 { get; set; } + public byte m6528 { get; set; } + public byte m6529 { get; set; } + public byte m6530 { get; set; } + public byte m6531 { get; set; } + public byte m6532 { get; set; } + public byte m6533 { get; set; } + public byte m6534 { get; set; } + public byte m6535 { get; set; } + public byte m6536 { get; set; } + public byte m6537 { get; set; } + public byte m6538 { get; set; } + public byte m6539 { get; set; } + public byte m6540 { get; set; } + public byte m6541 { get; set; } + public byte m6542 { get; set; } + public byte m6543 { get; set; } + public byte m6544 { get; set; } + public byte m6545 { get; set; } + public byte m6546 { get; set; } + public byte m6547 { get; set; } + public byte m6548 { get; set; } + public byte m6549 { get; set; } + public byte m6550 { get; set; } + public byte m6551 { get; set; } + public byte m6552 { get; set; } + public byte m6553 { get; set; } + public byte m6554 { get; set; } + public byte m6555 { get; set; } + public byte m6556 { get; set; } + public byte m6557 { get; set; } + public byte m6558 { get; set; } + public byte m6559 { get; set; } + public byte m6560 { get; set; } + public byte m6561 { get; set; } + public byte m6562 { get; set; } + public byte m6563 { get; set; } + public byte m6564 { get; set; } + public byte m6565 { get; set; } + public byte m6566 { get; set; } + public byte m6567 { get; set; } + public byte m6568 { get; set; } + public byte m6569 { get; set; } + public byte m6570 { get; set; } + public byte m6571 { get; set; } + public byte m6572 { get; set; } + public byte m6573 { get; set; } + public byte m6574 { get; set; } + public byte m6575 { get; set; } + public byte m6576 { get; set; } + public byte m6577 { get; set; } + public byte m6578 { get; set; } + public byte m6579 { get; set; } + public byte m6580 { get; set; } + public byte m6581 { get; set; } + public byte m6582 { get; set; } + public byte m6583 { get; set; } + public byte m6584 { get; set; } + public byte m6585 { get; set; } + public byte m6586 { get; set; } + public byte m6587 { get; set; } + public byte m6588 { get; set; } + public byte m6589 { get; set; } + public byte m6590 { get; set; } + public byte m6591 { get; set; } + public byte m6592 { get; set; } + public byte m6593 { get; set; } + public byte m6594 { get; set; } + public byte m6595 { get; set; } + public byte m6596 { get; set; } + public byte m6597 { get; set; } + public byte m6598 { get; set; } + public byte m6599 { get; set; } + public byte m6600 { get; set; } + public byte m6601 { get; set; } + public byte m6602 { get; set; } + public byte m6603 { get; set; } + public byte m6604 { get; set; } + public byte m6605 { get; set; } + public byte m6606 { get; set; } + public byte m6607 { get; set; } + public byte m6608 { get; set; } + public byte m6609 { get; set; } + public byte m6610 { get; set; } + public byte m6611 { get; set; } + public byte m6612 { get; set; } + public byte m6613 { get; set; } + public byte m6614 { get; set; } + public byte m6615 { get; set; } + public byte m6616 { get; set; } + public byte m6617 { get; set; } + public byte m6618 { get; set; } + public byte m6619 { get; set; } + public byte m6620 { get; set; } + public byte m6621 { get; set; } + public byte m6622 { get; set; } + public byte m6623 { get; set; } + public byte m6624 { get; set; } + public byte m6625 { get; set; } + public byte m6626 { get; set; } + public byte m6627 { get; set; } + public byte m6628 { get; set; } + public byte m6629 { get; set; } + public byte m6630 { get; set; } + public byte m6631 { get; set; } + public byte m6632 { get; set; } + public byte m6633 { get; set; } + public byte m6634 { get; set; } + public byte m6635 { get; set; } + public byte m6636 { get; set; } + public byte m6637 { get; set; } + public byte m6638 { get; set; } + public byte m6639 { get; set; } + public byte m6640 { get; set; } + public byte m6641 { get; set; } + public byte m6642 { get; set; } + public byte m6643 { get; set; } + public byte m6644 { get; set; } + public byte m6645 { get; set; } + public byte m6646 { get; set; } + public byte m6647 { get; set; } + public byte m6648 { get; set; } + public byte m6649 { get; set; } + public byte m6650 { get; set; } + public byte m6651 { get; set; } + public byte m6652 { get; set; } + public byte m6653 { get; set; } + public byte m6654 { get; set; } + public byte m6655 { get; set; } + public byte m6656 { get; set; } + public byte m6657 { get; set; } + public byte m6658 { get; set; } + public byte m6659 { get; set; } + public byte m6660 { get; set; } + public byte m6661 { get; set; } + public byte m6662 { get; set; } + public byte m6663 { get; set; } + public byte m6664 { get; set; } + public byte m6665 { get; set; } + public byte m6666 { get; set; } + public byte m6667 { get; set; } + public byte m6668 { get; set; } + public byte m6669 { get; set; } + public byte m6670 { get; set; } + public byte m6671 { get; set; } + public byte m6672 { get; set; } + public byte m6673 { get; set; } + public byte m6674 { get; set; } + public byte m6675 { get; set; } + public byte m6676 { get; set; } + public byte m6677 { get; set; } + public byte m6678 { get; set; } + public byte m6679 { get; set; } + public byte m6680 { get; set; } + public byte m6681 { get; set; } + public byte m6682 { get; set; } + public byte m6683 { get; set; } + public byte m6684 { get; set; } + public byte m6685 { get; set; } + public byte m6686 { get; set; } + public byte m6687 { get; set; } + public byte m6688 { get; set; } + public byte m6689 { get; set; } + public byte m6690 { get; set; } + public byte m6691 { get; set; } + public byte m6692 { get; set; } + public byte m6693 { get; set; } + public byte m6694 { get; set; } + public byte m6695 { get; set; } + public byte m6696 { get; set; } + public byte m6697 { get; set; } + public byte m6698 { get; set; } + public byte m6699 { get; set; } + public byte m6700 { get; set; } + public byte m6701 { get; set; } + public byte m6702 { get; set; } + public byte m6703 { get; set; } + public byte m6704 { get; set; } + public byte m6705 { get; set; } + public byte m6706 { get; set; } + public byte m6707 { get; set; } + public byte m6708 { get; set; } + public byte m6709 { get; set; } + public byte m6710 { get; set; } + public byte m6711 { get; set; } + public byte m6712 { get; set; } + public byte m6713 { get; set; } + public byte m6714 { get; set; } + public byte m6715 { get; set; } + public byte m6716 { get; set; } + public byte m6717 { get; set; } + public byte m6718 { get; set; } + public byte m6719 { get; set; } + public byte m6720 { get; set; } + public byte m6721 { get; set; } + public byte m6722 { get; set; } + public byte m6723 { get; set; } + public byte m6724 { get; set; } + public byte m6725 { get; set; } + public byte m6726 { get; set; } + public byte m6727 { get; set; } + public byte m6728 { get; set; } + public byte m6729 { get; set; } + public byte m6730 { get; set; } + public byte m6731 { get; set; } + public byte m6732 { get; set; } + public byte m6733 { get; set; } + public byte m6734 { get; set; } + public byte m6735 { get; set; } + public byte m6736 { get; set; } + public byte m6737 { get; set; } + public byte m6738 { get; set; } + public byte m6739 { get; set; } + public byte m6740 { get; set; } + public byte m6741 { get; set; } + public byte m6742 { get; set; } + public byte m6743 { get; set; } + public byte m6744 { get; set; } + public byte m6745 { get; set; } + public byte m6746 { get; set; } + public byte m6747 { get; set; } + public byte m6748 { get; set; } + public byte m6749 { get; set; } + public byte m6750 { get; set; } + public byte m6751 { get; set; } + public byte m6752 { get; set; } + public byte m6753 { get; set; } + public byte m6754 { get; set; } + public byte m6755 { get; set; } + public byte m6756 { get; set; } + public int r801 { get; set; } + public int r802 { get; set; } + public int r803 { get; set; } + public int r804 { get; set; } + public int r805 { get; set; } + public int r806 { get; set; } + public int r807 { get; set; } + public int r808 { get; set; } + public int r809 { get; set; } + public int r810 { get; set; } + public int r811 { get; set; } + public int r812 { get; set; } + public int r813 { get; set; } + public int r814 { get; set; } + public int r815 { get; set; } + public int r816 { get; set; } + public int r817 { get; set; } + public int r818 { get; set; } + public int r819 { get; set; } + public int r820 { get; set; } + public int r821 { get; set; } + public int r822 { get; set; } + public int r823 { get; set; } + public int r824 { get; set; } + public int r825 { get; set; } + public int r826 { get; set; } + public int r827 { get; set; } + public int r828 { get; set; } + public int r829 { get; set; } + public int r830 { get; set; } + public int r831 { get; set; } + public int r832 { get; set; } + public int r833 { get; set; } + public int r834 { get; set; } + public int r835 { get; set; } + public int r836 { get; set; } + public int r837 { get; set; } + public int r838 { get; set; } + public int r839 { get; set; } + public int r840 { get; set; } + public int r841 { get; set; } + public int r842 { get; set; } + public int r843 { get; set; } + public int r844 { get; set; } + public int r845 { get; set; } + public int r846 { get; set; } + public int r847 { get; set; } + public int r848 { get; set; } + public int r849 { get; set; } + public int r850 { get; set; } + public int r851 { get; set; } + public int r852 { get; set; } + public int r853 { get; set; } + public int r854 { get; set; } + public int r855 { get; set; } + public int r856 { get; set; } + public int r857 { get; set; } + public int r858 { get; set; } + public int r859 { get; set; } + public int r860 { get; set; } + public int r861 { get; set; } + public int r862 { get; set; } + public int r863 { get; set; } + public int r864 { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/Eqmt19.cs b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt19.cs new file mode 100644 index 0000000..85b7dae --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt19.cs @@ -0,0 +1,707 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 19线 + /// + [SugarTable("eqmt_collect_data19")] + public class Eqmt19 + { + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + public int eqmt_id { get; set; } + public string collect_id { get; set; } + public int d10 { get; set; } + public int d0 { get; set; } + public int d4000 { get; set; } + public int d4002 { get; set; } + public int d4004 { get; set; } + public int d4006 { get; set; } + public decimal d4008 { get; set; } + public int d4022 { get; set; } + public int d4030 { get; set; } + public int d4032 { get; set; } + public int d4042 { get; set; } + public int d4050 { get; set; } + public int d4052 { get; set; } + public int d4062 { get; set; } + public int d4070 { get; set; } + public int d4072 { get; set; } + public decimal d4080 { get; set; } + public byte m40 { get; set; } + public byte m6490 { get; set; } + public byte m6001 { get; set; } + public byte m6002 { get; set; } + public byte m6003 { get; set; } + public byte m6004 { get; set; } + public byte m6005 { get; set; } + public byte m6006 { get; set; } + public byte m6007 { get; set; } + public byte m6008 { get; set; } + public byte m6009 { get; set; } + public byte m6010 { get; set; } + public byte m6011 { get; set; } + public byte m6012 { get; set; } + public byte m6013 { get; set; } + public byte m6014 { get; set; } + public byte m6015 { get; set; } + public byte m6016 { get; set; } + public byte m6017 { get; set; } + public byte m6018 { get; set; } + public byte m6019 { get; set; } + public byte m6020 { get; set; } + public byte m6021 { get; set; } + public byte m6022 { get; set; } + public byte m6023 { get; set; } + public byte m6024 { get; set; } + public byte m6025 { get; set; } + public byte m6026 { get; set; } + public byte m6027 { get; set; } + public byte m6028 { get; set; } + public byte m6029 { get; set; } + public byte m6030 { get; set; } + public byte m6031 { get; set; } + public byte m6032 { get; set; } + public byte m6033 { get; set; } + public byte m6034 { get; set; } + public byte m6035 { get; set; } + public byte m6036 { get; set; } + public byte m6037 { get; set; } + public byte m6038 { get; set; } + public byte m6039 { get; set; } + public byte m6040 { get; set; } + public byte m6041 { get; set; } + public byte m6042 { get; set; } + public byte m6043 { get; set; } + public byte m6044 { get; set; } + public byte m6045 { get; set; } + public byte m6046 { get; set; } + public byte m6047 { get; set; } + public byte m6048 { get; set; } + public byte m6049 { get; set; } + public byte m6050 { get; set; } + public byte m6051 { get; set; } + public byte m6052 { get; set; } + public byte m6053 { get; set; } + public byte m6054 { get; set; } + public byte m6055 { get; set; } + public byte m6056 { get; set; } + public byte m6057 { get; set; } + public byte m6058 { get; set; } + public byte m6059 { get; set; } + public byte m6060 { get; set; } + public byte m6061 { get; set; } + public byte m6062 { get; set; } + public byte m6063 { get; set; } + public byte m6064 { get; set; } + public byte m6065 { get; set; } + public byte m6066 { get; set; } + public byte m6067 { get; set; } + public byte m6068 { get; set; } + public byte m6069 { get; set; } + public byte m6070 { get; set; } + public byte m6071 { get; set; } + public byte m6072 { get; set; } + public byte m6073 { get; set; } + public byte m6074 { get; set; } + public byte m6075 { get; set; } + public byte m6076 { get; set; } + public byte m6077 { get; set; } + public byte m6078 { get; set; } + public byte m6079 { get; set; } + public byte m6080 { get; set; } + public byte m6081 { get; set; } + public byte m6082 { get; set; } + public byte m6083 { get; set; } + public byte m6084 { get; set; } + public byte m6085 { get; set; } + public byte m6086 { get; set; } + public byte m6087 { get; set; } + public byte m6088 { get; set; } + public byte m6089 { get; set; } + public byte m6090 { get; set; } + public byte m6091 { get; set; } + public byte m6092 { get; set; } + public byte m6093 { get; set; } + public byte m6094 { get; set; } + public byte m6095 { get; set; } + public byte m6096 { get; set; } + public byte m6097 { get; set; } + public byte m6098 { get; set; } + public byte m6099 { get; set; } + public byte m6100 { get; set; } + public byte m6101 { get; set; } + public byte m6102 { get; set; } + public byte m6103 { get; set; } + public byte m6104 { get; set; } + public byte m6105 { get; set; } + public byte m6106 { get; set; } + public byte m6107 { get; set; } + public byte m6108 { get; set; } + public byte m6109 { get; set; } + public byte m6110 { get; set; } + public byte m6111 { get; set; } + public byte m6112 { get; set; } + public byte m6113 { get; set; } + public byte m6114 { get; set; } + public byte m6115 { get; set; } + public byte m6116 { get; set; } + public byte m6117 { get; set; } + public byte m6118 { get; set; } + public byte m6119 { get; set; } + public byte m6120 { get; set; } + public byte m6121 { get; set; } + public byte m6122 { get; set; } + public byte m6123 { get; set; } + public byte m6124 { get; set; } + public byte m6125 { get; set; } + public byte m6126 { get; set; } + public byte m6127 { get; set; } + public byte m6128 { get; set; } + public byte m6129 { get; set; } + public byte m6130 { get; set; } + public byte m6131 { get; set; } + public byte m6132 { get; set; } + public byte m6133 { get; set; } + public byte m6134 { get; set; } + public byte m6135 { get; set; } + public byte m6136 { get; set; } + public byte m6137 { get; set; } + public byte m6138 { get; set; } + public byte m6139 { get; set; } + public byte m6140 { get; set; } + public byte m6141 { get; set; } + public byte m6142 { get; set; } + public byte m6143 { get; set; } + public byte m6144 { get; set; } + public byte m6145 { get; set; } + public byte m6146 { get; set; } + public byte m6147 { get; set; } + public byte m6148 { get; set; } + public byte m6149 { get; set; } + public byte m6150 { get; set; } + public byte m6151 { get; set; } + public byte m6152 { get; set; } + public byte m6153 { get; set; } + public byte m6154 { get; set; } + public byte m6155 { get; set; } + public byte m6156 { get; set; } + public byte m6157 { get; set; } + public byte m6158 { get; set; } + public byte m6159 { get; set; } + public byte m6160 { get; set; } + public byte m6161 { get; set; } + public byte m6162 { get; set; } + public byte m6163 { get; set; } + public byte m6164 { get; set; } + public byte m6165 { get; set; } + public byte m6166 { get; set; } + public byte m6167 { get; set; } + public byte m6168 { get; set; } + public byte m6169 { get; set; } + public byte m6170 { get; set; } + public byte m6171 { get; set; } + public byte m6172 { get; set; } + public byte m6173 { get; set; } + public byte m6174 { get; set; } + public byte m6175 { get; set; } + public byte m6176 { get; set; } + public byte m6177 { get; set; } + public byte m6178 { get; set; } + public byte m6179 { get; set; } + public byte m6180 { get; set; } + public byte m6181 { get; set; } + public byte m6182 { get; set; } + public byte m6183 { get; set; } + public byte m6184 { get; set; } + public byte m6185 { get; set; } + public byte m6186 { get; set; } + public byte m6187 { get; set; } + public byte m6188 { get; set; } + public byte m6189 { get; set; } + public byte m6190 { get; set; } + public byte m6191 { get; set; } + public byte m6192 { get; set; } + public byte m6193 { get; set; } + public byte m6194 { get; set; } + public byte m6195 { get; set; } + public byte m6196 { get; set; } + public byte m6197 { get; set; } + public byte m6198 { get; set; } + public byte m6199 { get; set; } + public byte m6200 { get; set; } + public byte m6201 { get; set; } + public byte m6202 { get; set; } + public byte m6203 { get; set; } + public byte m6204 { get; set; } + public byte m6205 { get; set; } + public byte m6206 { get; set; } + public byte m6207 { get; set; } + public byte m6208 { get; set; } + public byte m6209 { get; set; } + public byte m6210 { get; set; } + public byte m6211 { get; set; } + public byte m6212 { get; set; } + public byte m6213 { get; set; } + public byte m6214 { get; set; } + public byte m6215 { get; set; } + public byte m6216 { get; set; } + public byte m6217 { get; set; } + public byte m6218 { get; set; } + public byte m6219 { get; set; } + public byte m6220 { get; set; } + public byte m6221 { get; set; } + public byte m6222 { get; set; } + public byte m6223 { get; set; } + public byte m6224 { get; set; } + public byte m6225 { get; set; } + public byte m6226 { get; set; } + public byte m6227 { get; set; } + public byte m6228 { get; set; } + public byte m6229 { get; set; } + public byte m6230 { get; set; } + public byte m6231 { get; set; } + public byte m6232 { get; set; } + public byte m6233 { get; set; } + public byte m6234 { get; set; } + public byte m6235 { get; set; } + public byte m6236 { get; set; } + public byte m6237 { get; set; } + public byte m6238 { get; set; } + public byte m6239 { get; set; } + public byte m6240 { get; set; } + public byte m6241 { get; set; } + public byte m6242 { get; set; } + public byte m6243 { get; set; } + public byte m6244 { get; set; } + public byte m6245 { get; set; } + public byte m6246 { get; set; } + public byte m6247 { get; set; } + public byte m6248 { get; set; } + public byte m6249 { get; set; } + public byte m6250 { get; set; } + public byte m6251 { get; set; } + public byte m6252 { get; set; } + public byte m6253 { get; set; } + public byte m6254 { get; set; } + public byte m6255 { get; set; } + public byte m6256 { get; set; } + public byte m6257 { get; set; } + public byte m6258 { get; set; } + public byte m6259 { get; set; } + public byte m6260 { get; set; } + public byte m6261 { get; set; } + public byte m6262 { get; set; } + public byte m6263 { get; set; } + public byte m6264 { get; set; } + public byte m6265 { get; set; } + public byte m6266 { get; set; } + public byte m6267 { get; set; } + public byte m6268 { get; set; } + public byte m6269 { get; set; } + public byte m6270 { get; set; } + public byte m6271 { get; set; } + public byte m6272 { get; set; } + public byte m6273 { get; set; } + public byte m6274 { get; set; } + public byte m6275 { get; set; } + public byte m6276 { get; set; } + public byte m6277 { get; set; } + public byte m6278 { get; set; } + public byte m6279 { get; set; } + public byte m6280 { get; set; } + public byte m6281 { get; set; } + public byte m6282 { get; set; } + public byte m6283 { get; set; } + public byte m6284 { get; set; } + public byte m6285 { get; set; } + public byte m6286 { get; set; } + public byte m6287 { get; set; } + public byte m6288 { get; set; } + public byte m6289 { get; set; } + public byte m6290 { get; set; } + public byte m6291 { get; set; } + public byte m6292 { get; set; } + public byte m6293 { get; set; } + public byte m6294 { get; set; } + public byte m6295 { get; set; } + public byte m6296 { get; set; } + public byte m6297 { get; set; } + public byte m6298 { get; set; } + public byte m6299 { get; set; } + public byte m6300 { get; set; } + public byte m6301 { get; set; } + public byte m6302 { get; set; } + public byte m6303 { get; set; } + public byte m6304 { get; set; } + public byte m6305 { get; set; } + public byte m6306 { get; set; } + public byte m6307 { get; set; } + public byte m6308 { get; set; } + public byte m6309 { get; set; } + public byte m6310 { get; set; } + public byte m6311 { get; set; } + public byte m6312 { get; set; } + public byte m6313 { get; set; } + public byte m6314 { get; set; } + public byte m6315 { get; set; } + public byte m6316 { get; set; } + public byte m6317 { get; set; } + public byte m6318 { get; set; } + public byte m6319 { get; set; } + public byte m6320 { get; set; } + public byte m6321 { get; set; } + public byte m6322 { get; set; } + public byte m6323 { get; set; } + public byte m6324 { get; set; } + public byte m6325 { get; set; } + public byte m6326 { get; set; } + public byte m6327 { get; set; } + public byte m6328 { get; set; } + public byte m6329 { get; set; } + public byte m6330 { get; set; } + public byte m6331 { get; set; } + public byte m6332 { get; set; } + public byte m6333 { get; set; } + public byte m6334 { get; set; } + public byte m6335 { get; set; } + public byte m6336 { get; set; } + public byte m6501 { get; set; } + public byte m6502 { get; set; } + public byte m6503 { get; set; } + public byte m6504 { get; set; } + public byte m6505 { get; set; } + public byte m6506 { get; set; } + public byte m6507 { get; set; } + public byte m6508 { get; set; } + public byte m6509 { get; set; } + public byte m6510 { get; set; } + public byte m6511 { get; set; } + public byte m6512 { get; set; } + public byte m6513 { get; set; } + public byte m6514 { get; set; } + public byte m6515 { get; set; } + public byte m6516 { get; set; } + public byte m6517 { get; set; } + public byte m6518 { get; set; } + public byte m6519 { get; set; } + public byte m6520 { get; set; } + public byte m6521 { get; set; } + public byte m6522 { get; set; } + public byte m6523 { get; set; } + public byte m6524 { get; set; } + public byte m6525 { get; set; } + public byte m6526 { get; set; } + public byte m6527 { get; set; } + public byte m6528 { get; set; } + public byte m6529 { get; set; } + public byte m6530 { get; set; } + public byte m6531 { get; set; } + public byte m6532 { get; set; } + public byte m6533 { get; set; } + public byte m6534 { get; set; } + public byte m6535 { get; set; } + public byte m6536 { get; set; } + public byte m6537 { get; set; } + public byte m6538 { get; set; } + public byte m6539 { get; set; } + public byte m6540 { get; set; } + public byte m6541 { get; set; } + public byte m6542 { get; set; } + public byte m6543 { get; set; } + public byte m6544 { get; set; } + public byte m6545 { get; set; } + public byte m6546 { get; set; } + public byte m6547 { get; set; } + public byte m6548 { get; set; } + public byte m6549 { get; set; } + public byte m6550 { get; set; } + public byte m6551 { get; set; } + public byte m6552 { get; set; } + public byte m6553 { get; set; } + public byte m6554 { get; set; } + public byte m6555 { get; set; } + public byte m6556 { get; set; } + public byte m6557 { get; set; } + public byte m6558 { get; set; } + public byte m6559 { get; set; } + public byte m6560 { get; set; } + public byte m6561 { get; set; } + public byte m6562 { get; set; } + public byte m6563 { get; set; } + public byte m6564 { get; set; } + public byte m6565 { get; set; } + public byte m6566 { get; set; } + public byte m6567 { get; set; } + public byte m6568 { get; set; } + public byte m6569 { get; set; } + public byte m6570 { get; set; } + public byte m6571 { get; set; } + public byte m6572 { get; set; } + public byte m6573 { get; set; } + public byte m6574 { get; set; } + public byte m6575 { get; set; } + public byte m6576 { get; set; } + public byte m6577 { get; set; } + public byte m6578 { get; set; } + public byte m6579 { get; set; } + public byte m6580 { get; set; } + public byte m6581 { get; set; } + public byte m6582 { get; set; } + public byte m6583 { get; set; } + public byte m6584 { get; set; } + public byte m6585 { get; set; } + public byte m6586 { get; set; } + public byte m6587 { get; set; } + public byte m6588 { get; set; } + public byte m6589 { get; set; } + public byte m6590 { get; set; } + public byte m6591 { get; set; } + public byte m6592 { get; set; } + public byte m6593 { get; set; } + public byte m6594 { get; set; } + public byte m6595 { get; set; } + public byte m6596 { get; set; } + public byte m6597 { get; set; } + public byte m6598 { get; set; } + public byte m6599 { get; set; } + public byte m6600 { get; set; } + public byte m6601 { get; set; } + public byte m6602 { get; set; } + public byte m6603 { get; set; } + public byte m6604 { get; set; } + public byte m6605 { get; set; } + public byte m6606 { get; set; } + public byte m6607 { get; set; } + public byte m6608 { get; set; } + public byte m6609 { get; set; } + public byte m6610 { get; set; } + public byte m6611 { get; set; } + public byte m6612 { get; set; } + public byte m6613 { get; set; } + public byte m6614 { get; set; } + public byte m6615 { get; set; } + public byte m6616 { get; set; } + public byte m6617 { get; set; } + public byte m6618 { get; set; } + public byte m6619 { get; set; } + public byte m6620 { get; set; } + public byte m6621 { get; set; } + public byte m6622 { get; set; } + public byte m6623 { get; set; } + public byte m6624 { get; set; } + public byte m6625 { get; set; } + public byte m6626 { get; set; } + public byte m6627 { get; set; } + public byte m6628 { get; set; } + public byte m6629 { get; set; } + public byte m6630 { get; set; } + public byte m6631 { get; set; } + public byte m6632 { get; set; } + public byte m6633 { get; set; } + public byte m6634 { get; set; } + public byte m6635 { get; set; } + public byte m6636 { get; set; } + public byte m6637 { get; set; } + public byte m6638 { get; set; } + public byte m6639 { get; set; } + public byte m6640 { get; set; } + public byte m6641 { get; set; } + public byte m6642 { get; set; } + public byte m6643 { get; set; } + public byte m6644 { get; set; } + public byte m6645 { get; set; } + public byte m6646 { get; set; } + public byte m6647 { get; set; } + public byte m6648 { get; set; } + public byte m6649 { get; set; } + public byte m6650 { get; set; } + public byte m6651 { get; set; } + public byte m6652 { get; set; } + public byte m6653 { get; set; } + public byte m6654 { get; set; } + public byte m6655 { get; set; } + public byte m6656 { get; set; } + public byte m6657 { get; set; } + public byte m6658 { get; set; } + public byte m6659 { get; set; } + public byte m6660 { get; set; } + public byte m6661 { get; set; } + public byte m6662 { get; set; } + public byte m6663 { get; set; } + public byte m6664 { get; set; } + public byte m6665 { get; set; } + public byte m6666 { get; set; } + public byte m6667 { get; set; } + public byte m6668 { get; set; } + public byte m6669 { get; set; } + public byte m6670 { get; set; } + public byte m6671 { get; set; } + public byte m6672 { get; set; } + public byte m6673 { get; set; } + public byte m6674 { get; set; } + public byte m6675 { get; set; } + public byte m6676 { get; set; } + public byte m6677 { get; set; } + public byte m6678 { get; set; } + public byte m6679 { get; set; } + public byte m6680 { get; set; } + public byte m6681 { get; set; } + public byte m6682 { get; set; } + public byte m6683 { get; set; } + public byte m6684 { get; set; } + public byte m6685 { get; set; } + public byte m6686 { get; set; } + public byte m6687 { get; set; } + public byte m6688 { get; set; } + public byte m6689 { get; set; } + public byte m6690 { get; set; } + public byte m6691 { get; set; } + public byte m6692 { get; set; } + public byte m6693 { get; set; } + public byte m6694 { get; set; } + public byte m6695 { get; set; } + public byte m6696 { get; set; } + public byte m6697 { get; set; } + public byte m6698 { get; set; } + public byte m6699 { get; set; } + public byte m6700 { get; set; } + public byte m6701 { get; set; } + public byte m6702 { get; set; } + public byte m6703 { get; set; } + public byte m6704 { get; set; } + public byte m6705 { get; set; } + public byte m6706 { get; set; } + public byte m6707 { get; set; } + public byte m6708 { get; set; } + public byte m6709 { get; set; } + public byte m6710 { get; set; } + public byte m6711 { get; set; } + public byte m6712 { get; set; } + public byte m6713 { get; set; } + public byte m6714 { get; set; } + public byte m6715 { get; set; } + public byte m6716 { get; set; } + public byte m6717 { get; set; } + public byte m6718 { get; set; } + public byte m6719 { get; set; } + public byte m6720 { get; set; } + public byte m6721 { get; set; } + public byte m6722 { get; set; } + public byte m6723 { get; set; } + public byte m6724 { get; set; } + public byte m6725 { get; set; } + public byte m6726 { get; set; } + public byte m6727 { get; set; } + public byte m6728 { get; set; } + public byte m6729 { get; set; } + public byte m6730 { get; set; } + public byte m6731 { get; set; } + public byte m6732 { get; set; } + public byte m6733 { get; set; } + public byte m6734 { get; set; } + public byte m6735 { get; set; } + public byte m6736 { get; set; } + public byte m6737 { get; set; } + public byte m6738 { get; set; } + public byte m6739 { get; set; } + public byte m6740 { get; set; } + public byte m6741 { get; set; } + public byte m6742 { get; set; } + public byte m6743 { get; set; } + public byte m6744 { get; set; } + public byte m6745 { get; set; } + public byte m6746 { get; set; } + public byte m6747 { get; set; } + public byte m6748 { get; set; } + public byte m6749 { get; set; } + public byte m6750 { get; set; } + public byte m6751 { get; set; } + public byte m6752 { get; set; } + public byte m6753 { get; set; } + public byte m6754 { get; set; } + public byte m6755 { get; set; } + public byte m6756 { get; set; } + public int r401 { get; set; } + public int r402 { get; set; } + public int r403 { get; set; } + public int r404 { get; set; } + public int r405 { get; set; } + public int r406 { get; set; } + public int r407 { get; set; } + public int r408 { get; set; } + public int r409 { get; set; } + public int r410 { get; set; } + public int r411 { get; set; } + public int r412 { get; set; } + public int r413 { get; set; } + public int r414 { get; set; } + public int r415 { get; set; } + public int r416 { get; set; } + public int r417 { get; set; } + public int r418 { get; set; } + public int r419 { get; set; } + public int r420 { get; set; } + public int r421 { get; set; } + public int r422 { get; set; } + public int r423 { get; set; } + public int r424 { get; set; } + public int r425 { get; set; } + public int r426 { get; set; } + public int r427 { get; set; } + public int r428 { get; set; } + public int r429 { get; set; } + public int r430 { get; set; } + public int r431 { get; set; } + public int r432 { get; set; } + public int r433 { get; set; } + public int r434 { get; set; } + public int r435 { get; set; } + public int r436 { get; set; } + public int r437 { get; set; } + public int r438 { get; set; } + public int r439 { get; set; } + public int r440 { get; set; } + public int r441 { get; set; } + public int r442 { get; set; } + public int r443 { get; set; } + public int r444 { get; set; } + public int r445 { get; set; } + public int r446 { get; set; } + public int r447 { get; set; } + public int r448 { get; set; } + public int r449 { get; set; } + public int r450 { get; set; } + public int r451 { get; set; } + public int r452 { get; set; } + public int r453 { get; set; } + public int r454 { get; set; } + public int r455 { get; set; } + public int r456 { get; set; } + public int r457 { get; set; } + public int r458 { get; set; } + public int r459 { get; set; } + public int r460 { get; set; } + public int r461 { get; set; } + public int r462 { get; set; } + public int r463 { get; set; } + public int r464 { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/Eqmt2.cs b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt2.cs new file mode 100644 index 0000000..d873736 --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt2.cs @@ -0,0 +1,64 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 2线 + /// + [SugarTable("eqmt_collect_data2")] + public class Eqmt2 + { + /// + /// id + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] + public long id { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + /// + /// 收集唯一ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "收集唯一ID")] + public string collect_id { get; set; } + + /// + /// + /// + public int eqmt_id { get; set; } + + + public int d2000 { get; set; } + public int w10 { get; set; } + public int d9500 { get; set; } + public int d9502 { get; set; } + public int d9554 { get; set; } + + public int d9504 { get; set; } + public int d9506 { get; set; } + public int d9508 { get; set; } + public int d9510 { get; set; } + public int d9522 { get; set; } + + public decimal d9524 { get; set; } + public decimal d9526 { get; set; } + public decimal d9528 { get; set; } + public decimal d9530 { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/Eqmt20.cs b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt20.cs new file mode 100644 index 0000000..8abe4c5 --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt20.cs @@ -0,0 +1,64 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 7线 + /// + [SugarTable("eqmt_collect_data20")] + public class Eqmt20 + { + /// + /// id + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] + public long id { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + /// + /// 收集唯一ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "收集唯一ID")] + public string collect_id { get; set; } + + /// + /// + /// + public int eqmt_id { get; set; } + + + public int d2000 { get; set; } + public int w10 { get; set; } + public int d9500 { get; set; } + public int d9502 { get; set; } + public int d9554 { get; set; } + + public int d9504 { get; set; } + public int d9506 { get; set; } + public int d9508 { get; set; } + public int d9510 { get; set; } + public int d9522 { get; set; } + + public decimal d9524 { get; set; } + public decimal d9526 { get; set; } + public decimal d9528 { get; set; } + public decimal d9530 { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/Eqmt7.cs b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt7.cs new file mode 100644 index 0000000..1ea6413 --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/Eqmt7.cs @@ -0,0 +1,64 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 7线 + /// + [SugarTable("eqmt_collect_data7")] + public class Eqmt7 + { + /// + /// id + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] + public long id { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + /// + /// 收集唯一ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "收集唯一ID")] + public string collect_id { get; set; } + + /// + /// + /// + public int eqmt_id { get; set; } + + + public int d2000 { get; set; } + public int w10 { get; set; } + public int d9500 { get; set; } + public int d9502 { get; set; } + public int d9554 { get; set; } + + public int d9504 { get; set; } + public int d9506 { get; set; } + public int d9508 { get; set; } + public int d9510 { get; set; } + public int d9522 { get; set; } + + public decimal d9524 { get; set; } + public decimal d9526 { get; set; } + public decimal d9528 { get; set; } + public decimal d9530 { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/EqmtBase.cs b/yuhong_plc/zzz.model/Entity/Equipment/EqmtBase.cs new file mode 100644 index 0000000..cbe710d --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/EqmtBase.cs @@ -0,0 +1,59 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 基础信息 + /// + [SugarTable("eqmt_base")] + public class EqmtBase + { + /// + /// id + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] + public long id { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + /// + /// 设备ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备ID")] + public int eqmt_id { get; set; } + + /// + /// 设备名称 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备名称")] + public string line_name { get; set; } + + /// + /// 产品名称 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "产品名称")] + public string product { get; set; } + + /// + /// 性能基数 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "性能基数")] + public int strand_speed { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/EqmtCollectAddData.cs b/yuhong_plc/zzz.model/Entity/Equipment/EqmtCollectAddData.cs new file mode 100644 index 0000000..19ab618 --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/EqmtCollectAddData.cs @@ -0,0 +1,143 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 递增数据 每次采集数据的产量差值 + /// + [SugarTable("eqmt_collect_add_data")] + public class EqmtCollectAddData + { + /// + /// id + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] + public long id { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + /// + /// 设备ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备ID")] + public int eqmt_id { get; set; } + + /// + /// 设备名称 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备名称")] + public string line_name { get; set; } + + /// + /// 采集时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "采集时间")] + public DateTime? add_datetime { get; set; } + + /// + /// 产品 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "产品")] + public string product { get; set; } + + /// + /// 型号 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "型号")] + public string product_type { get; set; } + + /// + /// 型号名称 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "型号名称")] + public string product_type_name { get; set; } + + /// + /// 增加产量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "增加数量")] + public long add_qty { get; set; } + + /// + /// 增加产量 良品 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "增加数量 良品")] + public long add_qty_ok { get; set; } + + /// + /// 增加产量 不良品 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "增加数量 不良品")] + public long add_qty_ng { get; set; } + + /// + /// 采集间隔时间(秒) + /// + [SugarColumn(IsNullable = true, ColumnDescription = "采集间隔时间(秒)")] + public int add_during_time { get; set; } + + /// + /// OEE + /// + [SugarColumn(IsNullable = true, ColumnDescription = "OEE",ColumnDataType = "decimal(20,2)")] + public decimal oee { get; set; } + + /// + /// 当班完成率 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当班完成率", ColumnDataType = "decimal(20,2)")] + public decimal shift_complete_rate { get; set; } + + /// + /// 设备状态 0:关机;1:开机;2:待机 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备状态 0:关机;1:开机;2:待机")] + public byte eqmt_status { get; set; } + + /// + /// 创建人 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建人",Length =50)] + public string create_by { get; set; } + + /// + /// 创建日期 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建日期")] + public DateTime? create_time { get; set; } + + /// + /// 更新人 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "更新人", Length = 50)] + public string update_by { get; set; } + + /// + /// 更新日期 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "更新日期")] + public DateTime? update_time { get; set; } + + /// + /// 所属部门 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "所属部门", Length = 64)] + public string sys_org_code { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/EqmtCollectDailyShift.cs b/yuhong_plc/zzz.model/Entity/Equipment/EqmtCollectDailyShift.cs new file mode 100644 index 0000000..018e50c --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/EqmtCollectDailyShift.cs @@ -0,0 +1,175 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 班次数据 每次数据清空新增一条 + /// + [SugarTable("eqmt_collect_daily_shift")] + public class EqmtCollectDailyShift + { + /// + /// id + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] + public long id { get; set; } + + /// + /// 设备ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备ID")] + public int eqmt_id { get; set; } + + /// + /// 设备名称 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备名称")] + public string line_name { get; set; } + + /// + /// 班次开始时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "班次开始时间")] + public DateTime? shift_begin_dt { get; set; } + + /// + /// 产品 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "产品")] + public string product { get; set; } + + /// + /// 型号 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "型号")] + public string product_type { get; set; } + + /// + /// 型号名称 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "型号名称")] + public string product_type_name { get; set; } + + + /// + /// 生产速度 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "生产速度")] + public int speed { get; set; } + + /// + /// 总生产数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "总生产数量")] + public int total_product_qty { get; set; } + + /// + /// 当日生产数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日生产数量")] + public int intraday_product_qty { get; set; } + + /// + /// 当日合格品数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日合格品数量")] + public int intraday_ok_qty { get; set; } + + /// + /// 当日不良品数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日不良品数量")] + public int intraday_ng_qty { get; set; } + + /// + /// 当日合格率 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日合格率", ColumnDataType = "decimal(20,2)")] + public decimal intraday_yield_rate { get; set; } + + /// + /// 当日开机总时间(单位:秒) + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日开机总时间(单位:秒)")] + public int intraday_eqmt_run_time { get; set; } + + /// + /// 当日负荷时间(单位:秒) + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日负荷时间(单位:秒)")] + public int intraday_eqmt_work_time { get; set; } + + /// + /// 当日停机时间(单位:秒) + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日停机时间(单位:秒)")] + public int intraday_eqmt_stop_time { get; set; } + + /// + /// 当日开机效率 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日开机效率", ColumnDataType = "decimal(20,2)")] + public decimal intraday_eqmt_work_rate { get; set; } + + /// + /// 当日停机次数 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日停机次数")] + public int intraday_eqmt_stop_times { get; set; } + + /// + /// OEE + /// + [SugarColumn(IsNullable = true, ColumnDescription = "OEE", ColumnDataType = "decimal(20,2)")] + public decimal oee { get; set; } + + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + /// + /// 创建人 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建人",Length =50)] + public string create_by { get; set; } + + /// + /// 创建日期 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建日期")] + public DateTime? create_time { get; set; } + + /// + /// 更新人 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "更新人", Length = 50)] + public string update_by { get; set; } + + /// + /// 更新日期 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "更新日期")] + public DateTime? update_time { get; set; } + + /// + /// 所属部门 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "所属部门", Length = 64)] + public string sys_org_code { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/EqmtCollectQCResult.cs b/yuhong_plc/zzz.model/Entity/Equipment/EqmtCollectQCResult.cs new file mode 100644 index 0000000..3a1b206 --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/EqmtCollectQCResult.cs @@ -0,0 +1,81 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// QC结果 + /// + [SugarTable("eqmt_collect_qc_result")] + public class EqmtCollectQCResult + { + /// + /// id + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] + public long id { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + /// + /// 班次开始时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "班次开始时间")] + public DateTime? shift_begin_dt { get; set; } + + /// + /// 收集唯一ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "收集唯一ID")] + public string collect_id { get; set; } + + /// + /// 设备id + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备id")] + public int eqmt_id { get; set; } + + /// + /// 寄存器地址(发生异常) (QC项) + /// + [SugarColumn(IsNullable = true, ColumnDescription = "寄存器地址(发生异常)")] + public string registor_address { get; set; } + + /// + /// 报警类型 1:ON报警停机 2:ON报警不停机 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "报警类型 1:ON报警停机 2:ON报警不停机")] + public int? except_type { get; set; } + + /// + /// 报警类型 1:ON报警停机 2:ON报警不停机 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "报警类型名称 1:ON报警停机 2:ON报警不停机")] + public string except_type_name { get; set; } + + /// + /// 报警内容 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "报警内容")] + public string except_message { get; set; } + /// + /// QC结果数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "QC结果数量")] + public int qc_result { get; set; } + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/EqmtCurrent.cs b/yuhong_plc/zzz.model/Entity/Equipment/EqmtCurrent.cs new file mode 100644 index 0000000..6cd06f1 --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/EqmtCurrent.cs @@ -0,0 +1,170 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 当前设备状态 + /// + [SugarTable("eqmt_collect_current")] + public class EqmtCurrent + { + /// + /// id + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] + public long id { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + /// + /// 收集唯一ID + /// + + [SugarColumn(IsNullable = true, ColumnDescription = "收集唯一ID")] + public string collect_id { get; set; } + + /// + /// 设备id + /// + [SugarColumn(IsNullable = false, ColumnDescription = "设备id")] + public int eqmt_id { get; set; } + + /// + /// 产品型号 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "产品型号",ColumnDataType ="varchar(50)")] + public string product_type { get; set; } + + /// + /// 产品名称(带型号) + /// + [SugarColumn(IsNullable = true, ColumnDescription = "产品名称(含型号)", ColumnDataType = "varchar(255)")] + public string product_type_name { get; set; } + + /// + /// 生产速度 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "生产速度")] + public int speed { get; set; } + + /// + /// 总生产数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "总生产数量")] + public int total_product_qty { get; set; } + + /// + /// 当日生产数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日生产数量")] + public int intraday_product_qty { get; set; } + + /// + /// 当日合格品数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日合格品数量")] + public int intraday_ok_qty { get; set; } + + /// + /// 当日不良品数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日不良品数量")] + public int intraday_ng_qty { get; set; } + + /// + /// 当日合格率 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日合格率", ColumnDataType = "decimal(20,2)")] + public decimal intraday_yield_rate { get; set; } + + /// + /// 当日开机总时间(单位:秒) + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日开机总时间(单位:秒)")] + public int intraday_eqmt_run_time { get; set; } + + /// + /// 当日负荷时间(单位:秒) + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日负荷时间(单位:秒)")] + public int intraday_eqmt_work_time { get; set; } + + /// + /// 当日停机时间(单位:秒) + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日停机时间(单位:秒)")] + public int intraday_eqmt_stop_time { get; set; } + + /// + /// 当日停机次数 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日停机次数")] + public int intraday_eqmt_stop_times { get; set; } + + /// + /// 设备状态 0:关机;1:开机;2:待机 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备状态 0:关机;1:开机;2:待机")] + public byte eqmt_status { get; set; } + + /// + /// 设备异常标记 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备异常标记")] + public byte eqmt_except_flag { get; set; } + + /// + /// 设备报警标记 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备报警标记")] + public byte eqmt_alarm_flag { get; set; } + + /// + /// OEE + /// + [SugarColumn(IsNullable = true, ColumnDescription = "OEE", ColumnDataType = "decimal(20,2)")] + public decimal oee { get; set; } + + + /// + /// 创建日期 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建日期")] + public DateTime? create_time { get; set; } + + /// + /// 更新人 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "更新人", Length = 50)] + public string update_by { get; set; } + + /// + /// 更新日期 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "更新日期")] + public DateTime? update_time { get; set; } + + /// + /// 所属部门 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "所属部门", Length = 64)] + public string sys_org_code { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/EqmtExcept.cs b/yuhong_plc/zzz.model/Entity/Equipment/EqmtExcept.cs new file mode 100644 index 0000000..38acffa --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/EqmtExcept.cs @@ -0,0 +1,88 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 异常表 (最后一次收集) + /// + [SugarTable("eqmt_collect_except")] + public class EqmtExcept + { + /// + /// id + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] + public long id { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + /// + /// 班次开始时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "班次开始时间")] + public DateTime? shift_begin_dt { get; set; } + + /// + /// 当日停机次数 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日停机次数")] + public int intraday_eqmt_stop_times { get; set; } + + /// + /// 收集唯一ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "收集唯一ID")] + public string collect_id { get; set; } + + /// + /// 设备id + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备id")] + public int eqmt_id { get; set; } + + /// + /// 寄存器地址(发生异常) (QC项) + /// + [SugarColumn(IsNullable = true, ColumnDescription = "寄存器地址(发生异常)")] + public string registor_address { get; set; } + + /// + /// 报警类型 1:ON报警停机 2:ON报警不停机 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "报警类型 1:ON报警停机 2:ON报警不停机")] + public int? except_type { get; set; } + + /// + /// 报警类型 1:ON报警停机 2:ON报警不停机 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "报警类型名称 1:ON报警停机 2:ON报警不停机")] + public string except_type_name { get; set; } + + /// + /// 报警内容 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "报警内容")] + public string except_message { get; set; } + /// + /// QC结果数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "QC结果数量")] + public int qc_result { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/EqmtExceptHis.cs b/yuhong_plc/zzz.model/Entity/Equipment/EqmtExceptHis.cs new file mode 100644 index 0000000..209357f --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/EqmtExceptHis.cs @@ -0,0 +1,59 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 异常表 履历表 + /// + [SugarTable("eqmt_collect_except_his")] + public class EqmtExceptHis + { + /// + /// id + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] + public long id { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + /// + /// 收集唯一ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "收集唯一ID")] + public string collect_id { get; set; } + + /// + /// 设备id + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备id")] + public int eqmt_id { get; set; } + + /// + /// 寄存器地址(发生异常) + /// + [SugarColumn(IsNullable = true, ColumnDescription = "寄存器地址(发生异常)")] + public string registor_address { get; set; } + + /// + /// QC结果数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "QC结果数量")] + public int qc_result { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/EqmtExceptMaster.cs b/yuhong_plc/zzz.model/Entity/Equipment/EqmtExceptMaster.cs new file mode 100644 index 0000000..716f08c --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/EqmtExceptMaster.cs @@ -0,0 +1,71 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 异常表 基础数据 + /// + [SugarTable("eqmt_collect_except_master")] + public class EqmtExceptMaster + { + /// + /// id + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] + public long id { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + /// + /// 收集唯一ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "收集唯一ID")] + public string collect_id { get; set; } + + /// + /// 设备id + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备id")] + public int eqmt_id { get; set; } + + /// + /// 报警类型 1:ON报警停机 2:ON报警不停机 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "报警类型 1:ON报警停机 2:ON报警不停机")] + public int? except_type { get; set; } + + /// + /// 报警类型 1:ON报警停机 2:ON报警不停机 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "报警类型名称 1:ON报警停机 2:ON报警不停机")] + public string except_type_name { get; set; } + + /// + /// 寄存器地址 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "寄存器地址")] + public string registor_address { get; set; } + + /// + /// 报警内容 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "报警内容")] + public string except_message { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/EqmtProductSpec.cs b/yuhong_plc/zzz.model/Entity/Equipment/EqmtProductSpec.cs new file mode 100644 index 0000000..6e646c3 --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/EqmtProductSpec.cs @@ -0,0 +1,54 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 产品型号 + /// + [SugarTable("eqmt_product_spec")] + public class EqmtProductSpec + { + /// + /// id + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] + public long id { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + /// + /// 设备ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备ID")] + public int eqmt_id { get; set; } + + /// + /// 型号 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "型号")] + public string product_type { get; set; } + + /// + /// 型号名称 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "型号名称")] + public string product_type_name { get; set; } + + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Equipment/EqmtPubData.cs b/yuhong_plc/zzz.model/Entity/Equipment/EqmtPubData.cs new file mode 100644 index 0000000..6763899 --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Equipment/EqmtPubData.cs @@ -0,0 +1,176 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 公用 + /// + [SugarTable("eqmt_collect_pub_data")] + public class EqmtPubData + { + /// + /// id + /// + [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "自增主键")] + public long id { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")] + public DateTime? gmt_create { get; set; } = DateTime.Now; + + /// + /// 修改时间 + /// + + [SugarColumn(IsNullable = true, ColumnDescription = "修改时间")] + public DateTime? gmt_modified { get; set; } + + /// + /// 收集唯一ID + /// + + [SugarColumn(IsNullable = true, ColumnDescription = "收集唯一ID")] + public string collect_id { get; set; } + + /// + /// 设备id + /// + [SugarColumn(IsNullable = false, ColumnDescription = "设备id")] + public int eqmt_id { get; set; } + + /// + /// 产品型号 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "产品型号",ColumnDataType ="varchar(50)")] + public string product_type { get; set; } + + /// + /// 产品名称(带型号) + /// + [SugarColumn(IsNullable = true, ColumnDescription = "产品名称(含型号)", ColumnDataType = "varchar(255)")] + public string product_type_name { get; set; } + + /// + /// 生产速度 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "生产速度")] + public int speed { get; set; } + + /// + /// 总生产数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "总生产数量")] + public int total_product_qty { get; set; } + + /// + /// 当日生产数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日生产数量")] + public int intraday_product_qty { get; set; } + + /// + /// 当日合格品数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日合格品数量")] + public int intraday_ok_qty { get; set; } + + /// + /// 当日不良品数量 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日不良品数量")] + public int intraday_ng_qty { get; set; } + + /// + /// 当日合格率 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日合格率", ColumnDataType = "decimal(20,2)")] + public decimal intraday_yield_rate { get; set; } + + /// + /// 当日开机总时间(单位:秒) + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日开机总时间(单位:秒)")] + public int intraday_eqmt_run_time { get; set; } + + /// + /// 当日负荷时间(单位:秒) + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日负荷时间(单位:秒)")] + public int intraday_eqmt_work_time { get; set; } + + /// + /// 当日停机时间(单位:秒) + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日停机时间(单位:秒)")] + public int intraday_eqmt_stop_time { get; set; } + + /// + /// 当日开机效率 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日开机效率", ColumnDataType = "decimal(20,2)")] + public decimal intraday_eqmt_work_rate { get; set; } + + /// + /// 当日停机次数 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "当日停机次数")] + public int intraday_eqmt_stop_times { get; set; } + + /// + /// 设备状态 0:关机;1:开机;2:待机 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备状态 0:关机;1:开机;2:待机")] + public byte eqmt_status { get; set; } + + /// + /// 设备异常标记 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备异常标记")] + public byte eqmt_except_flag { get; set; } + + /// + /// 设备报警标记 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "设备报警标记")] + public byte eqmt_alarm_flag { get; set; } + + /// + /// OEE + /// + [SugarColumn(IsNullable = true, ColumnDescription = "OEE", ColumnDataType = "decimal(20,2)")] + public decimal oee { get; set; } + + + /// + /// 创建日期 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "创建日期")] + public DateTime? create_time { get; set; } + + /// + /// 更新人 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "更新人", Length = 50)] + public string update_by { get; set; } + + /// + /// 更新日期 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "更新日期")] + public DateTime? update_time { get; set; } + + /// + /// 所属部门 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "所属部门", Length = 64)] + public string sys_org_code { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/Entity/Sys/OperateLog.cs b/yuhong_plc/zzz.model/Entity/Sys/OperateLog.cs new file mode 100644 index 0000000..10274c7 --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Sys/OperateLog.cs @@ -0,0 +1,64 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + [SugarTable("operate_log")] + public class OperateLog: RootEntityAutoKey + { + /// + /// 区域名 + /// + [SugarColumn(IsNullable = true,ColumnDescription = "区域名", Length = 2000 )] + public string Area { get; set; } + + /// + /// 区域控制器名 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "Controller名称", Length = 2000)] + public string Controller { get; set; } + + /// + /// Action名称 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "Action名称", Length = 2000)] + public string Action { get; set; } + + /// + /// IP地址 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "IP地址", Length = 2000)] + public string IPAddress { get; set; } + + /// + /// 描述 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "描述", Length = 2000)] + public string Description { get; set; } + + /// + /// 登录时间 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "操作时间")] + public DateTime? LogTime { get; set; } + + /// + /// 登录名称 + /// + [SugarColumn(IsNullable = true, ColumnDescription = "操作者名称", Length = 2000)] + public string LoginName { get; set; } + /// + /// 用户ID + /// + [SugarColumn(IsNullable = true, ColumnDescription = "操作者Id")] + public int UserId { get; set; } + + + //[SugarColumn(IsIgnore = true)] + //public virtual SysUserInfo User { get; set; } + } +} diff --git a/yuhong_plc/zzz.model/Entity/Sys/TasksQz.cs b/yuhong_plc/zzz.model/Entity/Sys/TasksQz.cs new file mode 100644 index 0000000..69a9a17 --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Sys/TasksQz.cs @@ -0,0 +1,96 @@ +using zzz.Model; +using zzz.Model.ViewModels; +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + /// + /// 定时任务 + /// + [SugarTable("tasks_qz")] + public class TasksQz: RootEntityTkey + { + /// + /// 任务名称 + /// + [SugarColumn(Length = 200, IsNullable = true)] + public string Name { get; set; } + /// + /// 任务分组 + /// + [SugarColumn(Length = 200, IsNullable = true)] + public string JobGroup { get; set; } + /// + /// 任务运行时间表达式 + /// + [SugarColumn(Length = 200, IsNullable = true)] + public string Cron { get; set; } + /// + /// 任务所在DLL对应的程序集名称 + /// + [SugarColumn(Length = 200, IsNullable = true)] + public string AssemblyName { get; set; } + /// + /// 任务所在类 + /// + [SugarColumn(Length = 200, IsNullable = true)] + public string ClassName { get; set; } + /// + /// 任务描述 + /// + [SugarColumn(Length = 1000, IsNullable = true)] + public string Remark { get; set; } + /// + /// 执行次数 + /// + [SugarColumn(IsNullable = true)] + public int RunTimes { get; set; } + /// + /// 开始时间 + /// + [SugarColumn(IsNullable = true)] + public DateTime? BeginTime { get; set; } + /// + /// 结束时间 + /// + [SugarColumn(IsNullable = true)] + public DateTime? EndTime { get; set; } + /// + /// 触发器类型(0、simple 1、cron) + /// + [SugarColumn(IsNullable = true)] + public int TriggerType { get; set; } + /// + /// 执行间隔时间, 秒为单位 + /// + [SugarColumn(IsNullable = true)] + public int IntervalSecond { get; set; } + /// + /// 循环执行次数 + /// + [SugarColumn(IsNullable = true)] + public int CycleRunTimes { get; set; } + /// + /// 是否启动 + /// + [SugarColumn(IsNullable = true)] + public bool IsStart { get; set; } = false; + /// + /// 执行传参 + /// + [SugarColumn(IsNullable = true)] + public string JobParams { get; set; } + + + /// + /// 任务内存中的状态 + /// + [SugarColumn(IsIgnore = true)] + public List Triggers { get; set; } + } +} diff --git a/yuhong_plc/zzz.model/Entity/Sys/Test.cs b/yuhong_plc/zzz.model/Entity/Sys/Test.cs new file mode 100644 index 0000000..5e00e5f --- /dev/null +++ b/yuhong_plc/zzz.model/Entity/Sys/Test.cs @@ -0,0 +1,39 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.Entity +{ + public class Test:RootEntityTkey + { + + [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "文字列1")] + public string Txt1 { get; set; } + [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "文字列2")] + public string Txt2 { get; set; } + + [SugarColumn( IsNullable = true, ColumnDescription = "数值1")] + public double? Flo1 { get; set; } + [SugarColumn( IsNullable = true, ColumnDescription = "数值2")] + public double? Flo2 { get; set; } + + [SugarColumn(ColumnDescription = "单位编码", IsNullable = true, Length = 50)] + public string UnitCode { get; set; } + + [SugarColumn(ColumnDescription = "单位名称", IsNullable = true, Length = 50)] + public string UnitName { get; set; } + + [SugarColumn(ColumnDescription = "助记符", IsNullable = true, Length = 50)] + public string UnitHelpCode { get; set; } + + [SugarColumn(ColumnDescription = "排序", IsNullable = true)] + public int? Sort { get; set; } + + [SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 255)] + public string Remark { get; set; } + + } +} diff --git a/yuhong_plc/zzz.model/MessageModel.cs b/yuhong_plc/zzz.model/MessageModel.cs new file mode 100644 index 0000000..910cb5b --- /dev/null +++ b/yuhong_plc/zzz.model/MessageModel.cs @@ -0,0 +1,99 @@ +namespace zzz.Model +{ + /// + /// 通用返回信息类 + /// + public class MessageModel + { + /// + /// 状态码 + /// + public int code { get; set; } = 200; + /// + /// 操作是否成功 + /// + public bool success { get; set; } = false; + /// + /// 返回信息 + /// + public string message { get; set; } = ""; + + /// + /// 返回数据集合 + /// + public T data { get; set; } + + /// + /// 返回成功 + /// + /// 消息 + /// + public static MessageModel Success(string msg) + { + return Message(true, msg, default); + } + /// + /// 返回成功 + /// + /// 消息 + /// 数据 + /// + public static MessageModel Success(string msg, T response) + { + return Message(true, msg, response); + } + /// + /// 返回失败 + /// + /// 消息 + /// + public static MessageModel Fail(string msg) + { + return Message(false, msg, default); + } + /// + /// 返回失败 + /// + /// 消息 + /// 数据 + /// + public static MessageModel Fail(string msg, T response) + { + return Message(false, msg, response); + } + /// + /// 返回消息 + /// + /// 失败/成功 + /// 消息 + /// 数据 + /// + public static MessageModel Message(bool success, string msg, T data) + { + return new MessageModel() { message = msg, data = data, success = success }; + } + } + + /// + /// 统一返回数据格式 + /// + public class MessageModel + { + /// + /// 状态码 + /// + public int code { get; set; } = 200; + /// + /// 操作是否成功 + /// + public bool success { get; set; } = false; + /// + /// 返回信息 + /// + public string message { get; set; } = ""; + /// + /// 返回数据集合 + /// + public object data { get; set; } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.model/PageModel.cs b/yuhong_plc/zzz.model/PageModel.cs new file mode 100644 index 0000000..71cb161 --- /dev/null +++ b/yuhong_plc/zzz.model/PageModel.cs @@ -0,0 +1,108 @@ +using AutoMapper; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model +{ + /// + /// 通用分页信息类 + /// + public class PageModel + { + /// + /// 当前页标 + /// + public int pageIndex { get; set; } = 1; + /// + /// 每页大小 + /// + public int pageSize { set; get; } = 20; + /// + /// 总页数 + /// + public int totalPages => (int)Math.Ceiling((decimal)totalCount / pageSize); + /// + /// 数据总数 + /// + public int totalCount { get; set; } = 0; + /// + /// 返回数据 + /// + public List rows { get; set; } + + /// + /// + /// + public PageModel() { } + + /// + /// + /// + /// + /// + /// + /// + public PageModel(int pageIndex, int totalCount, int pageSize, List rows) + { + this.pageIndex = pageIndex; + this.totalCount = totalCount; + this.pageSize = pageSize; + this.rows = rows; + } + + /// + /// + /// + /// + /// + //private PageModel ConvertTo() + //{ + // return new PageModel(pageIndex, totalCount, pageSize, default); + //} + + /// + /// + /// + /// + /// + public PageModel ConvertTo() + { + var model = new PageModel(pageIndex, totalCount, pageSize, default); + + if (rows != null) + { + var cfg = new MapperConfiguration(cfg => cfg.CreateMap()); + var m = cfg.CreateMapper(); + + model.rows = m.Map>(rows); + } + + return model; + } + + /// + /// + /// + /// + /// + /// + public PageModel ConvertTo(Action options) + { + var model = new PageModel(pageIndex, totalCount, pageSize, default); + if (rows != null) + { + var cfg = new MapperConfiguration(cfg => cfg.CreateMap()); + var m = cfg.CreateMapper(); + + model.rows = m.Map>(rows, options); + } + + return model; + + } + + } +} diff --git a/yuhong_plc/zzz.model/ViewModels/GjpDto/GjpTabCaigouDetail.cs b/yuhong_plc/zzz.model/ViewModels/GjpDto/GjpTabCaigouDetail.cs new file mode 100644 index 0000000..a798a42 --- /dev/null +++ b/yuhong_plc/zzz.model/ViewModels/GjpDto/GjpTabCaigouDetail.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.ViewModels +{ + public class GjpTabCaigouDetail + { + /// + /// 金额(含税) + /// + public float Tax_Total { get; set; } + /// + /// 金额 + /// + public float Total { get; set; } + } +} diff --git a/yuhong_plc/zzz.model/ViewModels/GjpDto/GjpTabXiaoshouDetail.cs b/yuhong_plc/zzz.model/ViewModels/GjpDto/GjpTabXiaoshouDetail.cs new file mode 100644 index 0000000..529c05c --- /dev/null +++ b/yuhong_plc/zzz.model/ViewModels/GjpDto/GjpTabXiaoshouDetail.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.ViewModels +{ + /// + /// 管家婆销售明细 + /// + public class GjpTabXiaoshouDetail + { + /// + /// 价税合计 + /// + public float Tax_Total { get; set; } + /// + /// 折后金额 + /// + public float Total { get; set; } + } +} diff --git a/yuhong_plc/zzz.model/ViewModels/TaskInfoDto.cs b/yuhong_plc/zzz.model/ViewModels/TaskInfoDto.cs new file mode 100644 index 0000000..40fee53 --- /dev/null +++ b/yuhong_plc/zzz.model/ViewModels/TaskInfoDto.cs @@ -0,0 +1,43 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace zzz.Model.ViewModels +{ + /// + /// 调度任务触发器信息实体 + /// + public class TaskInfoDto + { + /// + /// 任务ID + /// + public string jobId { get; set; } + /// + /// 任务名称 + /// + public string jobName { get; set; } + /// + /// 任务分组 + /// + public string jobGroup { get; set; } + /// + /// 触发器ID + /// + public string triggerId { get; set; } + /// + /// 触发器名称 + /// + public string triggerName { get; set; } + /// + /// 触发器分组 + /// + public string triggerGroup { get; set; } + /// + /// 触发器状态 + /// + public string triggerStatus { get; set; } + } +} diff --git a/yuhong_plc/zzz.model/bin/Debug/net6.0/cjyx.Model.deps.json b/yuhong_plc/zzz.model/bin/Debug/net6.0/cjyx.Model.deps.json new file mode 100644 index 0000000..aacfc01 --- /dev/null +++ b/yuhong_plc/zzz.model/bin/Debug/net6.0/cjyx.Model.deps.json @@ -0,0 +1,2370 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "cjyx.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "cjyx.Model.dll": {} + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/10.0.3": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Runtime.Serialization.Formatters": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Newtonsoft.Json.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.3.21018" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "4.7.1" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "10.0.3", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.7.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Json/4.7.1": {}, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + } + } + }, + "libraries": { + "cjyx.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/10.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==", + "path": "newtonsoft.json/10.0.3", + "hashPath": "newtonsoft.json.10.0.3.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==", + "path": "system.diagnostics.diagnosticsource/4.7.0", + "hashPath": "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "path": "system.runtime.serialization.formatters/4.3.0", + "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Json/4.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==", + "path": "system.text.json/4.7.1", + "hashPath": "system.text.json.4.7.1.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.model/bin/Debug/net6.0/cjyx.Model.dll b/yuhong_plc/zzz.model/bin/Debug/net6.0/cjyx.Model.dll new file mode 100644 index 0000000..0c5d675 Binary files /dev/null and b/yuhong_plc/zzz.model/bin/Debug/net6.0/cjyx.Model.dll differ diff --git a/yuhong_plc/zzz.model/bin/Debug/net6.0/cjyx.Model.pdb b/yuhong_plc/zzz.model/bin/Debug/net6.0/cjyx.Model.pdb new file mode 100644 index 0000000..1747c5c Binary files /dev/null and b/yuhong_plc/zzz.model/bin/Debug/net6.0/cjyx.Model.pdb differ diff --git a/yuhong_plc/zzz.model/bin/Debug/net6.0/ref/cjyx.Model.dll b/yuhong_plc/zzz.model/bin/Debug/net6.0/ref/cjyx.Model.dll new file mode 100644 index 0000000..c21a1a0 Binary files /dev/null and b/yuhong_plc/zzz.model/bin/Debug/net6.0/ref/cjyx.Model.dll differ diff --git a/yuhong_plc/zzz.model/bin/Debug/net6.0/ref/zzz.Model.dll b/yuhong_plc/zzz.model/bin/Debug/net6.0/ref/zzz.Model.dll new file mode 100644 index 0000000..f8180d4 Binary files /dev/null and b/yuhong_plc/zzz.model/bin/Debug/net6.0/ref/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.model/bin/Debug/net6.0/zzz.Model.deps.json b/yuhong_plc/zzz.model/bin/Debug/net6.0/zzz.Model.deps.json new file mode 100644 index 0000000..989bb0b --- /dev/null +++ b/yuhong_plc/zzz.model/bin/Debug/net6.0/zzz.Model.deps.json @@ -0,0 +1,2370 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/10.0.3": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Runtime.Serialization.Formatters": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Newtonsoft.Json.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.3.21018" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "4.7.1" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "10.0.3", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.7.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Json/4.7.1": {}, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + } + } + }, + "libraries": { + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2FpFllO0wFJmfIXY9NXr33jWgr88b7E4gAuPHSNYzNr5o2XIouynxAoLA+SShuDI2ySSsvnBHURiXRX7tz59YA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/6XtTu0ZHzge7tzZZN8UXpwG1K0Vgxi7C7R0QiTgxMtN4gkzNl4xNVUI4X3tymMwKWUdwqXvzkrJqt3MdMFXig==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/10.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==", + "path": "newtonsoft.json/10.0.3", + "hashPath": "newtonsoft.json.10.0.3.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kuvqViO3OnqjWcNSQfanREtHgqJx6UK5UHPeIl7M666izpBErP4TDZctWnYvuz7l/hpWPkS3DsUAUPAyVS/zBA==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QnpBRH8jHD/TtGA5fjrdK/BRf+Oslt/M/X+r487ByPS2q+EZUNwEiaoPUuZcqFcLwqAY2Fw7SciCHTPiK2GTqg==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i/u0Svwgj6JM9SpaoJAqTiMU3B0UZEUC35JadEBgkihBi+RzyRe2VlGwhZ6B63r78CmzZ/VAYNXvLAnoIaRG/A==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOKLiiK96F+8pPB+ALL20VFsTDBolLfysxlBZDGlFXDEBEZfdfm4OYuInLtxYHCUSxpJpPivIYm9jasMzfgzEQ==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSKGjRiQWUHf2zpiRD3+q8lzjL89HhiR74cevVqShwVHtDEHjAhDU75w6mPdeFg9QSyqI32Ud3Qskr5WHNCw+g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wvyiJIm0HlaoN+AlJXhTpDrhYkN28OC/nEun5QpbPkZvbpgWSYvZ8Hr9/G4Bd1I0WSmFW18KQuE5DOA05Uubrw==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wAdmaCgCSe298gCNvAf6vlVPfQUR7h43Qr2tTtJFYeto/OvttRLyG4ch6/R2FpuWRMfxHBsAeHYrzjvEk1UM+Q==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sRo7MpbD5VnFdLZA/uVuR5YJdDV4i+DyJTpQ1rk92wCzLE4cXJ+q7tzGr2HwkL/ujeFNcPo/fOs7LKdDyeyupA==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wJLrK/MQdlF3TmfNouxSsgtCRhsgx4tz2KdY/mpvirOcgMc2W4DDK7vR6RcSc6XRV4P6rzrLFXd9wUzp/iWp0g==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aX7O7aytoclkwEvOv4vCDBP2hDVsrAbQVAOJXUka7qCXbbZcqtv8CKrX646dSERl9aO/tY0/g2ezsa4jBAMQOg==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==", + "path": "system.diagnostics.diagnosticsource/4.7.0", + "hashPath": "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6jD8gKBZvTfp1PEuqAkpMZvG9hF+gzGIvhvRh0K2qDApsiEpRZ9ZUlWE2nACpPdWP8w3DaL0TQAHuA7gXDSupA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ChcZW/eQtXpPDW7qMqlqK7xGW4A8hhz7/iY4J5hsvhzPsza7Cml+hdBhm5vAh6KhHcXzMvjfLcbChmZsYPlJsA==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ttt2PGgBfejL4xBEdMMd2E+Mqn/wC47jhMBtqRNJeH6uYa2j3fTDi1Jj1hAY5sfgbJcrvfSO46G1pufONMmfmA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kzMaA/htO8n7p5FQvyVXA9Q66+LntW+m0vp+Vnl5gSWsc6btlIYIC3aXs3DvtvdV0ue1tX/Mslkiei1vLgh3WA==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yn4CfuDOHBxI0b6JNSQJGqCIsuEqcjxQIAxktq316Jhz9Q0aRKqqGN7QNwd5fyNqz7mNMXfKDt1bJrtggkt8/g==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kRj3owqKUOxPcvQpK0VItuLGg/aXPjUxzT5ujrfMW0RrAQ7FJYB+mFiCawtGQVQatVCKr78TX39cJueK9ic8wA==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1d5+nGi+bWLgg0/wPO1IKJGSIe8Gy+WsMoT11T472mWHryC/qCISRl/v9w4rmk+72uX/1DFgBjBljUXyAK4jNg==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BnZgb92GKxi/DjV7WbZo2Sm7G8pImuLocQAHIkuFrRExeBMyjX0sIRY039HbnBObE7t5ihxRP3wYPSJ0Zt/apQ==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dGfhVR2KQhRwrl0D8yb8gJLpr2iX4Hnud1oNRwUbafrqskstG2kC3NMNp/t7QRzdb1mlNqc99F2OjXYKyHzdnA==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MHtkLrHBt/UkTMLaBYgCgrm2WBogOkEjDRlNJSxy18uQWEMN4ymSywGNwNHS8ATNyaGJzddvmdWI/UjLaLyskg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6sVcH1+qeVKf7xD/7k0ouAA7830LIw7Ltwo4bEl9ExyRVN/YNUhka9CBcd2Pp4Ugn14/cIY/i39bSTMUOmftFw==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S70uFEyXRAuRBxWsQWyVciioHMGOYxpob7a/TNchHKF9ceQPktdtcdl3/vktvUJU8B5ES7lG1wkglSWXYKHjcA==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TqRGJ6R6S9VpsXm2GpRy87TFXMxVqtYMrZtQFZHNJadQ1njAlpp0F5PfsWH04UNZWeY9X1jK+Kr8faJREA1kfg==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-13ihEbKKWpJYwZpo1kcDv2kW8eCK9twslQXpuqW/ulpHFhB2vuxbCuQgllNLjiSuL3uEKSPz34wC0xRb5hY9OA==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJGsxoZ+9PXn+Qdjc5Nk6yJVqLk8lRR3k3uEGja59sC1EbkzMbVMqPFNOQmYxaO5Fbid8Bm29o+rB/PdDCDXNw==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yhyMfLA28dYAFahmTy+lM6rDrrca84R76fk8J0GH9gdtcZe6NuA7bWhLOCcWOEi74jZOIjtjtRPzkdSv6KlATQ==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-djZnX43T2YuLt526S/mq2pBiHQS8WfAUAg/nOt+oz6MkTo6HKAANCytQEFXmv6jyrumb8ohYe3ht2sEUMi9LMQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jw3ielASDELVDT+VPsL6PGRHp50mytxUnVp7UlKZWS3l5cxWAhZIWfTiunuqyy90WKcEIehjHkfpRqyzO5eFmw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPdBt8ZxEzxDYhPnWz+eegZMhyYBzea/Oi7AuuqwtyCATswlsMdA3tiw/U/rMP+MvDa4DIhI1inEwEDYArfuJg==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "path": "system.runtime.serialization.formatters/4.3.0", + "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DG7gpkRnHPaofkkKx5jWKqI9gjcHhDOt3BeCMKRTImnngZvP1jlgYMXYXxY+S8XWyOoyU8KF5Tv0ZrG9FYREvQ==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xFN3KCCvtAdfdy+AngirK0Tku73Ne9i5NmV995PGnHOn6OvNx5j/f2Aa6FuEoZT1YshMjOlWfEKI8WAjnaxtRg==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iwhUBeB6oQ10iH2CRQeLNTHyQX9lxiMNZuC9nMY0IhiQlRaDtcwTVaGWSTShduj0V8o07kOgI53QayLnHt6i0A==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Json/4.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==", + "path": "system.text.json/4.7.1", + "hashPath": "system.text.json.4.7.1.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6hQ2W40ImHD8OSBL8zWYSwdae6iryMpeEThocf8u1m/0LFZUmnRtKyXZtXNNqwkbha/mDcjS+GbbCk+whXz0sA==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aUDiT8Qv4rbc1YwvWhBM76PzeoHLQLook/5PiXhFsBur7cniIsd2K0MhGDZ1M1IN9j7y6HdC7lnk+TS37lJEZA==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IKcG64NTLVkZVHawu61/TldF/J/Vb7phwiECTLwB30N7NoUkXs1BquSuCJHyHCLUC0vEmEU0vqnQZY7T21Gc1Q==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EyRjbRA4pD4dG4O4XEzITKvzLRpauU4LhvS1UhiWUlvk5bUcfhFDMw1obsrvfpfD3zvqJ6PXm6Y4r2tUFf1yCQ==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MOrSyJ8eyHXyB4xMFN7AIZ5/B9ODYQxmspxxD2r5Zd8Os6hUAmVRUgl6s6Qml/j4nJGcsOHgonpDYmEAeuADMw==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.model/bin/Debug/net6.0/zzz.Model.dll b/yuhong_plc/zzz.model/bin/Debug/net6.0/zzz.Model.dll new file mode 100644 index 0000000..98ddff2 Binary files /dev/null and b/yuhong_plc/zzz.model/bin/Debug/net6.0/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.model/bin/Debug/net6.0/zzz.Model.pdb b/yuhong_plc/zzz.model/bin/Debug/net6.0/zzz.Model.pdb new file mode 100644 index 0000000..ee6d136 Binary files /dev/null and b/yuhong_plc/zzz.model/bin/Debug/net6.0/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.model/bin/Debug/net6.0/zzz.Model.xml b/yuhong_plc/zzz.model/bin/Debug/net6.0/zzz.Model.xml new file mode 100644 index 0000000..90ea772 --- /dev/null +++ b/yuhong_plc/zzz.model/bin/Debug/net6.0/zzz.Model.xml @@ -0,0 +1,1543 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 2线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.model/bin/Release/net6.0/ref/zzz.Model.dll b/yuhong_plc/zzz.model/bin/Release/net6.0/ref/zzz.Model.dll new file mode 100644 index 0000000..69f7f4a Binary files /dev/null and b/yuhong_plc/zzz.model/bin/Release/net6.0/ref/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.model/bin/Release/net6.0/zzz.Model.deps.json b/yuhong_plc/zzz.model/bin/Release/net6.0/zzz.Model.deps.json new file mode 100644 index 0000000..989bb0b --- /dev/null +++ b/yuhong_plc/zzz.model/bin/Release/net6.0/zzz.Model.deps.json @@ -0,0 +1,2370 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "zzz.Model/1.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", + "SqlSugarCore": "5.0.8" + }, + "runtime": { + "zzz.Model.dll": {} + } + }, + "AutoMapper/11.0.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.1.0" + } + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "dependencies": { + "AutoMapper": "11.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.0.0.0" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/2.1.1": { + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "2.0.20168.4", + "fileVersion": "2.0.20168.4" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.1.0" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Identity.Client/4.21.1": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.21.1.0", + "fileVersion": "4.21.1.0" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/10.0.3": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Runtime.Serialization.Formatters": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Newtonsoft.Json.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.3.21018" + } + } + }, + "Npgsql/5.0.7": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net5.0/Npgsql.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.7.0" + } + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "4.7.1" + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "3.1.21.1", + "fileVersion": "3.1.21.1" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SqlSugarCore/5.0.8": { + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "10.0.3", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": { + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.8.0" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Common/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.7.0": {}, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.DirectoryServices/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/4.7.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Json/4.7.1": {}, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + } + } + }, + "libraries": { + "zzz.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/11.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "path": "automapper/11.0.1", + "hashPath": "automapper.11.0.1.nupkg.sha512" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "path": "microsoft.data.sqlclient/2.1.1", + "hashPath": "microsoft.data.sqlclient.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "path": "microsoft.data.sqlite/5.0.5", + "hashPath": "microsoft.data.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "path": "microsoft.identity.client/4.21.1", + "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "path": "microsoft.identitymodel.protocols/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2FpFllO0wFJmfIXY9NXr33jWgr88b7E4gAuPHSNYzNr5o2XIouynxAoLA+SShuDI2ySSsvnBHURiXRX7tz59YA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/6XtTu0ZHzge7tzZZN8UXpwG1K0Vgxi7C7R0QiTgxMtN4gkzNl4xNVUI4X3tymMwKWUdwqXvzkrJqt3MdMFXig==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/10.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==", + "path": "newtonsoft.json/10.0.3", + "hashPath": "newtonsoft.json.10.0.3.nupkg.sha512" + }, + "Npgsql/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "path": "npgsql/5.0.7", + "hashPath": "npgsql.5.0.7.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "path": "oracle.manageddataaccess.core/3.21.1", + "hashPath": "oracle.manageddataaccess.core.3.21.1.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kuvqViO3OnqjWcNSQfanREtHgqJx6UK5UHPeIl7M666izpBErP4TDZctWnYvuz7l/hpWPkS3DsUAUPAyVS/zBA==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QnpBRH8jHD/TtGA5fjrdK/BRf+Oslt/M/X+r487ByPS2q+EZUNwEiaoPUuZcqFcLwqAY2Fw7SciCHTPiK2GTqg==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i/u0Svwgj6JM9SpaoJAqTiMU3B0UZEUC35JadEBgkihBi+RzyRe2VlGwhZ6B63r78CmzZ/VAYNXvLAnoIaRG/A==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOKLiiK96F+8pPB+ALL20VFsTDBolLfysxlBZDGlFXDEBEZfdfm4OYuInLtxYHCUSxpJpPivIYm9jasMzfgzEQ==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSKGjRiQWUHf2zpiRD3+q8lzjL89HhiR74cevVqShwVHtDEHjAhDU75w6mPdeFg9QSyqI32Ud3Qskr5WHNCw+g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "path": "sqlsugarcore/5.0.8", + "hashPath": "sqlsugarcore.5.0.8.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wvyiJIm0HlaoN+AlJXhTpDrhYkN28OC/nEun5QpbPkZvbpgWSYvZ8Hr9/G4Bd1I0WSmFW18KQuE5DOA05Uubrw==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wAdmaCgCSe298gCNvAf6vlVPfQUR7h43Qr2tTtJFYeto/OvttRLyG4ch6/R2FpuWRMfxHBsAeHYrzjvEk1UM+Q==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sRo7MpbD5VnFdLZA/uVuR5YJdDV4i+DyJTpQ1rk92wCzLE4cXJ+q7tzGr2HwkL/ujeFNcPo/fOs7LKdDyeyupA==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wJLrK/MQdlF3TmfNouxSsgtCRhsgx4tz2KdY/mpvirOcgMc2W4DDK7vR6RcSc6XRV4P6rzrLFXd9wUzp/iWp0g==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aX7O7aytoclkwEvOv4vCDBP2hDVsrAbQVAOJXUka7qCXbbZcqtv8CKrX646dSERl9aO/tY0/g2ezsa4jBAMQOg==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==", + "path": "system.diagnostics.diagnosticsource/4.7.0", + "hashPath": "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "path": "system.diagnostics.performancecounter/4.7.0", + "hashPath": "system.diagnostics.performancecounter.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6jD8gKBZvTfp1PEuqAkpMZvG9hF+gzGIvhvRh0K2qDApsiEpRZ9ZUlWE2nACpPdWP8w3DaL0TQAHuA7gXDSupA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ChcZW/eQtXpPDW7qMqlqK7xGW4A8hhz7/iY4J5hsvhzPsza7Cml+hdBhm5vAh6KhHcXzMvjfLcbChmZsYPlJsA==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "path": "system.directoryservices/4.7.0", + "hashPath": "system.directoryservices.4.7.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "path": "system.directoryservices.protocols/4.7.0", + "hashPath": "system.directoryservices.protocols.4.7.0.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ttt2PGgBfejL4xBEdMMd2E+Mqn/wC47jhMBtqRNJeH6uYa2j3fTDi1Jj1hAY5sfgbJcrvfSO46G1pufONMmfmA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kzMaA/htO8n7p5FQvyVXA9Q66+LntW+m0vp+Vnl5gSWsc6btlIYIC3aXs3DvtvdV0ue1tX/Mslkiei1vLgh3WA==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "hashPath": "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yn4CfuDOHBxI0b6JNSQJGqCIsuEqcjxQIAxktq316Jhz9Q0aRKqqGN7QNwd5fyNqz7mNMXfKDt1bJrtggkt8/g==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kRj3owqKUOxPcvQpK0VItuLGg/aXPjUxzT5ujrfMW0RrAQ7FJYB+mFiCawtGQVQatVCKr78TX39cJueK9ic8wA==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1d5+nGi+bWLgg0/wPO1IKJGSIe8Gy+WsMoT11T472mWHryC/qCISRl/v9w4rmk+72uX/1DFgBjBljUXyAK4jNg==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BnZgb92GKxi/DjV7WbZo2Sm7G8pImuLocQAHIkuFrRExeBMyjX0sIRY039HbnBObE7t5ihxRP3wYPSJ0Zt/apQ==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dGfhVR2KQhRwrl0D8yb8gJLpr2iX4Hnud1oNRwUbafrqskstG2kC3NMNp/t7QRzdb1mlNqc99F2OjXYKyHzdnA==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MHtkLrHBt/UkTMLaBYgCgrm2WBogOkEjDRlNJSxy18uQWEMN4ymSywGNwNHS8ATNyaGJzddvmdWI/UjLaLyskg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6sVcH1+qeVKf7xD/7k0ouAA7830LIw7Ltwo4bEl9ExyRVN/YNUhka9CBcd2Pp4Ugn14/cIY/i39bSTMUOmftFw==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S70uFEyXRAuRBxWsQWyVciioHMGOYxpob7a/TNchHKF9ceQPktdtcdl3/vktvUJU8B5ES7lG1wkglSWXYKHjcA==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TqRGJ6R6S9VpsXm2GpRy87TFXMxVqtYMrZtQFZHNJadQ1njAlpp0F5PfsWH04UNZWeY9X1jK+Kr8faJREA1kfg==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-13ihEbKKWpJYwZpo1kcDv2kW8eCK9twslQXpuqW/ulpHFhB2vuxbCuQgllNLjiSuL3uEKSPz34wC0xRb5hY9OA==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJGsxoZ+9PXn+Qdjc5Nk6yJVqLk8lRR3k3uEGja59sC1EbkzMbVMqPFNOQmYxaO5Fbid8Bm29o+rB/PdDCDXNw==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "path": "system.runtime.caching/4.7.0", + "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yhyMfLA28dYAFahmTy+lM6rDrrca84R76fk8J0GH9gdtcZe6NuA7bWhLOCcWOEi74jZOIjtjtRPzkdSv6KlATQ==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-djZnX43T2YuLt526S/mq2pBiHQS8WfAUAg/nOt+oz6MkTo6HKAANCytQEFXmv6jyrumb8ohYe3ht2sEUMi9LMQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jw3ielASDELVDT+VPsL6PGRHp50mytxUnVp7UlKZWS3l5cxWAhZIWfTiunuqyy90WKcEIehjHkfpRqyzO5eFmw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPdBt8ZxEzxDYhPnWz+eegZMhyYBzea/Oi7AuuqwtyCATswlsMdA3tiw/U/rMP+MvDa4DIhI1inEwEDYArfuJg==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "path": "system.runtime.serialization.formatters/4.3.0", + "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DG7gpkRnHPaofkkKx5jWKqI9gjcHhDOt3BeCMKRTImnngZvP1jlgYMXYXxY+S8XWyOoyU8KF5Tv0ZrG9FYREvQ==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xFN3KCCvtAdfdy+AngirK0Tku73Ne9i5NmV995PGnHOn6OvNx5j/f2Aa6FuEoZT1YshMjOlWfEKI8WAjnaxtRg==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "path": "system.text.encoding.codepages/4.7.0", + "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iwhUBeB6oQ10iH2CRQeLNTHyQX9lxiMNZuC9nMY0IhiQlRaDtcwTVaGWSTShduj0V8o07kOgI53QayLnHt6i0A==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Json/4.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==", + "path": "system.text.json/4.7.1", + "hashPath": "system.text.json.4.7.1.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6hQ2W40ImHD8OSBL8zWYSwdae6iryMpeEThocf8u1m/0LFZUmnRtKyXZtXNNqwkbha/mDcjS+GbbCk+whXz0sA==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aUDiT8Qv4rbc1YwvWhBM76PzeoHLQLook/5PiXhFsBur7cniIsd2K0MhGDZ1M1IN9j7y6HdC7lnk+TS37lJEZA==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IKcG64NTLVkZVHawu61/TldF/J/Vb7phwiECTLwB30N7NoUkXs1BquSuCJHyHCLUC0vEmEU0vqnQZY7T21Gc1Q==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EyRjbRA4pD4dG4O4XEzITKvzLRpauU4LhvS1UhiWUlvk5bUcfhFDMw1obsrvfpfD3zvqJ6PXm6Y4r2tUFf1yCQ==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MOrSyJ8eyHXyB4xMFN7AIZ5/B9ODYQxmspxxD2r5Zd8Os6hUAmVRUgl6s6Qml/j4nJGcsOHgonpDYmEAeuADMw==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.model/bin/Release/net6.0/zzz.Model.dll b/yuhong_plc/zzz.model/bin/Release/net6.0/zzz.Model.dll new file mode 100644 index 0000000..9fb27f0 Binary files /dev/null and b/yuhong_plc/zzz.model/bin/Release/net6.0/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.model/bin/Release/net6.0/zzz.Model.pdb b/yuhong_plc/zzz.model/bin/Release/net6.0/zzz.Model.pdb new file mode 100644 index 0000000..2d4df51 Binary files /dev/null and b/yuhong_plc/zzz.model/bin/Release/net6.0/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.model/bin/Release/net6.0/zzz.Model.xml b/yuhong_plc/zzz.model/bin/Release/net6.0/zzz.Model.xml new file mode 100644 index 0000000..90ea772 --- /dev/null +++ b/yuhong_plc/zzz.model/bin/Release/net6.0/zzz.Model.xml @@ -0,0 +1,1543 @@ + + + + zzz.Model + + + + + 自增表 + + + + + 自增 ID + + + + + + + + + + + ID + 泛型主键Tkey + + + + + 创建ID + + + + + 创建者 + + + + + 创建时间 + + + + + 修改ID + + + + + 修改者 + + + + + 修改时间 + + + + + 获取或设置是否禁用,逻辑上的删除,非物理删除 + + + + + 13线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 15线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 16线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 17线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 18线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 19线 + + + + + 创建时间 + + + + + 修改时间 + + + + + 2线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 7线 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + + + + + + 基础信息 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 产品名称 + + + + + 性能基数 + + + + + 递增数据 每次采集数据的产量差值 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 设备名称 + + + + + 采集时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 增加产量 + + + + + 增加产量 良品 + + + + + 增加产量 不良品 + + + + + 采集间隔时间(秒) + + + + + OEE + + + + + 当班完成率 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 班次数据 每次数据清空新增一条 + + + + + id + + + + + 设备ID + + + + + 设备名称 + + + + + 班次开始时间 + + + + + 产品 + + + + + 型号 + + + + + 型号名称 + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + OEE + + + + + 创建时间 + + + + + 修改时间 + + + + + 创建人 + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + QC结果 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 当前设备状态 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 异常表 (最后一次收集) + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 班次开始时间 + + + + + 当日停机次数 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) (QC项) + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警内容 + + + + + QC结果数量 + + + + + 异常表 履历表 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 寄存器地址(发生异常) + + + + + QC结果数量 + + + + + 异常表 基础数据 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 报警类型 1:ON报警停机 2:ON报警不停机 + + + + + 寄存器地址 + + + + + 报警内容 + + + + + 产品型号 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 设备ID + + + + + 型号 + + + + + 型号名称 + + + + + 公用 + + + + + id + + + + + 创建时间 + + + + + 修改时间 + + + + + 收集唯一ID + + + + + 设备id + + + + + 产品型号 + + + + + 产品名称(带型号) + + + + + 生产速度 + + + + + 总生产数量 + + + + + 当日生产数量 + + + + + 当日合格品数量 + + + + + 当日不良品数量 + + + + + 当日合格率 + + + + + 当日开机总时间(单位:秒) + + + + + 当日负荷时间(单位:秒) + + + + + 当日停机时间(单位:秒) + + + + + 当日开机效率 + + + + + 当日停机次数 + + + + + 设备状态 0:关机;1:开机;2:待机 + + + + + 设备异常标记 + + + + + 设备报警标记 + + + + + OEE + + + + + 创建日期 + + + + + 更新人 + + + + + 更新日期 + + + + + 所属部门 + + + + + 生成工单 + + + + + 内码 + + + + + 单据编号 + + + + + 单据类型 + + + + + 单据时间 + + + + + 单据状态 + + + + + 产品类型 + + + + + 入库编号 + + + + + 物料编码 + + + + + 产品编码 + + + + + 产品名称 + + + + + 产品规格 + + + + + 生产车间 + + + + + 单位 + + + + + 计划生产数量 + + + + + 合格品数量 + + + + + 不良品数量 + + + + + 生产状态 + + + + + 计划开始时间 + + + + + 计划完成时间 + + + + + 开工时间 + + + + + 完工时间 + + + + + 销售出库单 + + + + + 内码 + + + + + 单据时间 + + + + + 预定销售 + + + + + 实际出库 + + + + + 区域名 + + + + + 区域控制器名 + + + + + Action名称 + + + + + IP地址 + + + + + 描述 + + + + + 登录时间 + + + + + 登录名称 + + + + + 用户ID + + + + + 定时任务 + + + + + 任务名称 + + + + + 任务分组 + + + + + 任务运行时间表达式 + + + + + 任务所在DLL对应的程序集名称 + + + + + 任务所在类 + + + + + 任务描述 + + + + + 执行次数 + + + + + 开始时间 + + + + + 结束时间 + + + + + 触发器类型(0、simple 1、cron) + + + + + 执行间隔时间, 秒为单位 + + + + + 循环执行次数 + + + + + 是否启动 + + + + + 执行传参 + + + + + 任务内存中的状态 + + + + + 通用返回信息类 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 返回成功 + + 消息 + + + + + 返回成功 + + 消息 + 数据 + + + + + 返回失败 + + 消息 + + + + + 返回失败 + + 消息 + 数据 + + + + + 返回消息 + + 失败/成功 + 消息 + 数据 + + + + + 统一返回数据格式 + + + + + 状态码 + + + + + 操作是否成功 + + + + + 返回信息 + + + + + 返回数据集合 + + + + + 通用分页信息类 + + + + + 当前页标 + + + + + 每页大小 + + + + + 总页数 + + + + + 数据总数 + + + + + 返回数据 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金额(含税) + + + + + 金额 + + + + + 管家婆销售明细 + + + + + 价税合计 + + + + + 折后金额 + + + + + 调度任务触发器信息实体 + + + + + 任务ID + + + + + 任务名称 + + + + + 任务分组 + + + + + 触发器ID + + + + + 触发器名称 + + + + + 触发器分组 + + + + + 触发器状态 + + + + diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/yuhong_plc/zzz.model/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.AssemblyInfo.cs b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.AssemblyInfo.cs new file mode 100644 index 0000000..1dd2f42 --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("cjyx.Model")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("cjyx.Model")] +[assembly: System.Reflection.AssemblyTitleAttribute("cjyx.Model")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.AssemblyInfoInputs.cache b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.AssemblyInfoInputs.cache new file mode 100644 index 0000000..619aa5a --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +d0805692119b3755eaa753c3498b67356b4dd364 diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..24dacd3 --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = cjyx.Model +build_property.ProjectDir = D:\work\长江云息\Src\cjyx\cjyx.model\ diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.csproj.AssemblyReference.cache b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.csproj.AssemblyReference.cache new file mode 100644 index 0000000..204fdef Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..df0ef3b --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +5ace0879caa58c3c1cda58d7cfa8908282e26bd9 diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..49a7e16 --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.csproj.FileListAbsolute.txt @@ -0,0 +1,13 @@ +D:\work\长江云息\Src\cjyx\cjyx.model\bin\Debug\net6.0\cjyx.Model.deps.json +D:\work\长江云息\Src\cjyx\cjyx.model\bin\Debug\net6.0\cjyx.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.model\bin\Debug\net6.0\ref\cjyx.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.model\bin\Debug\net6.0\cjyx.Model.pdb +D:\work\长江云息\Src\cjyx\cjyx.model\obj\Debug\net6.0\cjyx.Model.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\cjyx.model\obj\Debug\net6.0\cjyx.Model.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.model\obj\Debug\net6.0\cjyx.Model.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.model\obj\Debug\net6.0\cjyx.Model.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.model\obj\Debug\net6.0\cjyx.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.model\obj\Debug\net6.0\ref\cjyx.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.model\obj\Debug\net6.0\cjyx.Model.pdb +D:\work\长江云息\Src\cjyx\cjyx.model\bin\Debug\net6.0\cjyx.Model.xml +D:\work\长江云息\Src\cjyx\cjyx.model\obj\Debug\net6.0\cjyx.Model.csproj.AssemblyReference.cache diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.dll b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.dll new file mode 100644 index 0000000..0c5d675 Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.dll differ diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.pdb b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.pdb new file mode 100644 index 0000000..1747c5c Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.Model.pdb differ diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.model.GlobalUsings.g.cs b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.model.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.model.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.model.assets.cache b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.model.assets.cache new file mode 100644 index 0000000..e4fa9a5 Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Debug/net6.0/cjyx.model.assets.cache differ diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/ref/cjyx.Model.dll b/yuhong_plc/zzz.model/obj/Debug/net6.0/ref/cjyx.Model.dll new file mode 100644 index 0000000..c21a1a0 Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Debug/net6.0/ref/cjyx.Model.dll differ diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/ref/zzz.Model.dll b/yuhong_plc/zzz.model/obj/Debug/net6.0/ref/zzz.Model.dll new file mode 100644 index 0000000..15068b0 Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Debug/net6.0/ref/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/refint/zzz.Model.dll b/yuhong_plc/zzz.model/obj/Debug/net6.0/refint/zzz.Model.dll new file mode 100644 index 0000000..15068b0 Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Debug/net6.0/refint/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.AssemblyInfo.cs b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.AssemblyInfo.cs new file mode 100644 index 0000000..ac9233a --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("zzz.Model")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("zzz.Model")] +[assembly: System.Reflection.AssemblyTitleAttribute("zzz.Model")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.AssemblyInfoInputs.cache b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.AssemblyInfoInputs.cache new file mode 100644 index 0000000..a10a6ef --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +fbfa92d263027b32cca87c14341c0eea839a135c diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..8af42ed --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = zzz.Model +build_property.ProjectDir = F:\yuhong_plc\zzz.model\ diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.GlobalUsings.g.cs b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.assets.cache b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.assets.cache new file mode 100644 index 0000000..e09c47d Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.assets.cache differ diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.csproj.AssemblyReference.cache b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.csproj.AssemblyReference.cache new file mode 100644 index 0000000..8f643f4 Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..7fa33f9 --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +b4b830a417b5c9eedcaf7ec561b522a5fbec6e0f diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..aa1d042 --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.csproj.FileListAbsolute.txt @@ -0,0 +1,77 @@ +D:\work\长江云息\Src\cjyx\cjyx.model\bin\Debug\net6.0\zzz.Model.deps.json +D:\work\长江云息\Src\cjyx\cjyx.model\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.model\bin\Debug\net6.0\ref\zzz.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.model\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\Src\cjyx\cjyx.model\bin\Debug\net6.0\cjyx.Model.xml +D:\work\长江云息\Src\cjyx\cjyx.model\obj\Debug\net6.0\zzz.Model.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\cjyx.model\obj\Debug\net6.0\zzz.Model.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.model\obj\Debug\net6.0\zzz.Model.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\cjyx.model\obj\Debug\net6.0\zzz.Model.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\cjyx.model\obj\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.model\obj\Debug\net6.0\ref\zzz.Model.dll +D:\work\长江云息\Src\cjyx\cjyx.model\obj\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\Src\cjyx\zzz.model\bin\Debug\net6.0\zzz.Model.deps.json +D:\work\长江云息\Src\cjyx\zzz.model\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\Src\cjyx\zzz.model\bin\Debug\net6.0\ref\zzz.Model.dll +D:\work\长江云息\Src\cjyx\zzz.model\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\Src\cjyx\zzz.model\obj\Debug\net6.0\zzz.Model.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\Src\cjyx\zzz.model\obj\Debug\net6.0\zzz.Model.AssemblyInfoInputs.cache +D:\work\长江云息\Src\cjyx\zzz.model\obj\Debug\net6.0\zzz.Model.AssemblyInfo.cs +D:\work\长江云息\Src\cjyx\zzz.model\obj\Debug\net6.0\zzz.Model.csproj.CoreCompileInputs.cache +D:\work\长江云息\Src\cjyx\zzz.model\obj\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\Src\cjyx\zzz.model\obj\Debug\net6.0\ref\zzz.Model.dll +D:\work\长江云息\Src\cjyx\zzz.model\obj\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\Src\cjyx\zzz.model\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\Src\cjyx\zzz.model\obj\Debug\net6.0\zzz.Model.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.model\bin\Debug\net6.0\zzz.Model.deps.json +D:\work\长江云息\余宏企业\Src\cjyx\zzz.model\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.model\bin\Debug\net6.0\ref\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.model\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.model\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\cjyx\zzz.model\obj\Debug\net6.0\zzz.Model.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\cjyx\zzz.model\obj\Debug\net6.0\zzz.Model.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.model\obj\Debug\net6.0\zzz.Model.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\cjyx\zzz.model\obj\Debug\net6.0\zzz.Model.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\cjyx\zzz.model\obj\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.model\obj\Debug\net6.0\ref\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\cjyx\zzz.model\obj\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\cjyx\zzz.model\obj\Debug\net6.0\zzz.Model.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Debug\net6.0\zzz.Model.deps.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Debug\net6.0\ref\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Debug\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\zzz.Model.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\zzz.Model.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\zzz.Model.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\zzz.Model.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\ref\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\zzz.Model.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Debug\net6.0\zzz.Model.deps.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Debug\net6.0\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Debug\net6.0\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Debug\net6.0\zzz.Model.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\zzz.Model.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\zzz.Model.GeneratedMSBuildEditorConfig.editorconfig +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\zzz.Model.AssemblyInfoInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\zzz.Model.AssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\zzz.Model.csproj.CoreCompileInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\refint\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Debug\net6.0\ref\zzz.Model.dll +F:\yuhong_plc\zzz.model\bin\Debug\net6.0\zzz.Model.deps.json +F:\yuhong_plc\zzz.model\bin\Debug\net6.0\zzz.Model.dll +F:\yuhong_plc\zzz.model\bin\Debug\net6.0\zzz.Model.pdb +F:\yuhong_plc\zzz.model\bin\Debug\net6.0\zzz.Model.xml +F:\yuhong_plc\zzz.model\obj\Debug\net6.0\zzz.Model.csproj.AssemblyReference.cache +F:\yuhong_plc\zzz.model\obj\Debug\net6.0\zzz.Model.GeneratedMSBuildEditorConfig.editorconfig +F:\yuhong_plc\zzz.model\obj\Debug\net6.0\zzz.Model.AssemblyInfoInputs.cache +F:\yuhong_plc\zzz.model\obj\Debug\net6.0\zzz.Model.AssemblyInfo.cs +F:\yuhong_plc\zzz.model\obj\Debug\net6.0\zzz.Model.csproj.CoreCompileInputs.cache +F:\yuhong_plc\zzz.model\obj\Debug\net6.0\zzz.Model.dll +F:\yuhong_plc\zzz.model\obj\Debug\net6.0\refint\zzz.Model.dll +F:\yuhong_plc\zzz.model\obj\Debug\net6.0\zzz.Model.pdb +F:\yuhong_plc\zzz.model\obj\Debug\net6.0\ref\zzz.Model.dll diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.dll b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.dll new file mode 100644 index 0000000..98ddff2 Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.pdb b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.pdb new file mode 100644 index 0000000..ee6d136 Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Debug/net6.0/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.model/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/yuhong_plc/zzz.model/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/yuhong_plc/zzz.model/obj/Release/net6.0/ref/zzz.Model.dll b/yuhong_plc/zzz.model/obj/Release/net6.0/ref/zzz.Model.dll new file mode 100644 index 0000000..e9917f9 Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Release/net6.0/ref/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.model/obj/Release/net6.0/refint/zzz.Model.dll b/yuhong_plc/zzz.model/obj/Release/net6.0/refint/zzz.Model.dll new file mode 100644 index 0000000..e9917f9 Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Release/net6.0/refint/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.AssemblyInfo.cs b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.AssemblyInfo.cs new file mode 100644 index 0000000..a177d60 --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("zzz.Model")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("zzz.Model")] +[assembly: System.Reflection.AssemblyTitleAttribute("zzz.Model")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.AssemblyInfoInputs.cache b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.AssemblyInfoInputs.cache new file mode 100644 index 0000000..aa92b60 --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +1ab89163ef720ef9d9f3785eeb981ff2c45458d8 diff --git a/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.GeneratedMSBuildEditorConfig.editorconfig b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..8af42ed --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = zzz.Model +build_property.ProjectDir = F:\yuhong_plc\zzz.model\ diff --git a/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.GlobalUsings.g.cs b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.assets.cache b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.assets.cache new file mode 100644 index 0000000..f9d1ee2 Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.assets.cache differ diff --git a/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.csproj.AssemblyReference.cache b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.csproj.AssemblyReference.cache new file mode 100644 index 0000000..ab5de61 Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.csproj.AssemblyReference.cache differ diff --git a/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.csproj.BuildWithSkipAnalyzers b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.csproj.CoreCompileInputs.cache b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..546a505 --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +18881abe8d9b14f327c3eab00942f5af21ae2b0a diff --git a/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.csproj.FileListAbsolute.txt b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..a81e067 --- /dev/null +++ b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.csproj.FileListAbsolute.txt @@ -0,0 +1,39 @@ +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Release\net6.0\zzz.Model.deps.json +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Release\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Release\net6.0\ref\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Release\net6.0\zzz.Model.pdb +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Release\net6.0\zzz.Model.xml +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\zzz.Model.csproj.AssemblyReference.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\zzz.Model.GeneratedMSBuildEditorConfig.editorconfig +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\zzz.Model.AssemblyInfoInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\zzz.Model.AssemblyInfo.cs +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\zzz.Model.csproj.CoreCompileInputs.cache +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\ref\zzz.Model.dll +D:\work\长江云息\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Release\net6.0\zzz.Model.deps.json +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Release\net6.0\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Release\net6.0\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\bin\Release\net6.0\zzz.Model.xml +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\zzz.Model.csproj.AssemblyReference.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\zzz.Model.GeneratedMSBuildEditorConfig.editorconfig +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\zzz.Model.AssemblyInfoInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\zzz.Model.AssemblyInfo.cs +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\zzz.Model.csproj.CoreCompileInputs.cache +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\refint\zzz.Model.dll +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\zzz.Model.pdb +D:\pan\交接\余宏企业\Src\YuhongPlcRead\zzz.model\obj\Release\net6.0\ref\zzz.Model.dll +F:\yuhong_plc\zzz.model\bin\Release\net6.0\zzz.Model.deps.json +F:\yuhong_plc\zzz.model\bin\Release\net6.0\zzz.Model.dll +F:\yuhong_plc\zzz.model\bin\Release\net6.0\zzz.Model.pdb +F:\yuhong_plc\zzz.model\bin\Release\net6.0\zzz.Model.xml +F:\yuhong_plc\zzz.model\obj\Release\net6.0\zzz.Model.csproj.AssemblyReference.cache +F:\yuhong_plc\zzz.model\obj\Release\net6.0\zzz.Model.GeneratedMSBuildEditorConfig.editorconfig +F:\yuhong_plc\zzz.model\obj\Release\net6.0\zzz.Model.AssemblyInfoInputs.cache +F:\yuhong_plc\zzz.model\obj\Release\net6.0\zzz.Model.AssemblyInfo.cs +F:\yuhong_plc\zzz.model\obj\Release\net6.0\zzz.Model.csproj.CoreCompileInputs.cache +F:\yuhong_plc\zzz.model\obj\Release\net6.0\zzz.Model.dll +F:\yuhong_plc\zzz.model\obj\Release\net6.0\refint\zzz.Model.dll +F:\yuhong_plc\zzz.model\obj\Release\net6.0\zzz.Model.pdb +F:\yuhong_plc\zzz.model\obj\Release\net6.0\ref\zzz.Model.dll diff --git a/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.dll b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.dll new file mode 100644 index 0000000..9fb27f0 Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.dll differ diff --git a/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.pdb b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.pdb new file mode 100644 index 0000000..2d4df51 Binary files /dev/null and b/yuhong_plc/zzz.model/obj/Release/net6.0/zzz.Model.pdb differ diff --git a/yuhong_plc/zzz.model/obj/cjyx.Model.csproj.nuget.dgspec.json b/yuhong_plc/zzz.model/obj/cjyx.Model.csproj.nuget.dgspec.json new file mode 100644 index 0000000..585518b --- /dev/null +++ b/yuhong_plc/zzz.model/obj/cjyx.Model.csproj.nuget.dgspec.json @@ -0,0 +1,80 @@ +{ + "format": 1, + "restore": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj": {} + }, + "projects": { + "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj", + "projectName": "cjyx.Model", + "projectPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\cjyx.Model.csproj", + "packagesPath": "C:\\Users\\BLACK\\.nuget\\packages\\", + "outputPath": "D:\\work\\长江云息\\Src\\cjyx\\cjyx.model\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\BLACK\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.0.0, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.0.8, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.model/obj/cjyx.Model.csproj.nuget.g.props b/yuhong_plc/zzz.model/obj/cjyx.Model.csproj.nuget.g.props new file mode 100644 index 0000000..98db3ee --- /dev/null +++ b/yuhong_plc/zzz.model/obj/cjyx.Model.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\BLACK\.nuget\packages\;D:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.0.0 + + + + + + + C:\Users\BLACK\.nuget\packages\newtonsoft.json\10.0.3 + + \ No newline at end of file diff --git a/yuhong_plc/zzz.model/obj/cjyx.model.csproj.nuget.g.targets b/yuhong_plc/zzz.model/obj/cjyx.model.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/yuhong_plc/zzz.model/obj/cjyx.model.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/yuhong_plc/zzz.model/obj/project.assets.json b/yuhong_plc/zzz.model/obj/project.assets.json new file mode 100644 index 0000000..9ecf51f --- /dev/null +++ b/yuhong_plc/zzz.model/obj/project.assets.json @@ -0,0 +1,7263 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "AutoMapper/11.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0" + }, + "compile": { + "lib/netstandard2.1/AutoMapper.dll": {} + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.dll": {} + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "type": "package", + "dependencies": { + "AutoMapper": "11.0.0", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} + } + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + } + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "compile": { + "lib/net5.0/Google.Protobuf.dll": {} + }, + "runtime": { + "lib/net5.0/Google.Protobuf.dll": {} + } + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": {} + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": {} + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "compile": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {} + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {} + } + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": {} + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/2.1.1": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Data.Sqlite/5.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MySql.Data/8.0.29": { + "type": "package", + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.4.1", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.4.0" + }, + "compile": { + "lib/net6.0/MySql.Data.dll": {}, + "lib/net6.0/Ubiety.Dns.Core.dll": {}, + "lib/net6.0/ZstdNet.dll": {} + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": {}, + "lib/net6.0/Ubiety.Dns.Core.dll": {}, + "lib/net6.0/ZstdNet.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/10.0.3": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.3.0", + "NETStandard.Library": "1.6.1", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Runtime.Serialization.Formatters": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Newtonsoft.Json.dll": {} + } + }, + "Npgsql/5.0.7": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "4.6.0" + }, + "compile": { + "lib/net5.0/Npgsql.dll": {} + }, + "runtime": { + "lib/net5.0/Npgsql.dll": {} + } + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.PerformanceCounter": "4.7.0", + "System.DirectoryServices": "4.7.0", + "System.DirectoryServices.Protocols": "4.7.0", + "System.Text.Json": "4.7.1" + }, + "compile": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "compile": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} + } + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "alpine-x64" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + } + }, + "SqlSugarCore/5.0.8": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.1", + "Microsoft.Data.Sqlite": "5.0.5", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "10.0.3", + "Npgsql": "5.0.7", + "Oracle.ManagedDataAccess.Core": "3.21.1", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "compile": { + "lib/netstandard2.1/SqlSugar.dll": {} + }, + "runtime": { + "lib/netstandard2.1/SqlSugar.dll": {} + } + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/DmProvider.dll": {} + }, + "runtime": { + "lib/netstandard2.0/DmProvider.dll": {} + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Kdbndp.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Data.Common/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Data.Common.dll": {} + }, + "runtime": { + "lib/netstandard1.2/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "type": "package", + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "System.DirectoryServices/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO.FileSystem.AccessControl": "4.7.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.DirectoryServices.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} + }, + "runtime": { + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Json/4.7.1": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + } + } + }, + "libraries": { + "AutoMapper/11.0.1": { + "sha512": "WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", + "type": "package", + "path": "automapper/11.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.11.0.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/netstandard2.1/AutoMapper.dll", + "lib/netstandard2.1/AutoMapper.xml" + ] + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { + "sha512": "0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", + "type": "package", + "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", + "automapper.extensions.microsoft.dependencyinjection.nuspec", + "icon.png", + "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll" + ] + }, + "BouncyCastle.NetCore/1.8.5": { + "sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "type": "package", + "path": "bouncycastle.netcore/1.8.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bouncycastle.netcore.1.8.5.nupkg.sha512", + "bouncycastle.netcore.nuspec", + "lib/Mono/BouncyCastle.Crypto.dll", + "lib/Mono/BouncyCastle.Crypto.xml", + "lib/MonoAndroid/BouncyCastle.Crypto.dll", + "lib/MonoAndroid/BouncyCastle.Crypto.xml", + "lib/MonoMac/BouncyCastle.Crypto.dll", + "lib/MonoMac/BouncyCastle.Crypto.xml", + "lib/MonoTouch/BouncyCastle.Crypto.dll", + "lib/MonoTouch/BouncyCastle.Crypto.xml", + "lib/net20/BouncyCastle.Crypto.dll", + "lib/net20/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "lib/xamarinios/BouncyCastle.Crypto.dll", + "lib/xamarinios/BouncyCastle.Crypto.xml" + ] + }, + "Google.Protobuf/3.19.4": { + "sha512": "fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "type": "package", + "path": "google.protobuf/3.19.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "google.protobuf.3.19.4.nupkg.sha512", + "google.protobuf.nuspec", + "lib/net45/Google.Protobuf.dll", + "lib/net45/Google.Protobuf.pdb", + "lib/net45/Google.Protobuf.xml", + "lib/net5.0/Google.Protobuf.dll", + "lib/net5.0/Google.Protobuf.pdb", + "lib/net5.0/Google.Protobuf.xml", + "lib/netstandard1.1/Google.Protobuf.dll", + "lib/netstandard1.1/Google.Protobuf.pdb", + "lib/netstandard1.1/Google.Protobuf.xml", + "lib/netstandard2.0/Google.Protobuf.dll", + "lib/netstandard2.0/Google.Protobuf.pdb", + "lib/netstandard2.0/Google.Protobuf.xml" + ] + }, + "K4os.Compression.LZ4/1.2.6": { + "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "type": "package", + "path": "k4os.compression.lz4/1.2.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.1.2.6.nupkg.sha512", + "k4os.compression.lz4.nuspec", + "lib/net45/K4os.Compression.LZ4.dll", + "lib/net45/K4os.Compression.LZ4.xml", + "lib/net46/K4os.Compression.LZ4.dll", + "lib/net46/K4os.Compression.LZ4.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.xml" + ] + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "type": "package", + "path": "k4os.compression.lz4.streams/1.2.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.streams.1.2.6.nupkg.sha512", + "k4os.compression.lz4.streams.nuspec", + "lib/net45/K4os.Compression.LZ4.Streams.dll", + "lib/net45/K4os.Compression.LZ4.Streams.xml", + "lib/net46/K4os.Compression.LZ4.Streams.dll", + "lib/net46/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml" + ] + }, + "K4os.Hash.xxHash/1.0.6": { + "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "type": "package", + "path": "k4os.hash.xxhash/1.0.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.hash.xxhash.1.0.6.nupkg.sha512", + "k4os.hash.xxhash.nuspec", + "lib/net45/K4os.Hash.xxHash.dll", + "lib/net45/K4os.Hash.xxHash.xml", + "lib/net46/K4os.Hash.xxHash.dll", + "lib/net46/K4os.Hash.xxHash.xml", + "lib/netstandard1.6/K4os.Hash.xxHash.dll", + "lib/netstandard1.6/K4os.Hash.xxHash.xml", + "lib/netstandard2.0/K4os.Hash.xxHash.dll", + "lib/netstandard2.0/K4os.Hash.xxHash.xml" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/2.1.1": { + "sha512": "qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==", + "type": "package", + "path": "microsoft.data.sqlclient/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.Data.SqlClient.dll", + "lib/net46/Microsoft.Data.SqlClient.pdb", + "lib/net46/Microsoft.Data.SqlClient.xml", + "lib/net46/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "microsoft.data.sqlclient.2.1.1.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net46/Microsoft.Data.SqlClient.dll", + "ref/net46/Microsoft.Data.SqlClient.pdb", + "ref/net46/Microsoft.Data.SqlClient.xml", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.Data.Sqlite/5.0.5": { + "sha512": "zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==", + "type": "package", + "path": "microsoft.data.sqlite/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/_._", + "microsoft.data.sqlite.5.0.5.nupkg.sha512", + "microsoft.data.sqlite.nuspec" + ] + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "sha512": "tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "type": "package", + "path": "microsoft.data.sqlite.core/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.5.0.5.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "type": "package", + "path": "microsoft.extensions.options/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.21.1": { + "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "type": "package", + "path": "microsoft.identity.client/4.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid10.0/Microsoft.Identity.Client.dll", + "lib/monoandroid10.0/Microsoft.Identity.Client.xml", + "lib/monoandroid90/Microsoft.Identity.Client.dll", + "lib/monoandroid90/Microsoft.Identity.Client.xml", + "lib/net45/Microsoft.Identity.Client.dll", + "lib/net45/Microsoft.Identity.Client.xml", + "lib/net461/Microsoft.Identity.Client.dll", + "lib/net461/Microsoft.Identity.Client.xml", + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll", + "lib/netcoreapp2.1/Microsoft.Identity.Client.xml", + "lib/netstandard1.3/Microsoft.Identity.Client.dll", + "lib/netstandard1.3/Microsoft.Identity.Client.xml", + "lib/uap10.0/Microsoft.Identity.Client.dll", + "lib/uap10.0/Microsoft.Identity.Client.pri", + "lib/uap10.0/Microsoft.Identity.Client.xml", + "lib/xamarinios10/Microsoft.Identity.Client.dll", + "lib/xamarinios10/Microsoft.Identity.Client.xml", + "lib/xamarinmac20/Microsoft.Identity.Client.dll", + "lib/xamarinmac20/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.21.1.nupkg.sha512", + "microsoft.identity.client.nuspec", + "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll", + "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml", + "ref/net45/Microsoft.Identity.Client.dll", + "ref/net45/Microsoft.Identity.Client.xml", + "ref/net461/Microsoft.Identity.Client.dll", + "ref/net461/Microsoft.Identity.Client.xml", + "ref/netcoreapp2.1/Microsoft.Identity.Client.dll", + "ref/netcoreapp2.1/Microsoft.Identity.Client.xml", + "ref/netstandard1.3/Microsoft.Identity.Client.dll", + "ref/netstandard1.3/Microsoft.Identity.Client.xml", + "ref/uap10.0/Microsoft.Identity.Client.dll", + "ref/uap10.0/Microsoft.Identity.Client.xml", + "ref/xamarinmac20/Microsoft.Identity.Client.dll", + "ref/xamarinmac20/Microsoft.Identity.Client.xml" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "sha512": "+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "sha512": "Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "sha512": "OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "sha512": "X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "sha512": "gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "1X5iRISzv60YYPWJvkeeUSdMAPHun7jO6deHp+zwIU/VjwVIv4NoGKuMT6wkIPSG0+9Iq8TnL+qkmqDsWYPg1A==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "2FpFllO0wFJmfIXY9NXr33jWgr88b7E4gAuPHSNYzNr5o2XIouynxAoLA+SShuDI2ySSsvnBHURiXRX7tz59YA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "type": "package", + "path": "microsoft.win32.systemevents/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/net472/Microsoft.Win32.SystemEvents.dll", + "ref/net472/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MySql.Data/8.0.29": { + "sha512": "3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "type": "package", + "path": "mysql.data/8.0.29", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/MySql.Data.dll", + "lib/net452/MySql.Data.xml", + "lib/net452/Ubiety.Dns.Core.dll", + "lib/net452/ZstdNet.dll", + "lib/net48/MySql.Data.dll", + "lib/net48/MySql.Data.xml", + "lib/net48/Ubiety.Dns.Core.dll", + "lib/net48/ZstdNet.dll", + "lib/net5.0/MySql.Data.dll", + "lib/net5.0/MySql.Data.xml", + "lib/net5.0/Ubiety.Dns.Core.dll", + "lib/net5.0/ZstdNet.dll", + "lib/net6.0/MySql.Data.dll", + "lib/net6.0/MySql.Data.xml", + "lib/net6.0/Ubiety.Dns.Core.dll", + "lib/net6.0/ZstdNet.dll", + "lib/netstandard2.0/MySql.Data.dll", + "lib/netstandard2.0/MySql.Data.xml", + "lib/netstandard2.0/Ubiety.Dns.Core.dll", + "lib/netstandard2.0/ZstdNet.dll", + "lib/netstandard2.1/MySql.Data.dll", + "lib/netstandard2.1/MySql.Data.xml", + "lib/netstandard2.1/Ubiety.Dns.Core.dll", + "lib/netstandard2.1/ZstdNet.dll", + "mysql.data.8.0.29.nupkg.sha512", + "mysql.data.nuspec" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "/6XtTu0ZHzge7tzZZN8UXpwG1K0Vgxi7C7R0QiTgxMtN4gkzNl4xNVUI4X3tymMwKWUdwqXvzkrJqt3MdMFXig==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/10.0.3": { + "sha512": "hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==", + "type": "package", + "path": "newtonsoft.json/10.0.3", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.10.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "tools/install.ps1" + ] + }, + "Npgsql/5.0.7": { + "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", + "type": "package", + "path": "npgsql/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Npgsql.dll", + "lib/net5.0/Npgsql.xml", + "lib/netcoreapp3.1/Npgsql.dll", + "lib/netcoreapp3.1/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.5.0.7.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Oracle.ManagedDataAccess.Core/3.21.1": { + "sha512": "SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==", + "type": "package", + "path": "oracle.manageddataaccess.core/3.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PerfCounters/register_odpc_perfmon_counters.ps1", + "PerfCounters/unregister_odpc_perfmon_counters.ps1", + "info.txt", + "lib/netstandard2.1/Oracle.ManagedDataAccess.dll", + "oracle.manageddataaccess.core.3.21.1.nupkg.sha512", + "oracle.manageddataaccess.core.nuspec", + "readme.txt" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "kuvqViO3OnqjWcNSQfanREtHgqJx6UK5UHPeIl7M666izpBErP4TDZctWnYvuz7l/hpWPkS3DsUAUPAyVS/zBA==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "QnpBRH8jHD/TtGA5fjrdK/BRf+Oslt/M/X+r487ByPS2q+EZUNwEiaoPUuZcqFcLwqAY2Fw7SciCHTPiK2GTqg==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "i/u0Svwgj6JM9SpaoJAqTiMU3B0UZEUC35JadEBgkihBi+RzyRe2VlGwhZ6B63r78CmzZ/VAYNXvLAnoIaRG/A==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "qOKLiiK96F+8pPB+ALL20VFsTDBolLfysxlBZDGlFXDEBEZfdfm4OYuInLtxYHCUSxpJpPivIYm9jasMzfgzEQ==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "KSKGjRiQWUHf2zpiRD3+q8lzjL89HhiR74cevVqShwVHtDEHjAhDU75w6mPdeFg9QSyqI32Ud3Qskr5WHNCw+g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "sha512": "f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.nativelibrary.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.0.4": { + "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "type": "package", + "path": "sqlitepclraw.core/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.0.4.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/alpine-x64/native/libe_sqlite3.so", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "type": "package", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll", + "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "sqlitepclraw.provider.dynamic_cdecl.nuspec" + ] + }, + "SqlSugarCore/5.0.8": { + "sha512": "20vhEccpcqvwxky/5IE5L6lS+endfU3BsS1oZ3HKb6PMkWQxYAg2Dorus4QPb+rg8sUue8NkJ9G0mvWUzfK69Q==", + "type": "package", + "path": "sqlsugarcore/5.0.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.1/SqlSugar.dll", + "sqlsugarcore.5.0.8.nupkg.sha512", + "sqlsugarcore.nuspec" + ] + }, + "SqlSugarCore.Dm/1.0.0": { + "sha512": "TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "type": "package", + "path": "sqlsugarcore.dm/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/DmProvider.dll", + "sqlsugarcore.dm.1.0.0.nupkg.sha512", + "sqlsugarcore.dm.nuspec" + ] + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "sha512": "xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "type": "package", + "path": "sqlsugarcore.kdbndp/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Kdbndp.dll", + "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512", + "sqlsugarcore.kdbndp.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "wvyiJIm0HlaoN+AlJXhTpDrhYkN28OC/nEun5QpbPkZvbpgWSYvZ8Hr9/G4Bd1I0WSmFW18KQuE5DOA05Uubrw==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.5.1": { + "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "type": "package", + "path": "system.buffers/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Buffers.dll", + "lib/net461/System.Buffers.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.1.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "Nejf29OZKv5R7h/sJgznlWU+3F+G8fmsfmpEQZ6OeCM5I1gO+AgK/crEbCu19MYRofQHUGqW+l2trhFzlVtdow==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "wAdmaCgCSe298gCNvAf6vlVPfQUR7h43Qr2tTtJFYeto/OvttRLyG4ch6/R2FpuWRMfxHBsAeHYrzjvEk1UM+Q==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "LE/oChpRvkSi3U25u0KnJcI44JeDZ1QJCyN4qFDx2uusEypdqR24w7lKYw21eYe5esuCBuc862wRmpF63Yy1KQ==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "sRo7MpbD5VnFdLZA/uVuR5YJdDV4i+DyJTpQ1rk92wCzLE4cXJ+q7tzGr2HwkL/ujeFNcPo/fOs7LKdDyeyupA==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "type": "package", + "path": "system.configuration.configurationmanager/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "wJLrK/MQdlF3TmfNouxSsgtCRhsgx4tz2KdY/mpvirOcgMc2W4DDK7vR6RcSc6XRV4P6rzrLFXd9wUzp/iWp0g==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Data.Common/4.3.0": { + "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "type": "package", + "path": "system.data.common/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.Common.dll", + "lib/netstandard1.2/System.Data.Common.dll", + "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.dll", + "ref/netstandard1.2/System.Data.Common.xml", + "ref/netstandard1.2/de/System.Data.Common.xml", + "ref/netstandard1.2/es/System.Data.Common.xml", + "ref/netstandard1.2/fr/System.Data.Common.xml", + "ref/netstandard1.2/it/System.Data.Common.xml", + "ref/netstandard1.2/ja/System.Data.Common.xml", + "ref/netstandard1.2/ko/System.Data.Common.xml", + "ref/netstandard1.2/ru/System.Data.Common.xml", + "ref/netstandard1.2/zh-hans/System.Data.Common.xml", + "ref/netstandard1.2/zh-hant/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", + "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml", + "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.data.common.4.3.0.nupkg.sha512", + "system.data.common.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "aX7O7aytoclkwEvOv4vCDBP2hDVsrAbQVAOJXUka7qCXbbZcqtv8CKrX646dSERl9aO/tY0/g2ezsa4jBAMQOg==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "sha512": "oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/4.7.0": { + "sha512": "kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==", + "type": "package", + "path": "system.diagnostics.performancecounter/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Diagnostics.PerformanceCounter.dll", + "ref/net461/System.Diagnostics.PerformanceCounter.xml", + "ref/net472/System.Diagnostics.PerformanceCounter.dll", + "ref/net472/System.Diagnostics.PerformanceCounter.xml", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.4.7.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "6jD8gKBZvTfp1PEuqAkpMZvG9hF+gzGIvhvRh0K2qDApsiEpRZ9ZUlWE2nACpPdWP8w3DaL0TQAHuA7gXDSupA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "ChcZW/eQtXpPDW7qMqlqK7xGW4A8hhz7/iY4J5hsvhzPsza7Cml+hdBhm5vAh6KhHcXzMvjfLcbChmZsYPlJsA==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.DirectoryServices/4.7.0": { + "sha512": "NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==", + "type": "package", + "path": "system.directoryservices/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.DirectoryServices.dll", + "ref/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml", + "system.directoryservices.4.7.0.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.DirectoryServices.Protocols/4.7.0": { + "sha512": "yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==", + "type": "package", + "path": "system.directoryservices.protocols/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.DirectoryServices.Protocols.dll", + "ref/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.4.7.0.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/4.7.0": { + "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "type": "package", + "path": "system.drawing.common/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.4.7.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "TaJDX748favWklVpxAlfmQjpvnT/7V1ynJ5o1QEGSfAFo4r8p/MAP/rPBCPHCjAESNfcayopNKgqHP7L3lBhiQ==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "ttt2PGgBfejL4xBEdMMd2E+Mqn/wC47jhMBtqRNJeH6uYa2j3fTDi1Jj1hAY5sfgbJcrvfSO46G1pufONMmfmA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "kzMaA/htO8n7p5FQvyVXA9Q66+LntW+m0vp+Vnl5gSWsc6btlIYIC3aXs3DvtvdV0ue1tX/Mslkiei1vLgh3WA==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "sha512": "5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "faSXOdt6iLi3OfkpDs4mYY3NOSPuWFAlNKIGCnQAng2GNdH3e9aH1vlR9VrCvZpckjXyk6QhsOCBH0f4Os8rEg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "Yn4CfuDOHBxI0b6JNSQJGqCIsuEqcjxQIAxktq316Jhz9Q0aRKqqGN7QNwd5fyNqz7mNMXfKDt1bJrtggkt8/g==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "kRj3owqKUOxPcvQpK0VItuLGg/aXPjUxzT5ujrfMW0RrAQ7FJYB+mFiCawtGQVQatVCKr78TX39cJueK9ic8wA==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "1d5+nGi+bWLgg0/wPO1IKJGSIe8Gy+WsMoT11T472mWHryC/qCISRl/v9w4rmk+72uX/1DFgBjBljUXyAK4jNg==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "sha512": "vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "BnZgb92GKxi/DjV7WbZo2Sm7G8pImuLocQAHIkuFrRExeBMyjX0sIRY039HbnBObE7t5ihxRP3wYPSJ0Zt/apQ==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "dGfhVR2KQhRwrl0D8yb8gJLpr2iX4Hnud1oNRwUbafrqskstG2kC3NMNp/t7QRzdb1mlNqc99F2OjXYKyHzdnA==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "MHtkLrHBt/UkTMLaBYgCgrm2WBogOkEjDRlNJSxy18uQWEMN4ymSywGNwNHS8ATNyaGJzddvmdWI/UjLaLyskg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "6sVcH1+qeVKf7xD/7k0ouAA7830LIw7Ltwo4bEl9ExyRVN/YNUhka9CBcd2Pp4Ugn14/cIY/i39bSTMUOmftFw==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "S70uFEyXRAuRBxWsQWyVciioHMGOYxpob7a/TNchHKF9ceQPktdtcdl3/vktvUJU8B5ES7lG1wkglSWXYKHjcA==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "TqRGJ6R6S9VpsXm2GpRy87TFXMxVqtYMrZtQFZHNJadQ1njAlpp0F5PfsWH04UNZWeY9X1jK+Kr8faJREA1kfg==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "ueC+TN4WxHhAE8sHoHam2ElVddEHPjfAD7fPxRydYb/9oQerX//AUWFvvBi/inZ07Ko/8MJgVUUNeD4Nlyb0Fw==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "NwWFhtcA6vEk2JHYhcMSVrZws57Edl8g4vXVFp0P9mbs64veOamAV9nzkYn5IXZ+LqnBG6b3Mg7bMcPVjOEQUQ==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "g8U694iBpUb6F3KJATeSmFzN0mj0dREwe/7AF52DV7F4QBs8l/1+4IBQQ0FxpXg45gv4IuKQUB/MfLEv5l1jZQ==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "g26xb7atlAMqrD65ulW7j3tKginHhpkKFR4913TLBotthyv2tRUBtIvWReSCSPqKFYU6EA7xAnx//y+UdQfhXA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "13ihEbKKWpJYwZpo1kcDv2kW8eCK9twslQXpuqW/ulpHFhB2vuxbCuQgllNLjiSuL3uEKSPz34wC0xRb5hY9OA==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "kucCiwYt5Dzfi2QbUI3B+NABZpZ0NLF6A4SfN3njr7sTr4QrcDphuUJNEFiw9gOXXxSf5hk1r0JkKxOUIpGT6Q==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "lJGsxoZ+9PXn+Qdjc5Nk6yJVqLk8lRR3k3uEGja59sC1EbkzMbVMqPFNOQmYxaO5Fbid8Bm29o+rB/PdDCDXNw==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "UT2VJJvvxRs6YtEzKAD5F5nCLXWUHKnodmDBpPKRuD1Tjkf9U4b/FH7rj045H7Z9S6zrAX6r4qoReX16DxmGNg==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "aHfWh3NaqahTDZhC6QgEsvOWjxPfZCz5YF8ZAAzCuQELsED6jcch4x4pc6iS4D4ua5uMXSzu3CeolJiIvefAqQ==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/4.7.0": { + "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "type": "package", + "path": "system.runtime.caching/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard2.0/System.Runtime.Caching.dll", + "ref/netstandard2.0/System.Runtime.Caching.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", + "system.runtime.caching.4.7.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "1E4BRpql9SAnaF32hqoB1G0kWKBm3W+BhErqTTnUZ0abst6b+ERzIbfNOiZguuYkr25+eVbAZUbs76UEIervyA==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "yhyMfLA28dYAFahmTy+lM6rDrrca84R76fk8J0GH9gdtcZe6NuA7bWhLOCcWOEi74jZOIjtjtRPzkdSv6KlATQ==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "djZnX43T2YuLt526S/mq2pBiHQS8WfAUAg/nOt+oz6MkTo6HKAANCytQEFXmv6jyrumb8ohYe3ht2sEUMi9LMQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "Jw3ielASDELVDT+VPsL6PGRHp50mytxUnVp7UlKZWS3l5cxWAhZIWfTiunuqyy90WKcEIehjHkfpRqyzO5eFmw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "sPdBt8ZxEzxDYhPnWz+eegZMhyYBzea/Oi7AuuqwtyCATswlsMdA3tiw/U/rMP+MvDa4DIhI1inEwEDYArfuJg==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Formatters/4.3.0": { + "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", + "type": "package", + "path": "system.runtime.serialization.formatters/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Runtime.Serialization.Formatters.dll", + "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Runtime.Serialization.Formatters.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "system.runtime.serialization.formatters.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Security.AccessControl/4.7.0": { + "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "type": "package", + "path": "system.security.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.7.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "DG7gpkRnHPaofkkKx5jWKqI9gjcHhDOt3BeCMKRTImnngZvP1jlgYMXYXxY+S8XWyOoyU8KF5Tv0ZrG9FYREvQ==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "xFN3KCCvtAdfdy+AngirK0Tku73Ne9i5NmV995PGnHOn6OvNx5j/f2Aa6FuEoZT1YshMjOlWfEKI8WAjnaxtRg==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Permissions/4.7.0": { + "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "type": "package", + "path": "system.security.permissions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.7.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "/aefptimdy86T2roO363l+2LhOaZBkDNyOTtp4nK+1/uD3K5bwdv6qo3EoW4W1/5ykSasd6AhmjeKCDm41YiQg==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.7.0": { + "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "type": "package", + "path": "system.text.encoding.codepages/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.4.7.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "iwhUBeB6oQ10iH2CRQeLNTHyQX9lxiMNZuC9nMY0IhiQlRaDtcwTVaGWSTShduj0V8o07kOgI53QayLnHt6i0A==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Json/4.7.1": { + "sha512": "XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==", + "type": "package", + "path": "system.text.json/4.7.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/netcoreapp3.0/System.Text.Json.dll", + "lib/netcoreapp3.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.4.7.1.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "Q6kZddMtki+eu7CyKn/jMY7KElnwvq4WfwKiNqcSfZ4+w19hM1SLc+h3cSZOPLe0oJt3JYwhyQMWoYpo2AcyeA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "6hQ2W40ImHD8OSBL8zWYSwdae6iryMpeEThocf8u1m/0LFZUmnRtKyXZtXNNqwkbha/mDcjS+GbbCk+whXz0sA==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "Q8vu/ODgHHYQL4VsJ+Am/JU4f61i9U8toiU1bC+LklvcFcLOTKVweB4j/P+yL4qR0PsT6Y2rGTOHhvLopgUQrw==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "sha512": "aUDiT8Qv4rbc1YwvWhBM76PzeoHLQLook/5PiXhFsBur7cniIsd2K0MhGDZ1M1IN9j7y6HdC7lnk+TS37lJEZA==", + "type": "package", + "path": "system.threading.tasks.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "IKcG64NTLVkZVHawu61/TldF/J/Vb7phwiECTLwB30N7NoUkXs1BquSuCJHyHCLUC0vEmEU0vqnQZY7T21Gc1Q==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Windows.Extensions/4.7.0": { + "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "type": "package", + "path": "system.windows.extensions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.4.7.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "EyRjbRA4pD4dG4O4XEzITKvzLRpauU4LhvS1UhiWUlvk5bUcfhFDMw1obsrvfpfD3zvqJ6PXm6Y4r2tUFf1yCQ==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "MOrSyJ8eyHXyB4xMFN7AIZ5/B9ODYQxmspxxD2r5Zd8Os6hUAmVRUgl6s6Qml/j4nJGcsOHgonpDYmEAeuADMw==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "AutoMapper >= 11.0.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection >= 11.0.0", + "SqlSugarCore >= 5.0.8" + ] + }, + "packageFolders": { + "C:\\Users\\Administrator\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj", + "projectName": "zzz.Model", + "projectPath": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.model\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.0.0, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.0.8, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.model/obj/project.nuget.cache b/yuhong_plc/zzz.model/obj/project.nuget.cache new file mode 100644 index 0000000..784f1c1 --- /dev/null +++ b/yuhong_plc/zzz.model/obj/project.nuget.cache @@ -0,0 +1,142 @@ +{ + "version": 2, + "dgSpecHash": "WpKTHL5LdeJeXCN53GzrwjJ0ktcz6P6UhM+efVHv4ACV0F2jiL+NkEbhg0XhDw1xwA0PMcId3PvXUo1C276WCw==", + "success": true, + "projectFilePath": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Administrator\\.nuget\\packages\\automapper\\11.0.1\\automapper.11.0.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\11.0.0\\automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\bouncycastle.netcore\\1.8.5\\bouncycastle.netcore.1.8.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\google.protobuf\\3.19.4\\google.protobuf.3.19.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4\\1.2.6\\k4os.compression.lz4.1.2.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4.streams\\1.2.6\\k4os.compression.lz4.streams.1.2.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\k4os.hash.xxhash\\1.0.6\\k4os.hash.xxhash.1.0.6.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlclient\\2.1.1\\microsoft.data.sqlclient.2.1.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.1.1\\microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlite\\5.0.5\\microsoft.data.sqlite.5.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlite.core\\5.0.5\\microsoft.data.sqlite.core.5.0.5.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identity.client\\4.21.1\\microsoft.identity.client.4.21.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.8.0\\microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.logging\\6.8.0\\microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.8.0\\microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.8.0\\microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.8.0\\microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\mysql.data\\8.0.29\\mysql.data.8.0.29.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\newtonsoft.json\\10.0.3\\newtonsoft.json.10.0.3.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\npgsql\\5.0.7\\npgsql.5.0.7.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\oracle.manageddataaccess.core\\3.21.1\\oracle.manageddataaccess.core.3.21.1.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.0.4\\sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.core\\2.0.4\\sqlitepclraw.core.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.0.4\\sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.provider.dynamic_cdecl\\2.0.4\\sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore\\5.0.8\\sqlsugarcore.5.0.8.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore.dm\\1.0.0\\sqlsugarcore.dm.1.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore.kdbndp\\1.0.0\\sqlsugarcore.kdbndp.1.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.0\\system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.performancecounter\\4.7.0\\system.diagnostics.performancecounter.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.directoryservices\\4.7.0\\system.directoryservices.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.directoryservices.protocols\\4.7.0\\system.directoryservices.protocols.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.8.0\\system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem.accesscontrol\\4.7.0\\system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.json\\4.7.1\\system.text.json.4.7.1.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/yuhong_plc/zzz.model/obj/zzz.Model.csproj.nuget.dgspec.json b/yuhong_plc/zzz.model/obj/zzz.Model.csproj.nuget.dgspec.json new file mode 100644 index 0000000..aecc152 --- /dev/null +++ b/yuhong_plc/zzz.model/obj/zzz.Model.csproj.nuget.dgspec.json @@ -0,0 +1,79 @@ +{ + "format": 1, + "restore": { + "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj": {} + }, + "projects": { + "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj", + "projectName": "zzz.Model", + "projectPath": "F:\\yuhong_plc\\zzz.model\\zzz.Model.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "F:\\yuhong_plc\\zzz.model\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[11.0.1, )" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.0.0, )" + }, + "SqlSugarCore": { + "target": "Package", + "version": "[5.0.8, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/yuhong_plc/zzz.model/obj/zzz.Model.csproj.nuget.g.props b/yuhong_plc/zzz.model/obj/zzz.Model.csproj.nuget.g.props new file mode 100644 index 0000000..0b8ad1f --- /dev/null +++ b/yuhong_plc/zzz.model/obj/zzz.Model.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Administrator\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.2.1 + + + + + + + C:\Users\Administrator\.nuget\packages\newtonsoft.json\10.0.3 + + \ No newline at end of file diff --git a/yuhong_plc/zzz.model/obj/zzz.Model.csproj.nuget.g.targets b/yuhong_plc/zzz.model/obj/zzz.Model.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/yuhong_plc/zzz.model/obj/zzz.Model.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/yuhong_plc/zzz.model/zzz.Model.csproj b/yuhong_plc/zzz.model/zzz.Model.csproj new file mode 100644 index 0000000..46bea6f --- /dev/null +++ b/yuhong_plc/zzz.model/zzz.Model.csproj @@ -0,0 +1,16 @@ + + + + net6.0 + enable + True + ..\zzz.Api\zzz.Model.xml + + + + + + + + +