@atomicservice/ascf-toolkit 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/.editorconfig +15 -0
  2. package/LICENSE +201 -0
  3. package/README.md +22 -0
  4. package/lib/ascf-compiler/appjson-loader.js +1 -0
  5. package/lib/ascf-compiler/chalk/bundle.cjs.js +1 -0
  6. package/lib/ascf-compiler/common/appjson-validator.js +1 -0
  7. package/lib/ascf-compiler/common/css-runtime-api.js +1 -0
  8. package/lib/ascf-compiler/common/exp-utils.js +1 -0
  9. package/lib/ascf-compiler/common/extjson-validator.js +1 -0
  10. package/lib/ascf-compiler/common/fixComponentName.js +1 -0
  11. package/lib/ascf-compiler/common/hash-sum.js +1 -0
  12. package/lib/ascf-compiler/common/hjs-utils.js +1 -0
  13. package/lib/ascf-compiler/common/hxml-validator.js +1 -0
  14. package/lib/ascf-compiler/common/logUndefined.js +1 -0
  15. package/lib/ascf-compiler/common/packoptions-utils.js +1 -0
  16. package/lib/ascf-compiler/common/utils.js +1 -0
  17. package/lib/ascf-compiler/css-process-loader.js +1 -0
  18. package/lib/ascf-compiler/extract-loader.js +1 -0
  19. package/lib/ascf-compiler/hcss-loader.js +1 -0
  20. package/lib/ascf-compiler/hjs-loader.js +1 -0
  21. package/lib/ascf-compiler/hxml-loader.js +1 -0
  22. package/lib/ascf-compiler/loader-utils.js +1 -0
  23. package/lib/ascf-compiler/path-process-loader.js +1 -0
  24. package/lib/ascf-compiler/plugin/copy-bundle-plugin.js +1 -0
  25. package/lib/ascf-compiler/plugin/html-generator-plugin.js +1 -0
  26. package/lib/ascf-compiler/plugin/i18n-transform-plugin.js +1 -0
  27. package/lib/ascf-compiler/plugin/manifest-generator-plugin.js +1 -0
  28. package/lib/ascf-compiler/plugin/resource-plugin.js +1 -0
  29. package/lib/ascf-compiler/plugin/webpack-target/index.js +1 -0
  30. package/lib/ascf-compiler/plugin/webpack-target/jsonpChunkLoadingRuntimeModule.js +1 -0
  31. package/lib/ascf-compiler/plugin/webpack-target/jsonpHelpers.js +1 -0
  32. package/lib/ascf-compiler/plugin/webpack-target/jsonpTemplatePlugin.js +1 -0
  33. package/lib/ascf-compiler/template/attr-utils.js +1 -0
  34. package/lib/ascf-compiler/template/node-name-utils.js +1 -0
  35. package/lib/ascf-compiler/trustlist-hxml-verify-loader.js +1 -0
  36. package/lib/ascf-compiler/trustlist-js-verify-loader.js +1 -0
  37. package/lib/ascf-compiler/trustlist-verify/config.js +1 -0
  38. package/lib/ascf-compiler/trustlist-verify/utils.js +1 -0
  39. package/lib/ascf-compiler/vue-compiler/vue.bundle.js +1 -0
  40. package/lib/ascf-compiler/web.webpack.config.js +1 -0
  41. package/lib/ascf-converter/common/commonConfig.js +1 -0
  42. package/lib/ascf-converter/common/commonUtils.js +1 -0
  43. package/lib/ascf-converter/common/textDocument.js +1 -0
  44. package/lib/ascf-converter/compiler-utils/parse5.bundle.js +1 -0
  45. package/lib/ascf-converter/features/converter.js +1 -0
  46. package/lib/ascf-converter/features/fileHandle.js +1 -0
  47. package/lib/ascf-converter/features/transformReport.js +1 -0
  48. package/lib/ascf-converter/lib/apiadapter4alipay.js +1 -0
  49. package/lib/ascf-converter/lib/locale.json +214 -0
  50. package/lib/ascf-converter/parse/babelParser.js +1 -0
  51. package/lib/ascf-converter/parse/importVisitor.js +1 -0
  52. package/lib/ascf-converter/parse/wxssParser.js +1 -0
  53. package/lib/ascf-project-generator/templates/Index.ets +0 -0
  54. package/lib/ascf-project-generator/templates/build-profile.json5 +25 -0
  55. package/lib/ascf-project-generator/templates/hvigorfile.ts +6 -0
  56. package/lib/ascf-project-generator/templates/obfuscation-rules.txt +18 -0
  57. package/lib/ascf-project-generator/templates/oh-package.json5 +11 -0
  58. package/lib/ascf-project-generator/templates/src/main/module.json5 +13 -0
  59. package/lib/ascf-project-generator/templates/src/main/resources/base/element/string.json +8 -0
  60. package/lib/bin/ascf.js +2 -0
  61. package/lib/common/logger-plugin.js +1 -0
  62. package/lib/common/remove-strict-mode-plugin.js +1 -0
  63. package/lib/common/utils.js +1 -0
  64. package/notice/openSourceSoftwareNotice.html +5132 -0
  65. package/package.json +156 -0
package/.editorconfig ADDED
@@ -0,0 +1,15 @@
1
+ # http://editorconfig.org
2
+
3
+ root = true
4
+
5
+ [*]
6
+ charset = utf-8
7
+ indent_style = space
8
+ indent_size = 2
9
+ end_of_line = lf
10
+ insert_final_newline = true
11
+ trim_trailing_whitespace = true
12
+
13
+ [*.md]
14
+ insert_final_newline = false
15
+ trim_trailing_whitespace = false
package/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [2024] [atomicservice]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # ascf-toolkit 元服务ASCF框架工具
2
+
3
+ ## 安装
4
+
5
+ ```
6
+ npm install @atomicservice/ascf-toolkit -g
7
+ ```
8
+
9
+
10
+ ## 使用指南
11
+
12
+ ### 转换小程序为ASCF范式
13
+
14
+ ```
15
+ ascf convert -i .\path\to\miniprogram -o .path\to\atomicservice-project
16
+ ```
17
+
18
+ ### 编译ASCF范式项目
19
+
20
+ ```
21
+ ascf compile path\to\atomicservice-project
22
+ ```
@@ -0,0 +1 @@
1
+ var _0x1f8a84=_0xbfdb,loaderUtils=((()=>{for(var e=_0xbfdb,a=_0x192d();;)try{if(817521==+parseInt(e(500))*(parseInt(e(498))/2)+parseInt(e(485))/3*(-parseInt(e(466))/4)+-parseInt(e(464))/5+parseInt(e(482))/6*(parseInt(e(480))/7)+parseInt(e(463))/8+-parseInt(e(465))/9*(parseInt(e(469))/10)+parseInt(e(507))/11)break;a.push(a.shift())}catch(e){a.push(a.shift())}})(),require(_0x1f8a84(487))),checkAppJson=require(_0x1f8a84(489)),_require=require("path"),relative=_require[_0x1f8a84(481)],replacePropertyList=[_0x1f8a84(493),_0x1f8a84(506),_0x1f8a84(468),_0x1f8a84(477),"type","minPlatformVersion","entryPagePath"],addOrReplacePropertyList=[_0x1f8a84(488),"tabBar",_0x1f8a84(458),_0x1f8a84(494)],hasCheckAppJson=!1;function getComponents(e){var r=_0x1f8a84,t=1<arguments[r(462)]&&void 0!==arguments[1]?arguments[1]:[],n=[];return e.forEach(function(e){var a=r;t[a(460)](e[a(490)])||n[a(502)](e[a(490)])}),JSON.stringify(n)}function extToManifestProcess(e,a){var r,t=_0x1f8a84;for(r in e[t(461)])if(Object[t(497)][t(510)][t(486)](e[t(461)],r)){if(-1!==replacePropertyList[t(491)](r)&&(a[r]=e[t(461)][r]),-1!==addOrReplacePropertyList[t(491)](r)){var n=a[r]||(a[r]={});if(n)for(var o in e[t(461)][r])Object[t(497)][t(510)][t(486)](e.appConfig[r],o)&&(n[o]=e.appConfig[r][o]);else n=e.appConfig[r]}if(r===t(472)&&e.appConfig[t(472)])for(var s in e[t(461)][t(472)])if(Object[t(497)].hasOwnProperty[t(486)](e.appConfig[t(472)],s))for(var p in a[t(484)])if(Object[t(497)][t(510)].call(a[t(484)],p)){var i=Object.keys(e[t(461)].extPages[s])[t(462)];if(p===s&&i)for(var f in e.appConfig[t(472)][s])Object[t(497)][t(510)][t(486)](e[t(461)][t(472)][s],f)&&(a.page[p][f]=e[t(461)][t(472)][s][f])}}return a}function _0xbfdb(e,a){var r=_0x192d();return(_0xbfdb=function(e,a){return r[e-=458]})(e,a)}function appJsonLoader(e){var n=_0x1f8a84,a=(hasCheckAppJson||(this[n(496)][n(509)]&&!0===this[n(496)][n(509)].extEnable&&(this[n(496)][n(467)]=extToManifestProcess(this[n(496)][n(509)],this[n(496)][n(467)])),hasCheckAppJson=checkAppJson(this)),(null==(a=loaderUtils.parseQuery(this[n(470)]).get(n(493)))?void 0:a[n(474)](/\\/g,"/"))||""),r=this[n(496)],t=r[n(459)],o=r[n(467)],s=r.srcPath,p=Object[n(505)](o[n(495)]||{}),i=[],r=(a===n(504)&&(i[n(502)](n(475)[n(508)](JSON[n(479)](p),";")),i[n(502)]("global.__qaRoute = '"[n(508)](a,"';")),Object[n(499)](t).forEach(function(e){var a=n;e===a(504)?i[a(502)]("require('./app.js');"):i[a(502)](a(483)[a(508)](e[a(492)]("/")?e:""[a(508)](e,"/"),a(501))[a(508)](e,"');"))})),t[a]||t[""[n(508)](a,"/")]);return r&&0<r[n(478)]&&r.forEach(function(e,a){var r=n,t=e.componentList,e=e[r(503)],t=getComponents(t,p),e="./"[r(508)](relative(s,e)[r(474)](/\.json$/g,r(473))[r(474)](/\\/g,"/"));i.push("global.__qaRoute = '"[r(508)](a,"';")),i.push(r(471)[r(508)](t,";")),i[r(502)]("require('"[r(508)](e,"');"))}),i.join("\r\n")}function _0x192d(){var e=["page","143475MvQOEB","call","./loader-utils","window","./common/appjson-validator","path","indexOf","endsWith","package","independentList","usingComponents","options","prototype","4qMUGnB","keys","139071VSkPvE","index.js\" */'./app.json?package=","push","compJsonPath","app","values","name","28418742hLCqUY","concat","extData","hasOwnProperty","permission","projectComponentsMap","includes","appConfig","length","7941248NWGIvD","3825050jCcSoP","2358rpkuet","80mytGJk","manifest","versionName","56120svdaWf","resourceQuery","global.usingComponents = ","extPages",".js","replace","global.__globalComponents = ","exports","versionCode","size","stringify","21WKqHCt","relative","310110WQtRwR",'import(/* webpackChunkName: "'];return(_0x192d=function(){return e})()}module[_0x1f8a84(476)]=appJsonLoader;
@@ -0,0 +1 @@
1
+ function _0x9bb6(){var e=["test","filter","Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.","function","modifier","@@toPrimitive must return a primitive value.","bgColor","enumerable","apply","navigator","round","","forEach","entries","closeAll","rgbToAnsi256","includes","IS_EMPTY","Set","ansi256","done","2729356QLKTln","return","visible","getOwnPropertyDescriptors","isInteger","isArray","slice","defineProperty","set","max","iterator","Chromium","toString","keys","exec","stderr","constructor","getOwnPropertySymbols","value","codes","21GNJWkJ","hexToAnsi256","hexToRgb","10806UQVqQY","setPrototypeOf","name","symbol","open","defineProperties","13484862LcYLPW","indexOf","call","2954872frhZEE","getOwnPropertyDescriptor","Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.","userAgentData","parseInt","length","170026jznALU","from","rgb","push","close","create","29342EACfbv","find","object","@@iterator","floor","level","string","ansi","join","default","950faSVyZ","toPrimitive","openAll","concat","ansi16m","STYLER","prototype","color","exports","3841944WtGByi","undefined"];return(_0x9bb6=function(){return e})()}var _0x349bff=_0x25d5;function _typeof(e){var t=_0x25d5;return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol[t(211)]?function(e){return typeof e}:function(e){var r=t;return e&&r(183)==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?r(141):typeof e})(e)}function ownKeys(t,e){var r,n=_0x25d5,o=Object[n(128)](t);return Object[n(132)]&&(r=Object[n(132)](t),e&&(r=r[n(181)](function(e){var r=n;return Object[r(148)](t,e)[r(187)]})),o[n(156)][n(188)](o,r)),o}function _objectSpread(t){for(var n=_0x25d5,e=1;e<arguments[n(152)];e++){var o=null!=arguments[e]?arguments[e]:{};e%2?ownKeys(Object(o),!0)[n(192)](function(e){_defineProperty(t,e,o[e])}):Object[n(204)]?Object[n(143)](t,Object[n(204)](o)):ownKeys(Object(o)).forEach(function(e){var r=n;Object.defineProperty(t,e,Object[r(148)](o,e))})}return t}function _defineProperty(e,r,t){var n=_0x25d5;return(r=_toPropertyKey(r))in e?Object[n(208)](e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function _toPropertyKey(e){var r=_0x25d5,e=_toPrimitive(e,r(165));return r(141)==_typeof(e)?e:e+""}function _0x25d5(e,r){var t=_0x9bb6();return(_0x25d5=function(e,r){return t[e-=127]})(e,r)}function _toPrimitive(e,r){var t=_0x25d5;if(t(161)!=_typeof(e)||!e)return e;var n=e[Symbol[t(170)]];if(void 0===n)return(t(165)===r?String:Number)(e);n=n[t(146)](e,r||t(168));if("object"!=_typeof(n))return n;throw new TypeError(t(185))}function _toConsumableArray(e){return _arrayWithoutHoles(e)||_iterableToArray(e)||_unsupportedIterableToArray(e)||_nonIterableSpread()}function _nonIterableSpread(){throw new TypeError(_0x25d5(182))}function _iterableToArray(e){var r=_0x25d5;if(r(179)!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e[r(162)])return Array[r(154)](e)}function _arrayWithoutHoles(e){if(Array[_0x25d5(206)](e))return _arrayLikeToArray(e)}function _slicedToArray(e,r){return _arrayWithHoles(e)||_iterableToArrayLimit(e,r)||_unsupportedIterableToArray(e,r)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError(_0x25d5(149))}function _unsupportedIterableToArray(e,r){var t,n=_0x25d5;if(e)return n(165)==typeof e?_arrayLikeToArray(e,r):"Map"===(t="Object"===(t={}[n(127)][n(146)](e)[n(207)](8,-1))&&e[n(131)]?e.constructor[n(140)]:t)||n(198)===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/[n(180)](t)?_arrayLikeToArray(e,r):void 0}function _arrayLikeToArray(e,r){(null==r||r>e[_0x25d5(152)])&&(r=e.length);for(var t=0,n=Array(r);t<r;t++)n[t]=e[t];return n}function _iterableToArrayLimit(e,r){var t=_0x25d5,n=null==e?null:t(179)!=typeof Symbol&&e[Symbol[t(211)]]||e[t(162)];if(null!=n){var o,a,i,l,s=[],u=!0,f=!1;try{if(i=(n=n[t(146)](e)).next,0===r){if(Object(n)!==n)return;u=!1}else for(;!(u=(o=i[t(146)](n))[t(200)])&&(s[t(156)](o[t(133)]),s[t(152)]!==r);u=!0);}catch(e){f=!0,a=e}finally{try{if(!u&&null!=n[t(202)]&&(l=n[t(202)](),Object(l)!==l))return}finally{if(f)throw a}}return s}}function _arrayWithHoles(e){if(Array[_0x25d5(206)](e))return e}(()=>{for(var e=_0x25d5,r=_0x9bb6();;)try{if(387022==-parseInt(e(159))+-parseInt(e(153))/2*(parseInt(e(135))/3)+-parseInt(e(147))/4+parseInt(e(169))/5*(parseInt(e(138))/6)+parseInt(e(201))/7+-parseInt(e(178))/8+parseInt(e(144))/9)break;r.push(r.shift())}catch(e){r.push(r.shift())}})();var ANSI_BACKGROUND_OFFSET=10,wrapAnsi16=function(){var r=0<arguments[_0x25d5(152)]&&void 0!==arguments[0]?arguments[0]:0;return function(e){return"[".concat(e+r,"m")}},wrapAnsi256=function(){var t=_0x25d5,n=0<arguments[t(152)]&&void 0!==arguments[0]?arguments[0]:0;return function(e){var r=t;return"[".concat(38+n,";5;")[r(172)](e,"m")}},wrapAnsi16m=function(){var o=_0x25d5,a=0<arguments[o(152)]&&void 0!==arguments[0]?arguments[0]:0;return function(e,r,t){var n=o;return"[".concat(38+a,";2;").concat(e,";")[n(172)](r,";")[n(172)](t,"m")}},styles$1={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],overline:[53,55],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],blackBright:[90,39],gray:[90,39],grey:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgGray:[100,49],bgGrey:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}},foregroundColorNames=(Object[_0x349bff(128)](styles$1[_0x349bff(184)]),Object[_0x349bff(128)](styles$1[_0x349bff(176)])),backgroundColorNames=Object[_0x349bff(128)](styles$1.bgColor);function assembleStyles(){for(var a=_0x349bff,e=new Map,r=0,t=Object[a(193)](styles$1);r<t[a(152)];r++){for(var n=_slicedToArray(t[r],2),o=n[0],i=n[1],l=0,s=Object[a(193)](i);l<s[a(152)];l++){var u=_slicedToArray(s[l],2),f=u[0],u=u[1];styles$1[f]={open:"[".concat(u[0],"m"),close:"["[a(172)](u[1],"m")},i[f]=styles$1[f],e[a(209)](u[0],u[1])}Object.defineProperty(styles$1,o,{value:i,enumerable:!1})}return Object[a(208)](styles$1,a(134),{value:e,enumerable:!1}),styles$1[a(176)][a(157)]="",styles$1.bgColor.close=a(191),styles$1[a(176)][a(166)]=wrapAnsi16(),styles$1.color[a(199)]=wrapAnsi256(),styles$1[a(176)][a(173)]=wrapAnsi16m(),styles$1[a(186)][a(166)]=wrapAnsi16(ANSI_BACKGROUND_OFFSET),styles$1[a(186)][a(199)]=wrapAnsi256(ANSI_BACKGROUND_OFFSET),styles$1.bgColor.ansi16m=wrapAnsi16m(ANSI_BACKGROUND_OFFSET),Object[a(143)](styles$1,{rgbToAnsi256:{value:function(e,r,t){var n=a;return e===r&&r===t?e<8?16:248<e?231:Math[n(190)]((e-8)/247*24)+232:16+36*Math[n(190)](e/255*5)+6*Math[n(190)](r/255*5)+Math[n(190)](t/255*5)},enumerable:!1},hexToRgb:{value:function(e){var r=a,e=/[a-f\d]{6}|[a-f\d]{3}/i[r(129)](e[r(127)](16));return e?(3===(e=_slicedToArray(e,1)[0])[r(152)]&&(e=_toConsumableArray(e).map(function(e){return e+e}).join("")),[(r=Number[r(151)](e,16))>>16&255,r>>8&255,255&r]):[0,0,0]},enumerable:!1},hexToAnsi256:{value:function(e){var r=a;return styles$1[r(195)].apply(styles$1,_toConsumableArray(styles$1[r(137)](e)))},enumerable:!1},ansi256ToAnsi:{value:function(e){var r,t,n=a;if(e<8)return 30+e;if(e<16)return e-8+90;e=232<=e?t=r=(10*(e-232)+8)/255:(o=(e-=16)%36,r=Math[n(163)](e/36)/5,t=Math[n(163)](o/6)/5,o%6/5);var o=2*Math[n(210)](r,t,e);return 0==o?30:(e=30+(Math[n(190)](e)<<2|Math[n(190)](t)<<1|Math[n(190)](r)),2==o&&(e+=60),e)},enumerable:!1},rgbToAnsi:{value:function(e,r,t){return styles$1.ansi256ToAnsi(styles$1.rgbToAnsi256(e,r,t))},enumerable:!1},hexToAnsi:{value:function(e){var r=a;return styles$1.ansi256ToAnsi(styles$1[r(136)](e))},enumerable:!1}}),styles$1}[][_0x349bff(172)](foregroundColorNames,backgroundColorNames);var ansiStyles=assembleStyles(),level=((e,r)=>{var t=_0x349bff;if(null!=(e=Object[t(189)])&&e[t(150)]){e=null==(e=Object.navigator)?void 0:e[t(150)].brands[t(160)](function(e){var r=t;return e.brand===r(212)});if(e&&93<e.version)return 3}return/\b(Chrome|Chromium)\//[t(180)](null==(r=Object[t(189)])?void 0:r.userAgent)?1:0})(),colorSupport=0!==level&&{level:level,hasBasic:!0,has256:2<=level,has16m:3<=level},supportsColor={stdout:colorSupport,stderr:colorSupport};function stringReplaceAll(e,r,t){var n=_0x349bff,o=e[n(145)](r);if(-1===o)return e;for(var a=r[n(152)],i=0,l="";l+=e[n(207)](i,o)+r+t,i=o+a,-1!==(o=e[n(145)](r,i)););return l+=e[n(207)](i)}function stringEncaseCRLFWithFirstIndex(e,r,t,n){var o=_0x349bff,a=0,i="";do{var l="\r"===e[n-1]}while(i+=e[o(207)](a,l?n-1:n)+r+(l?"\r\n":"\n")+t,a=n+1,-1!==(n=e[o(145)]("\n",a)));return i+=e[o(207)](a)}var stdoutColor=supportsColor.stdout,stderrColor=supportsColor[_0x349bff(130)],GENERATOR=Symbol("GENERATOR"),STYLER=Symbol(_0x349bff(174)),IS_EMPTY=Symbol(_0x349bff(197)),levelMapping=[_0x349bff(166),_0x349bff(166),_0x349bff(199),_0x349bff(173)],styles=Object[_0x349bff(158)](null),applyOptions=function(e){var r=_0x349bff,t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};if(t[r(164)]&&!(Number[r(205)](t[r(164)])&&0<=t[r(164)]&&t.level<=3))throw new Error("The `level` option should be an integer from 0 to 3");var n=stdoutColor?stdoutColor[r(164)]:0;e[r(164)]=void 0===t[r(164)]?n:t[r(164)]},chalkFactory=function(e){function r(){for(var e=_0x25d5,r=arguments[e(152)],t=new Array(r),n=0;n<r;n++)t[n]=arguments[n];return t[e(167)](" ")}var t=_0x349bff;return applyOptions(r,e),Object[t(139)](r,createChalk[t(175)]),r};function createChalk(e){return chalkFactory(e)}Object[_0x349bff(139)](createChalk.prototype,Function.prototype);for(var _loop=function(){var e=_slicedToArray(_Object$entries3[_i3],2),t=e[0],n=e[1];styles[t]={get:function(){var e=_0x25d5,r=createBuilder(this,createStyler(n[e(142)],n[e(157)],this[STYLER]),this[IS_EMPTY]);return Object[e(208)](this,t,{value:r}),r}}},_i3=0,_Object$entries3=Object[_0x349bff(193)](ansiStyles);_i3<_Object$entries3[_0x349bff(152)];_i3++)_loop();styles[_0x349bff(203)]={get:function(){var e=_0x349bff,r=createBuilder(this,this[STYLER],!0);return Object[e(208)](this,e(203),{value:r}),r}};for(var _getModelAnsi=function(e,r,t){for(var n,o=_0x349bff,a=arguments[o(152)],i=new Array(3<a?a-3:0),l=3;l<a;l++)i[l-3]=arguments[l];return e===o(155)?r===o(173)?(n=ansiStyles[t])[o(173)][o(188)](n,i):r===o(199)?ansiStyles[t][o(199)](ansiStyles.rgbToAnsi256.apply(ansiStyles,i)):ansiStyles[t].ansi(ansiStyles.rgbToAnsi[o(188)](ansiStyles,i)):"hex"===e?_getModelAnsi[o(188)](void 0,[o(155),r,t][o(172)](_toConsumableArray(ansiStyles.hexToRgb[o(188)](ansiStyles,i)))):(n=ansiStyles[t])[e].apply(n,i)},usedModels=["rgb","hex",_0x349bff(199)],_loop2=function(){var e=_0x349bff,i=_usedModels[_i4],r=(styles[i]={get:function(){var o=_0x25d5,a=this[o(164)];return function(){for(var e=o,r=arguments[e(152)],t=new Array(r),n=0;n<r;n++)t[n]=arguments[n];e=createStyler(_getModelAnsi[e(188)](void 0,[i,levelMapping[a],e(176)][e(172)](t)),ansiStyles[e(176)].close,this[STYLER]);return createBuilder(this,e,this[IS_EMPTY])}}},"bg"+i[0].toUpperCase()+i[e(207)](1));styles[r]={get:function(){var o=e,a=this[o(164)];return function(){for(var e=o,r=arguments[e(152)],t=new Array(r),n=0;n<r;n++)t[n]=arguments[n];e=createStyler(_getModelAnsi[e(188)](void 0,[i,levelMapping[a],e(186)][e(172)](t)),ansiStyles.bgColor[e(157)],this[STYLER]);return createBuilder(this,e,this[IS_EMPTY])}}}},_i4=0,_usedModels=usedModels;_i4<_usedModels.length;_i4++)_loop2();var proto=Object[_0x349bff(143)](function(){},_objectSpread(_objectSpread({},styles),{},{level:{enumerable:!0,get:function(){var e=_0x349bff;return this[GENERATOR][e(164)]},set:function(e){var r=_0x349bff;this[GENERATOR][r(164)]=e}}})),createStyler=function(e,r,t){var n,o=_0x349bff,o=void 0===t?(n=e,r):(n=t[o(171)]+e,r+t[o(194)]);return{open:e,close:r,openAll:n,closeAll:o,parent:t}},createBuilder=function(e,r,t){function o(){for(var e=_0x25d5,r=arguments[e(152)],t=new Array(r),n=0;n<r;n++)t[n]=arguments[n];return applyStyle(o,1===t[e(152)]?""+t[0]:t[e(167)](" "))}return Object[_0x349bff(139)](o,proto),o[GENERATOR]=e,o[STYLER]=r,o[IS_EMPTY]=t,o},applyStyle=function(e,r){var t=_0x349bff;if(e[t(164)]<=0||!r)return e[IS_EMPTY]?"":r;var n=e[STYLER];if(void 0===n)return r;var e=n,o=e[t(171)],e=e[t(194)];if(r[t(196)](""))for(;void 0!==n;)r=stringReplaceAll(r,n[t(157)],n[t(142)]),n=n.parent;var a=r[t(145)]("\n");return o+(r=-1!==a?stringEncaseCRLFWithFirstIndex(r,e,o,a):r)+e},chalk=(Object.defineProperties(createChalk[_0x349bff(175)],styles),createChalk());createChalk({level:stderrColor?stderrColor[_0x349bff(164)]:0}),module[_0x349bff(177)]=chalk;
@@ -0,0 +1 @@
1
+ function _0x277d(a,e){var t=_0x19ab();return(_0x277d=function(a,e){return t[a-=318]})(a,e)}var _0x30a745=_0x277d;function _0x19ab(){var a=["type","' is a character string, which should be an integer instead.","length","path","' color value '","constructor","strArr","3608712UKfWfj","19245NtMGUE","def","forEach","objArr","9UxJHnn","' is invalid"," \n ","number","boolean","function","toString","dark","value","existsSync","Object","bottom","37398ZINUPJ","' is not a configuration item of networkTimeout.","' is invalid.","ERROR","resourcePath","WARNING","join","reason","custom","HexColor","white","the attribute value must in [","all","8iYAMru","portrait","exports","104hBunmJ","ERROR: app.json configuration item '","#ffffff","replace","default","push","concat","isArray","keys","1267116qeBSgE","' contains: \n ","true","object","match","plugins","window",'" field in the app.json file >= 1069.',"' value '","' is not a configuration item of window.","value '","wifi",": configuration item '","includes","1057yZxbvX","44atpqeD","indexOf","required","3302724nDdFlK","438GKpcMY","auto","WARNING: app.json configuration item '","false","ERROR: Attribute '","' is invalid.'","symbol","black","trim","string","log","tabBar","6239sXCZhR","prototype"," Attribute '","isEmptyObject","logWarn","' value is invalid.","isExp","require","ERROR: The platform version number of ","integer","3489890vEmdbf","./utils",'please change "',"light","NOTE"," is too early, ","bind","stringify","networkTimeout"];return(_0x19ab=function(){return a})()}function _typeof(a){var t=_0x277d;return(_typeof=t(348)==typeof Symbol&&t(405)==typeof Symbol.iterator?function(a){return typeof a}:function(a){var e=t;return a&&e(348)==typeof Symbol&&a[e(336)]===Symbol&&a!==Symbol[e(412)]?"symbol":typeof a})(a)}(()=>{for(var a=_0x277d,e=_0x19ab();;)try{if(768175==-parseInt(a(411))*(parseInt(a(399))/2)+parseInt(a(398))/3+parseInt(a(368))/4*(-parseInt(a(339))/5)+-parseInt(a(355))/6*(-parseInt(a(394))/7)+-parseInt(a(338))/8*(parseInt(a(343))/9)+parseInt(a(322))/10*(parseInt(a(395))/11)+-parseInt(a(380))/12*(parseInt(a(371))/13))break;e.push(e.shift())}catch(a){e.push(e.shift())}})();var utils=require(_0x30a745(323)),fs=require("fs"),path=require(_0x30a745(334)),logTypes=[_0x30a745(326),_0x30a745(360),_0x30a745(358)],REGEXP_INT=/^[0-9]+$/,REGEXP_COLOR_LONG=/^#[0-9a-fA-F]{6}$/,REGEXP_COLOR_SHORT=/^#[0-9a-fA-F]{3}$/,REGEXP_PACKAGE_NAME=/^[a-zA-Z][a-zA-Z0-9_]*(\.[a-zA-Z0-9_]+)+$/,validator={enum:function(r,a){var n=_0x30a745;return 0<=r[n(396)](a[n(349)]())?{value:a}:{value:null,reason:function(a,e){var t=n;return"ERROR: Attribute '"[t(377)](a,t(388))[t(377)](e,"' is invalid, ")+t(366)[t(377)](r,"]")}}},packageName:function(a){var r=_0x30a745;return(a||"")[r(349)]()[r(407)]()[r(384)](REGEXP_PACKAGE_NAME)?{value:!0}:{value:!1,reason:function(a,e){var t=r;return t(372)[t(377)](a,t(388)).concat(e,t(357))}}},integer:function(a){var r=_0x30a745;return"string"==typeof a?a.match(REGEXP_INT)?{value:!0,reason:function(a,e){var t=_0x277d;return"WARNING: app.json configuration item '"[t(377)](a,"' ")+t(390)[t(377)](e,"' is a character string, which should be an integer instead.")}}:{value:!1,reason:function(a,e){var t=_0x277d;return"ERROR: app.json configuration item '"[t(377)](a,t(388)).concat(e,t(357))}}:(a=(a||"")[r(349)]()).match(REGEXP_INT)?{value:!0}:{value:!1,reason:function(a,e){var t=r;return"ERROR: app.json configuration item '"[t(377)](a,t(388)).concat(e,t(357))}}},strArr:function(a){var r=_0x30a745;return Array[r(378)](a)?{value:a}:{value:!1,reason:function(a,e){var t=r;return"ERROR: Attribute '".concat(a,"' value '")[t(377)](e,t(344))}}},window:function(o){var i,u,l,d=_0x30a745;return"{}"===JSON.stringify(o)?{value:!0}:(i={},u=[],l=0,Object[d(379)](o)[d(341)](function(a){var e,t,r=d,n=windowValidatorMap[a]&&windowValidatorMap[a][r(331)];r(348)===typeof n?("number"!=typeof(n=n(o[a]))[r(351)]&&r(408)!==typeof n[r(351)]&&r(347)!==typeof n.value||(i[a]=n[r(351)]),n[r(362)]&&((e=(n=n[r(362)](a,o[a])).match(/^([A-Z]+):/))&&(t=logTypes[r(396)](e[1]),l<t&&(l=t),n=n[r(374)](e[0],"")),u[r(376)](n))):(l=1,u[r(376)](r(413)[r(377)](a,r(389))))}),{value:utils[d(414)](i)?null:JSON[d(329)](i),reason:0<u.length?function(a){var e=d;return""[e(377)](logTypes[l],": configuration item '")[e(377)](a,e(381))+""[e(377)](u[e(361)](e(345)))}:null})},tabBar:function(o){var i,t,u,l,d,p=_0x30a745;return p(383)!==_typeof(o)?{value:!1,reason:function(a){var e=p;return e(403)[e(377)](a,e(416))}}:(i=[],t=[],Object[p(379)](tabBarValidatorMap)[p(341)](function(a){var e=p;tabBarValidatorMap[a][e(319)]&&i[e(376)](a),tabBarValidatorMap[a][e(340)]&&t.push(tabBarValidatorMap[a][e(340)])}),u={},l=[],d=0,Object[p(379)](o)[p(341)](function(a){var e,t,r,n=p;void 0!==tabBarValidatorMap[a]?(-1!==i[n(396)](a)&&(e=i.indexOf(a),i.splice(e,1)),"function"==typeof(e=tabBarValidatorMap[a][n(331)])&&(e=e(o[a]),n(346)!==typeof e[n(351)]&&n(408)!==typeof e[n(351)]||(u[a]=e[n(351)]),e[n(362)])&&((t=(e=e[n(362)](a,o[a])).match(/^([A-Z]+):/))&&(r=logTypes.indexOf(t[1]),d<r&&(d=r),e=e[n(374)](t[0],"")),l[n(376)](e))):(d=1,l.push(" Attribute '".concat(a,"' is not a sub-attribute of tabBar.")))}),0<i[p(333)]&&(d=2,l[p(376)](" The mandatory sub-attribute is missing: ".concat(i[p(361)](", ")))),{value:utils[p(414)](u)?null:JSON[p(329)](u),reason:0<l[p(333)]?function(a){var e=p;return"".concat(logTypes[d],e(392))[e(377)](a,e(381))+""[e(377)](l[e(361)](e(345)))}:null})},networkTimeout:function(o){var i,u,l,d=_0x30a745;return"{}"===JSON[d(329)](o)?{value:!0}:(i={},u=[],l=0,Object[d(379)](o)[d(341)](function(a){var e,t,r=d,n=networkTimeoutValidatorMap[a]&&networkTimeoutValidatorMap[a][r(331)];"function"==typeof n?(n=n(o[a]),r(346)!==typeof n[r(351)]&&r(408)!==typeof n.value&&r(347)!==typeof n.value||(i[a]=n[r(351)]),n.reason&&((e=(n=n[r(362)](a,o[a]))[r(384)](/^([A-Z]+):/))&&(t=logTypes.indexOf(e[1]),l<t&&(l=t),n=n[r(374)](e[0],"")),u[r(376)](n))):(l=1,u.push(r(413)[r(377)](a,r(356))))}),{value:utils[d(414)](i)?null:JSON[d(329)](i),reason:0<u[d(333)]?function(a){var e=d;return""[e(377)](logTypes[l],": configuration item '")[e(377)](a,e(381))+"".concat(u[e(361)](e(345)))}:null})},objArr:function(a){return{value:a}},string:function(a){return{value:a}},Object:function(a){return{value:a}},plugins:function(a){return{value:a}},preloadRule:function(a){return{value:a}},permission:function(a){return{value:a}},permissionObject:function(a){return{value:a}},HexColor:function(a){var r=_0x30a745;return(a=(a||"").toString())[r(384)](REGEXP_COLOR_LONG)||a[r(384)](REGEXP_COLOR_SHORT)?{value:a}:{value:null,reason:function(a,e){var t=r;return"ERROR: Attribute '"[t(377)](a,t(335))[t(377)](e,t(404))}}},number:function(a){var r=_0x30a745;return"string"==typeof a?a.match(REGEXP_INT)?{value:Number(a),reason:function(a,e){var t=_0x277d;return t(401)[t(377)](a,"' ")+t(390)[t(377)](e,t(332))}}:{value:!1,reason:function(a,e){var t=_0x277d;return"ERROR: app.json configuration item '".concat(a,"' value '")[t(377)](e,t(344))}}:(a=(a||"")[r(349)]()).match(REGEXP_INT)?{value:a}:{value:!1,reason:function(a,e){var t=r;return t(372)[t(377)](a,"' value '")[t(377)](e,t(357))}}},minPlatformVersion:function(a){var r=_0x30a745,e=validator[r(321)](a);return e[r(351)]?a<1069?{value:!1,reason:function(a,e){var t=r;return t(320)[t(377)](e,t(327))+t(324)[t(377)](a,t(387))}}:{value:!0}:e}},validatorMap={window:{type:validator[_0x30a745(386)],required:!1},tabBar:{type:validator[_0x30a745(410)],required:!1},networkTimeout:{type:validator[_0x30a745(330)],required:!1},functionalPages:{type:makeEnumValidator(["false",_0x30a745(382)]),required:!1},subpackages:{type:validator[_0x30a745(342)],required:!1},subPackages:{type:validator[_0x30a745(342)],required:!1},workers:{type:validator.string,required:!1},requiredBackgroundModes:{type:validator[_0x30a745(337)],required:!1},plugins:{type:validator[_0x30a745(385)],required:!1},preloadRule:{type:validator.preloadRule,required:!1},resizable:{type:makeEnumValidator([_0x30a745(402),"true"]),required:!1},navigateToMiniProgramAppIdList:{type:validator[_0x30a745(337)],required:!1},usingComponents:{type:validator[_0x30a745(353)],required:!1},permission:{type:validator.permission,required:!1},sitemapLocation:{type:validator.string,required:!1},style:{type:validator[_0x30a745(408)],required:!1}},windowValidatorMap={navigationBarBackgroundColor:{type:validator[_0x30a745(364)],def:"#000000"},navigationBarTextStyle:{type:makeEnumValidator([_0x30a745(365),_0x30a745(406)]),def:_0x30a745(365)},navigationBarTitleText:{type:validator[_0x30a745(408)]},navigationStyle:{type:makeEnumValidator([_0x30a745(375),_0x30a745(363)]),def:_0x30a745(375)},backgroundColor:{type:validator[_0x30a745(364)],def:_0x30a745(373)},backgroundTextStyle:{type:makeEnumValidator([_0x30a745(350),_0x30a745(325)]),def:"dark"},backgroundColorTop:{type:validator.string,def:"#ffffff"},backgroundColorBottom:{type:validator[_0x30a745(408)],def:_0x30a745(373)},enablePullDownRefresh:{type:makeEnumValidator([_0x30a745(402),"true"]),def:"false"},onReachBottomDistance:{type:validator[_0x30a745(346)],def:50},pageOrientation:{type:makeEnumValidator([_0x30a745(369),_0x30a745(400),"landscape"]),def:_0x30a745(369)}},tabBarValidatorMap={color:{type:validator.HexColor,required:!0},selectedColor:{type:validator.HexColor,required:!0},backgroundColor:{type:validator.HexColor,required:!0},borderStyle:{type:makeEnumValidator([_0x30a745(406),_0x30a745(365)]),required:!1,def:_0x30a745(406)},list:{type:validator.array,required:!0},position:{type:makeEnumValidator([_0x30a745(354),"top"]),required:!1,def:"bottom"},custom:{type:makeEnumValidator(["false","true"]),required:!1,def:_0x30a745(402)}},networkTimeoutValidatorMap={request:{type:validator[_0x30a745(346)],required:!1,def:6e4},connectSocket:{type:validator.number,required:!1,def:6e4},uploadFile:{type:validator[_0x30a745(346)],required:!1,def:6e4},downloadFile:{type:validator[_0x30a745(346)],required:!1,def:6e4}},preloadRuleValidatorMap={packages:{type:validator[_0x30a745(337)],required:!0},network:{type:makeEnumValidator([_0x30a745(391),_0x30a745(367)]),required:!1,def:_0x30a745(391)}},permissionValidatorMap={"scope.userLocation":{type:validator.permissionObject,required:!0}},requireAttrMap=[];function validate(a,e){var t=_0x30a745,r=void 0,n=void 0,o=validatorMap[a];return o&&"function"==typeof o[t(331)]?(r=o[t(331)](e))[t(362)]&&(n={reason:r[t(362)](a,e)}):r={value:!0},{value:r[t(351)],log:n}}function makeEnumValidator(a){var e=_0x30a745;return validator.enum[e(328)](null,a)}function getComponents(a){var t=_0x30a745,r=1<arguments.length&&void 0!==arguments[1]?arguments[1]:[],n=[];return a[t(341)](function(a){var e=t;r[e(393)](a[e(334)])||n.push(a[e(334)])}),JSON.stringify(n)}(()=>{var t=_0x30a745;Object[t(379)](validatorMap)[t(341)](function(a){var e=t;validatorMap[a][e(397)]&&requireAttrMap[e(376)](a)})})(),module[_0x30a745(370)]=function(a){var t,r,e,n,o=_0x30a745,i=a.options.manifest;return i&&(t=a[o(359)],r=[],requireAttrMap[o(341)](function(a){var e=o;i[a]||r[e(376)]({reason:"ERROR: app.json does not contain configuration item '"[e(377)](a,"'"),filePath:t})}),e=i.icon,n=void(utils[o(318)](e)||!e||fs[o(352)](path[o(361)](t,"..",e[o(407)]()))||r[o(376)]({reason:"ERROR: Can not resolve file :".concat(e),filePath:t})),Object[o(379)](i)[o(341)](function(a){var e=o;(n=validate(a,i[a]))[e(409)]&&r[e(376)]({reason:n[e(409)][e(362)],filePath:t})}),utils[o(415)](a,r)),!0};
@@ -0,0 +1 @@
1
+ function _0x1935(){var n=["307377LOjHph","240ooIdlb","toString","25711nkdCAd","12235VtrPwx","concat","join","3042524acinbc","669252CPQGKo","2292lucqCP","string","1296KhGjTg","19330veNlvz","push","264YtZCab","1956099jAlAVX","25zBuVwu"," and "];return(_0x1935=function(){return n})()}function _0x5de3(n,r){var t=_0x1935();return(_0x5de3=function(n,r){return t[n-=468]})(n,r)}(()=>{for(var n=_0x5de3,r=_0x1935();;)try{if(508337==-parseInt(n(482))*(parseInt(n(478))/2)+parseInt(n(481))/3+-parseInt(n(473))/4+parseInt(n(470))/5*(parseInt(n(475))/6)+parseInt(n(469))/7*(-parseInt(n(477))/8)+-parseInt(n(484))/9*(parseInt(n(485))/10)+-parseInt(n(480))/11*(-parseInt(n(474))/12))break;r.push(r.shift())}catch(n){r.push(r.shift())}})(),module.exports=function(n){var c=_0x5de3,f=[];return f[c(468)]=function(){var n=c;return this.map(function(n){return n[1]||""})[n(472)]("")},f.i=function(n,r,t){var a=c,e=n,u=(typeof e===a(476)&&(e=[[null,e,""]]),{});if(t)for(var s=0;s<this.length;s++){var o=this[s][0];null!=o&&(u[o]=!0)}for(var i=0;i<e.length;i++){var p=[][a(471)](e[i]);t&&u[p[0]]||(r&&(p[2]?p[2]="".concat(r,a(483))[a(471)](p[2]):p[2]=r),f[a(479)](p))}},f};
@@ -0,0 +1 @@
1
+ var _0x2032a5=_0x5065;function _0x11cd(){var e=["split","\\b|\\b","1132884jeDrcc","117009mVIovx","4CzUsBO","lastIndex","17630508tOWwvo","match","trim","4EDCswL","for,function,if,import,in,instanceof,let,return,super,switch,throw,try,var,while,","^{{{(.+?)}}}$|^{{(.+?)}}$","320653jacwcu","slice","join","8jwjCWZ","stringify","1660970ghsxsG","length","push","^{{{.*}}}$","18HavYdO","33nqBQmT","./hash-sum","85253wutQwp","Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,require","{{{(.+?)}}}|{{(.+?)}}","break,case,class,catch,const,continue,debugger,default,delete,do,else,export,extends,finally,","test","909340uQwFUo","includes","replace","parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,","concat"];return(_0x11cd=function(){return e})()}(()=>{for(var e=_0x5065,r=_0x11cd();;)try{if(688431==-parseInt(e(526))*(-parseInt(e(518))/2)+parseInt(e(517))/3*(-parseInt(e(523))/4)+parseInt(e(531))/5*(-parseInt(e(501))/6)+parseInt(e(504))/7*(parseInt(e(529))/8)+-parseInt(e(516))/9+-parseInt(e(509))/10*(parseInt(e(502))/11)+parseInt(e(520))/12)break;r.push(r.shift())}catch(e){r.push(r.shift())}})();var allowedKeywords="Infinity,undefined,NaN,null,isFinite,isNaN,true,false,"+_0x2032a5(512)+_0x2032a5(505),allowedKeywordsRE=allowedKeywords[_0x2032a5(514)](","),prohibitedKeywordRE=new RegExp("\\b"[_0x2032a5(513)]((_0x2032a5(507)+_0x2032a5(524)+"with,yield,enum,await,implements,package,protected,static,interface,private,public")[_0x2032a5(514)](",")[_0x2032a5(528)](_0x2032a5(515)),"\\b")),stripStringRE=/'(?:[^'\\]|\\.)*'|"(?:[^"\\]|\\.)*"|`(?:[^`\\]|\\.)*\$\{|\}(?:[^`\\]|\\.)*`|`(?:[^`\\]|\\.)*`/g,innerParenthesesRe=/{{([^}][^}])*({{.*)+/,_require=require(_0x2032a5(503)),hashSum=_require.hashSum,STRINGIFY_OBJECT=JSON[_0x2032a5(530)]({}),OBEJECT_PLACEHOLDER=hashSum(STRINGIFY_OBJECT),REPLACE_RE=new RegExp(OBEJECT_PLACEHOLDER,"g"),BINDING_CONTENT_RE=/{{([\s\S]*)}}/,OBJECT_RE=/{\s*}/g;function replace(e){var r=_0x2032a5;return 1<arguments[r(532)]&&void 0!==arguments[1]&&arguments[1]?e[r(511)](REPLACE_RE,STRINGIFY_OBJECT).replace(/\s+$/gm,""):e[r(511)](REPLACE_RE,STRINGIFY_OBJECT)[r(522)]()}function _0x5065(e,r){var t=_0x11cd();return(_0x5065=function(e,r){return t[e-=499]})(e,r)}function isIdentifierNotAllow(e){return allowedKeywordsRE[_0x2032a5(510)](e)}function parseText(e,r){var t=_0x2032a5,n=2<arguments.length&&void 0!==arguments[2]&&arguments[2],a=3<arguments[t(532)]&&void 0!==arguments[3]&&arguments[3],i=e;if(n){if(!textExpRE[t(508)](i))return null}else if(i=i.replace(/\n/g,""),!expRE[t(508)](i))return null;var s=[];if(innerParenthesesRe.test(i))r.buildLog.push({reason:'ERROR: Unexpected inner parentheses, with attr value : "'[t(513)](i,'", please change it.')});else{for(var x=0,E=(tagRE[t(519)]=x,OBJECT_RE[t(508)](i)&&(i=i[t(511)](OBJECT_RE,OBEJECT_PLACEHOLDER)),null);E=textTagRE.exec(i);){var p=E.index,p=(x<p&&s[t(499)]({value:i[t(527)](x,p)}),htmlRE[t(508)](E[0]));p&&(E[1]=i.slice(x,textTagRE.lastIndex+1)[t(521)](BINDING_CONTENT_RE)[1]),s.push({tag:!0,value:replace(E[1]||E[2],a),html:p}),x=textTagRE[t(519)]}x<i[t(532)]&&s[t(499)]({value:replace(i.slice(x),a)})}return s}function isExpr(e){return expRE[_0x2032a5(508)](e)}function singleExpr(e){return sexpRE[_0x2032a5(508)](e.trim())}function removeExprffix(e){var r=_0x2032a5;return e=(e=singleExpr(e)?e[r(511)](/^\s*{{/,"")[r(511)](/}}\s*$/,""):e)[r(522)]()}function addExprffix(e){return e=singleExpr(e)?e:"{{".concat(e,"}}")}function containExpr(e){return!!e&&tagRE[_0x2032a5(508)](e.replace(/(\n)|(\r)/g,""))}function removeAllExprFix(e){var r=_0x2032a5;return e=containExpr(e)?e[r(511)](/\{\{\{?|\}\}\}?/g,""):e}var tagSource=_0x2032a5(506),tagRE=new RegExp(tagSource,"g"),expRE=new RegExp(tagSource),textTagRE=new RegExp("{{{([\\s\\S]*?)}}}|{{([\\s\\S]*?)}}","g"),textExpRE=new RegExp("{{{([\\s\\S]*?)}}}|{{([\\s\\S]*?)}}"),htmlRE=new RegExp(_0x2032a5(500)),sexpRE=new RegExp(_0x2032a5(525));module.exports={parseText:parseText,isExpr:isExpr,singleExpr:singleExpr,addExprffix:addExprffix,removeExprffix:removeExprffix,containExpr:containExpr,removeAllExprFix:removeAllExprFix,prohibitedKeywordRE:prohibitedKeywordRE,stripStringRE:stripStringRE,isIdentifierNotAllow:isIdentifierNotAllow};
@@ -0,0 +1 @@
1
+ var _0x11aa56=_0x2df8;function _slicedToArray(r,a){return _arrayWithHoles(r)||_iterableToArrayLimit(r,a)||_unsupportedIterableToArray(r,a)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError(_0x2df8(423))}function _unsupportedIterableToArray(r,a){var e,t=_0x2df8;if(r)return t(404)==typeof r?_arrayLikeToArray(r,a):("Object"===(e={}[t(402)][t(397)](r)[t(431)](8,-1))&&r[t(429)]&&(e=r[t(429)][t(422)]),t(407)===e||t(405)===e?Array[t(401)](r):t(406)===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/[t(409)](e)?_arrayLikeToArray(r,a):void 0)}function _arrayLikeToArray(r,a){var e=_0x2df8;(null==a||a>r[e(389)])&&(a=r[e(389)]);for(var t=0,n=Array(a);t<a;t++)n[t]=r[t];return n}function _iterableToArrayLimit(r,a){var e=_0x2df8,t=null==r?null:e(425)!=typeof Symbol&&r[Symbol[e(399)]]||r[e(392)];if(null!=t){var n,i,o,u,l=[],c=!0,v=!1;try{if(o=(t=t[e(397)](r))[e(414)],0===a){if(Object(t)!==t)return;c=!1}else for(;!(c=(n=o[e(397)](t)).done)&&(l[e(398)](n.value),l[e(389)]!==a);c=!0);}catch(r){v=!0,i=r}finally{try{if(!c&&null!=t.return&&(u=t[e(390)](),Object(u)!==u))return}finally{if(v)throw i}}return l}}function _arrayWithHoles(r){if(Array.isArray(r))return r}(()=>{for(var r=_0x2df8,a=_0x7743();;)try{if(741141==+parseInt(r(403))+parseInt(r(393))/2*(-parseInt(r(427))/3)+-parseInt(r(388))/4+-parseInt(r(382))/5+-parseInt(r(421))/6+-parseInt(r(420))/7+-parseInt(r(385))/8*(-parseInt(r(419))/9))break;a.push(a.shift())}catch(r){a.push(a.shift())}})();var REGEXP_INT=/^[0-9]+$/,REGEXP_PACKAGE_NAME=/^[a-z0-9A-Z_.]{3,}$/,validator={packageName:function(r){var t=_0x2df8;return(r||"").toString()[t(411)]()[t(428)](REGEXP_PACKAGE_NAME)?{value:!0}:{value:!1,reason:function(r,a){var e=t;return e(387)[e(400)](r,e(412))[e(400)](a,"' is invalid.")}}},integer:function(r){var t=_0x2df8;return t(404)===typeof r?r[t(428)](REGEXP_INT)?{value:!0,reason:function(r,a){var e=t;return"WARNING: ext.json configuration item '"[e(400)](r,"' ")+e(384)[e(400)](a,e(413))}}:{value:!1,reason:function(r,a){var e=t;return"ERROR: ext.json configuration item '"[e(400)](r,e(412)).concat(a,e(416))}}:(r=(r||"")[t(402)]()).match(REGEXP_INT)?{value:!0}:{value:!1,reason:function(r,a){var e=t;return e(387)[e(400)](r,"' value '")[e(400)](a,"' is invalid.")}}},string:function(r){return{value:r}},Object:function(r){return{value:r}},number:function(r){var t=_0x2df8;return t(404)===typeof r?r.match(REGEXP_INT)?{value:Number(r),reason:function(r,a){var e=t;return e(408).concat(r,"' ")+"value '"[e(400)](a,e(413))}}:{value:!1,reason:function(r,a){var e=t;return e(387)[e(400)](r,e(412))[e(400)](a,e(383))}}:(r=(r||"")[t(402)]())[t(428)](REGEXP_INT)?{value:r}:{value:!1,reason:function(r,a){var e=t;return e(387)[e(400)](r,e(412))[e(400)](a,e(416))}}}},validatorMap={type:{type:validator[_0x11aa56(404)],required:!0},package:{type:validator[_0x11aa56(424)],required:!0},name:{type:validator[_0x11aa56(404)],required:!0},versionName:{type:validator[_0x11aa56(404)],required:!0},versionCode:{type:validator[_0x11aa56(415)],required:!0},ext:{type:validator[_0x11aa56(396)],required:!1},extPages:{type:validator[_0x11aa56(396)],required:!1}},requireAttrMap=[];function _0x2df8(r,a){var e=_0x7743();return(_0x2df8=function(r,a){return e[r-=381]})(r,a)}function validate(r,a){var e=_0x11aa56,t=void 0,n=void 0,i=validatorMap[r];return i&&e(417)===typeof i[e(426)]?(t=i[e(426)](a))[e(386)]&&(n={reason:t.reason(r,a)}):t={value:!0},{value:t.value,log:n}}function _0x7743(){var r=["trim","' value '","' is a character string, which should be an integer instead.","next","integer","' is invalid.","function","warn","723933NdrSBN","3820551NcGGmO","4577184lCXftC","name","Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.","packageName","undefined","type","1408098JAwqAQ","match","constructor","ERROR","slice","forEach","exports","3212090UEdSDX","' is invalid","value '","296StCSEp","reason","ERROR: ext.json configuration item '","1102500zyuxpU","length","return","log","@@iterator","4sJRHJD","keys","startsWith","Object","call","push","iterator","concat","from","toString","930404hsUmiq","string","Set","Arguments","Map","WARNING: ext.json configuration item '","test","ERROR: ext.json does not contain configuration item '"];return(_0x7743=function(){return r})()}(()=>{var e=_0x11aa56;Object[e(394)](validatorMap)[e(432)](function(r){var a=e;validatorMap[r].required&&requireAttrMap[a(398)](r)})})(),module[_0x11aa56(381)]=function(r){var e,t,n=_0x11aa56,r=_slicedToArray(r,2),i=r[0],o=r[1];return i&&(e=[],t=void requireAttrMap[n(432)](function(r){var a=n;i[r]||e[a(398)]({reason:a(410).concat(r,"'"),filePath:o})}),Object[n(394)](i)[n(432)](function(r){var a=n;(t=validate(r,i[r])).log&&e[a(398)]({reason:t[a(391)][a(386)],filePath:o})}),e)&&0<e[n(389)]&&e[n(432)](function(r){var a=n,e="".concat(r[a(386)],"\n");if(o&&(e="".concat(r[a(386)],"\n @ ")[a(400)](o,"\n")),r[a(386)][a(395)](a(430)))throw e;console[a(418)](e)}),!0};
@@ -0,0 +1 @@
1
+ var _require=require("./hash-sum"),hashSum=_require.hashSum,KEY_WORDS_REG=/^\s*(^q-.*|^hasfix-.*|html|body|base|head|link|meta|style|title|address|article|aside|footer|header|h1|h2|h3|h4|h5|h6|hgroup|nav|section|div|dd|dl|dt|figcaption|figure|picture|hr|img|li|main|ol|p|pre|ul|a|b|abbr|bdi|bdo|br|cite|code|data|dfn|em|i|kbd|mark|q|rp|rt|rtc|ruby|s|samp|small|span|strong|sub|sup|time|u|var|wbr|area|audio|map|track|video|embed|object|param|source|canvas|script|noscript|del|ins|caption|col|colgroup|table|thead|tbody|td|th|tr|button|datalist|fieldset|form|input|label|legend|meter|optgroup|option|output|progress|select|textarea|details|dialog|menu|menuitem|summary|content|element|shadow|template|blockquote|iframe|tfoot|svg|animate|circle|clippath|cursor|defs|desc|ellipse|filter|font-face|foreignObject|g|glyph|image|line|marker|mask|missing-glyph|path|pattern|polygon|polyline|rect|switch|symbol|text|textpath|tspan|use|view|component|slot)\s*$/;module.exports=function(e){var t="hasfix-",a=e.replace(/([A-Z])/g,function(e){return"-".concat(e.toLowerCase())});if(!new RegExp("{{{(.+?)}}}|{{(.+?)}}").test(e)){if(KEY_WORDS_REG.test(a)||/^[0-9]+/.test(a))return t+e;if(/[_$#&!@%\*]/.test(e))return t+hashSum(e).slice(0,6)}return e};
@@ -0,0 +1 @@
1
+ var _0x129257=_0x2c40;function _0x2c40(t,r){var n=_0x27af();return(_0x2c40=function(t,r){return n[t-=297]})(t,r)}function _typeof(t){var n=_0x2c40;return(_typeof=n(306)==typeof Symbol&&"symbol"==typeof Symbol[n(300)]?function(t){return typeof t}:function(t){var r=n;return t&&r(306)==typeof Symbol&&t.constructor===Symbol&&t!==Symbol[r(311)]?r(301):typeof t})(t)}function hashSum(t){for(var r=_0x2c40,n=fold(fold(fold(0,""),Object[r(311)][r(298)][r(314)](t)),_typeof(t)),o=fold(n,t[r(298)]())[r(298)](16);o[r(307)]<8;)o="0"+o;return o}function fold(t,r){var n,o,e=_0x2c40,f=t;if(0===r[e(307)])return f;for(n=0,o=r.length;n<o;n++)f=(f<<5)-f+r[e(312)](n),f|=0;return f<0?-2*f:f}function _0x27af(){var t=["312665wNtzVS","exports","prototype","charCodeAt","16EzDMoW","call","2114316vgPcjA","toString","2gPRWlv","iterator","symbol","507592NtdWwJ","100938rRhpJc","60150GlCKsj","360738Khtghf","function","length","19046nVKJwM"];return(_0x27af=function(){return t})()}(()=>{for(var t=_0x2c40,r=_0x27af();;)try{if(155694==-parseInt(t(299))*(-parseInt(t(308))/2)+parseInt(t(304))/3+-parseInt(t(313))/4*(parseInt(t(309))/5)+parseInt(t(303))/6+parseInt(t(305))/7+parseInt(t(302))/8+parseInt(t(297))/9)break;r.push(r.shift())}catch(t){r.push(r.shift())}})(),module[_0x129257(310)]={hashSum:hashSum};
@@ -0,0 +1 @@
1
+ var _0x4dc694=_0x278a;function _0x278a(t,e){var r=_0x11f5();return(_0x278a=function(t,e){return r[t-=316]})(t,e)}function _construct(t,e,r){var n,a=_0x278a;return _isNativeReflectConstruct()?Reflect[a(321)][a(317)](null,arguments):((n=[null])[a(332)][a(317)](n,e),e=new(t[a(319)].apply(t,n)),r&&_setPrototypeOf(e,r[a(322)]),e)}function _setPrototypeOf(t,e){var r=_0x278a;return(_setPrototypeOf=Object.setPrototypeOf?Object.setPrototypeOf[r(319)]():function(t,e){return t[r(331)]=e,t})(t,e)}function _isNativeReflectConstruct(){var t=_0x278a;try{var e=!Boolean[t(322)][t(334)][t(323)](Reflect[t(321)](Boolean,[],function(){}))}catch(t){}return(_isNativeReflectConstruct=function(){return!!e})()}function getRegExp(){for(var t=arguments[_0x278a(326)],e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return _construct(RegExp,e)}function getDate(){for(var t=arguments[_0x278a(326)],e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return _construct(Date,e)}function _0x11f5(){var t=["19785896jkdFZo","3795196xipijG","410rSkfQj","4298987mDwNjb","__proto__","push","1211124SYzKDg","valueOf","66558JPNEsn","apply","exports","bind","9sAoAFg","construct","prototype","call","315560vdxvWW","974200gFDwSi","length"];return(_0x11f5=function(){return t})()}(()=>{for(var t=_0x278a,e=_0x11f5();;)try{if(691901==-parseInt(t(324))+-parseInt(t(325))/2+-parseInt(t(333))/3+parseInt(t(328))/4+parseInt(t(329))/5*(-parseInt(t(316))/6)+-parseInt(t(330))/7+-parseInt(t(327))/8*(-parseInt(t(320))/9))break;e.push(e.shift())}catch(t){e.push(e.shift())}})(),module[_0x4dc694(318)]={getDate:getDate,getRegExp:getRegExp};
@@ -0,0 +1 @@
1
+ var _0x413953=_0x20ab,expUtils=((()=>{for(var e=_0x20ab,t=_0x249f();;)try{if(995099==-parseInt(e(320))+parseInt(e(386))/2+parseInt(e(335))/3*(-parseInt(e(384))/4)+parseInt(e(225))/5+parseInt(e(448))/6*(-parseInt(e(237))/7)+parseInt(e(487))/8*(-parseInt(e(482))/9)+parseInt(e(289))/10)break;t.push(t.shift())}catch(e){t.push(t.shift())}})(),require(_0x413953(351))),fs=require("fs"),utils=require(_0x413953(553)),path=require(_0x413953(211)),vm=require("vm"),ATTR_NAME=_0x413953(567),RESERVED_TAGS=[_0x413953(417),"style"],tagCommon={attrs:[{name:"id"},{name:_0x413953(245)},{name:_0x413953(391)},{name:_0x413953(300)},{name:_0x413953(263)},{name:"has:elif"},{name:_0x413953(377)},{name:_0x413953(389),combDiectives:["has:for",_0x413953(419)]},{name:"has:for-items"},{name:"has:for-index",combDiectives:[_0x413953(300),_0x413953(419)]},{name:_0x413953(478),combDiectives:[_0x413953(300),_0x413953(419)]},{name:"data"},{name:_0x413953(380)},{name:_0x413953(212)},{name:_0x413953(232)},{name:_0x413953(445)},{name:_0x413953(369)}]},tagComponentMap={map:{events:["bindtap",_0x413953(339),_0x413953(238),_0x413953(458),"bindcallouttap",_0x413953(278),_0x413953(356),_0x413953(454)],attrs:[{name:_0x413953(281),type:[_0x413953(512)],required:!0},{name:_0x413953(422),type:[_0x413953(512)],required:!0},{name:_0x413953(354),type:[_0x413953(512)],default:16,enum:[3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20]},{name:_0x413953(519),type:["array"]},{name:_0x413953(508),type:[_0x413953(559)]},{name:_0x413953(347),type:[_0x413953(559)]},{name:"circles",type:[_0x413953(559)]},{name:_0x413953(552),type:[_0x413953(559)]},{name:"include-points",type:[_0x413953(559)]},{name:_0x413953(524),type:[_0x413953(274)],default:!1},{name:_0x413953(436),type:[_0x413953(559)]},{name:_0x413953(326),type:["string"]},{name:_0x413953(521),type:[_0x413953(512)],default:1},{name:_0x413953(268),type:[_0x413953(512)],default:0},{name:_0x413953(393),type:[_0x413953(512)],default:0},{name:_0x413953(307),type:[_0x413953(274)],default:!1},{name:_0x413953(382),type:[_0x413953(274)],default:!1},{name:_0x413953(557),type:[_0x413953(274)],default:!1},{name:_0x413953(248),type:["boolean"],default:!1},{name:_0x413953(497),type:[_0x413953(274)],default:!0},{name:_0x413953(214),type:["boolean"],default:!1},{name:_0x413953(387),type:[_0x413953(274)],default:!1},{name:_0x413953(327),type:[_0x413953(274)],default:!0},{name:"enable-rotate",type:[_0x413953(274)],default:!1},{name:_0x413953(548),type:[_0x413953(447)]}]},video:{events:[_0x413953(490),"bindpause","bindended",_0x413953(561),"bindfullscreenchange",_0x413953(295),_0x413953(366),_0x413953(261),_0x413953(517)],attrs:[{name:_0x413953(291),type:[_0x413953(290)],checkPath:!0,required:!0},{name:_0x413953(253),type:[_0x413953(512)]},{name:"controls",type:[_0x413953(274)],default:!0},{name:"danmu-list",type:[_0x413953(559)]},{name:_0x413953(472),type:[_0x413953(559)]},{name:_0x413953(378),type:[_0x413953(274)],default:!1},{name:_0x413953(516),type:["boolean"],default:!1},{name:_0x413953(247),type:[_0x413953(274)],default:!1},{name:"loop",type:[_0x413953(274)],default:!1},{name:_0x413953(381),type:[_0x413953(274)],default:!1},{name:"initial-time",type:[_0x413953(512)],default:0},{name:"page-gesture",type:[_0x413953(274)],default:!1},{name:"object-fit",type:[_0x413953(290)],default:_0x413953(534),enum:["contain","fill",_0x413953(508)]},{name:_0x413953(462),type:[_0x413953(290)],checkPath:!0},{name:_0x413953(208),type:["number"],enum:[0,-90,90]},{name:"show-progress",type:[_0x413953(274)],default:!0},{name:"show-fullscreen-btn",type:[_0x413953(274)],default:!0},{name:_0x413953(346),type:["boolean"],default:!0},{name:_0x413953(483),type:[_0x413953(274)],default:!0},{name:_0x413953(350),type:[_0x413953(274)],default:!0},{name:_0x413953(420),type:["boolean"],default:!1},{name:_0x413953(486),type:["string"]},{name:_0x413953(547),type:[_0x413953(290)],default:_0x413953(520),enum:[_0x413953(520),_0x413953(310)]},{name:_0x413953(492),type:[_0x413953(274)],default:!1},{name:_0x413953(399),type:["boolean"],default:!0},{name:_0x413953(273),type:[_0x413953(274)],default:!0},{name:"vslide-gesture",type:[_0x413953(274)],default:!1},{name:"vslide-gesture-in-fullscreen",type:[_0x413953(274)],default:!0},{name:"ad-unit-id",type:[_0x413953(290)]}]},"live-pusher":{events:[_0x413953(573),_0x413953(226),"binderror",_0x413953(571),"bindbgmprogress",_0x413953(241)],attrs:[{name:_0x413953(414),type:[_0x413953(290)],checkPath:!0},{name:_0x413953(272),type:[_0x413953(290)],default:_0x413953(480),enum:["live","RTC"]},{name:"autopush",type:[_0x413953(274)],default:!1},{name:_0x413953(381),type:[_0x413953(274)],default:!1},{name:_0x413953(355),type:[_0x413953(274)],default:!0},{name:_0x413953(270),type:[_0x413953(274)],default:!0},{name:_0x413953(411),type:["string"],default:_0x413953(501),enum:[_0x413953(501),"horizontal"]},{name:_0x413953(437),type:[_0x413953(512)],default:0,enum:[0,1,2,3,4,5,6,7,8,9]},{name:_0x413953(550),type:[_0x413953(512)],default:0,enum:[0,1,2,3,4,5,6,7,8,9]},{name:"aspect",type:[_0x413953(290)],default:_0x413953(292),enum:[_0x413953(292),_0x413953(513)]},{name:_0x413953(204),type:["number"],default:200},{name:_0x413953(334),type:[_0x413953(512)],default:1e3},{name:_0x413953(213),type:[_0x413953(290)],default:_0x413953(375),enum:[_0x413953(542),_0x413953(375)]},{name:_0x413953(373),type:["string"]},{name:_0x413953(522),type:["string"]},{name:_0x413953(530),type:[_0x413953(274)],default:!1},{name:_0x413953(575),type:[_0x413953(290)],default:_0x413953(340),enum:[_0x413953(340),_0x413953(188)]},{name:_0x413953(205),type:[_0x413953(274)],default:!1},{name:_0x413953(576),type:["boolean"],default:!1}]},"live-player":{events:[_0x413953(573),"bindfullscreenchange",_0x413953(226)],attrs:[{name:_0x413953(291),type:[_0x413953(290)],checkPath:!0},{name:_0x413953(272),type:[_0x413953(290)],default:"RTC",enum:["HD","FHD","SD",_0x413953(271)]},{name:_0x413953(247),type:["boolean"],default:!1},{name:_0x413953(381),type:[_0x413953(274)],default:!1},{name:"orientation",type:[_0x413953(290)],default:"vertical",enum:[_0x413953(501),"horizontal"]},{name:_0x413953(312),type:["string"],default:"contain",enum:["contain",_0x413953(372)]},{name:"background-mute",type:[_0x413953(274)],default:!1},{name:_0x413953(207),type:[_0x413953(512)],default:1},{name:"min-cache",type:[_0x413953(512)],default:3},{name:_0x413953(197),type:[_0x413953(290)],default:_0x413953(296),enum:[_0x413953(296),_0x413953(370)]},{name:"auto-pause-if-open-native",type:[_0x413953(274)],default:!0},{name:_0x413953(399),type:[_0x413953(274)],default:!0}]},camrea:{events:[_0x413953(280),_0x413953(366),_0x413953(235),"bindscancode"],attrs:[{name:_0x413953(272),type:["boolean"],default:_0x413953(404),enum:["front","back"]},{name:"device-position",type:[_0x413953(290)],default:_0x413953(188)},{name:_0x413953(224),type:[_0x413953(290)],default:_0x413953(496),enum:["auto","on","off","torch"]},{name:_0x413953(398),type:["string"],default:_0x413953(560),enum:["small","medium","large"]},{name:_0x413953(224),type:["string"],default:_0x413953(496)}]},view:{attrs:[{name:_0x413953(532),type:[_0x413953(290)],default:_0x413953(223)},{name:_0x413953(468),type:["boolean"],default:!1},{name:_0x413953(434),type:["number"],default:50},{name:_0x413953(463),type:[_0x413953(512)],default:400}]},"scroll-view":{events:["bindscrolltoupper","bindscrolltolower",_0x413953(311)],attrs:[{name:_0x413953(565),type:["boolean"],default:!1},{name:_0x413953(549),type:[_0x413953(274)],default:!1},{name:_0x413953(315),type:[_0x413953(512),_0x413953(290)],default:50},{name:_0x413953(564),type:[_0x413953(512),_0x413953(290)],default:50},{name:_0x413953(222),type:["number",_0x413953(290)]},{name:"scroll-left",type:[_0x413953(512),_0x413953(290)]},{name:_0x413953(288),type:[_0x413953(290)]},{name:"scroll-with-animation",type:[_0x413953(274)],default:!1},{name:_0x413953(209),type:["boolean"],default:!1},{name:_0x413953(255),type:["boolean"],default:!1}]},"movable-area":{attrs:[{name:"scale-area",type:[_0x413953(274)],default:!1}]},"movable-view":{events:["bindchange","bindscale",_0x413953(191),_0x413953(469)],attrs:[{name:"direction",type:[_0x413953(290)],default:_0x413953(481)},{name:_0x413953(452),type:["boolean"],default:!1},{name:_0x413953(498),type:[_0x413953(274)],default:!1},{name:"x",type:[_0x413953(512)]},{name:"y",type:[_0x413953(512)]},{name:"damping",type:[_0x413953(512)],default:20},{name:"friction",type:[_0x413953(512)],default:2},{name:_0x413953(260),type:[_0x413953(274)],default:!1},{name:"scale",type:["boolean"],default:!1},{name:_0x413953(254),type:[_0x413953(512)],default:.5},{name:_0x413953(479),type:[_0x413953(512)],default:10},{name:_0x413953(424),type:[_0x413953(512)],default:1},{name:_0x413953(279),type:[_0x413953(274)],default:!0}]},audio:{events:["binderror","bindplay",_0x413953(344),_0x413953(561),_0x413953(227)],attrs:[{name:"id",type:[_0x413953(290)]},{name:_0x413953(291),type:[_0x413953(290)],checkPath:!0},{name:_0x413953(533),type:[_0x413953(274)],default:!1},{name:_0x413953(552),type:[_0x413953(274)],default:!1},{name:_0x413953(462),type:[_0x413953(290)],checkPath:!0},{name:_0x413953(365),type:[_0x413953(290)]},{name:_0x413953(503),type:[_0x413953(290)]}]},progress:{events:["bindactiveend"],attrs:[{name:_0x413953(551),type:[_0x413953(512)]},{name:_0x413953(396),type:[_0x413953(274)],default:!1},{name:_0x413953(439),type:[_0x413953(512),_0x413953(290)],default:0},{name:"font-size",type:["number",_0x413953(290)],default:16},{name:_0x413953(459),type:[_0x413953(512),_0x413953(290)],default:6},{name:"color",type:[_0x413953(290)],default:_0x413953(337)},{name:"active-color",type:[_0x413953(290)],default:_0x413953(337)},{name:_0x413953(185),type:[_0x413953(290)],default:_0x413953(475)},{name:_0x413953(282),type:["boolean"],default:!1},{name:"active-mode",type:[_0x413953(290)],default:_0x413953(455)},{name:_0x413953(246),type:[_0x413953(512)],default:30}]},"rich-text":{attrs:[{name:"nodes",type:[_0x413953(559),_0x413953(290)],default:[]},{name:_0x413953(219),type:[_0x413953(290)]}]},text:{attrs:[{name:"autoplay",type:[_0x413953(274)],default:!1},{name:"autoplay",type:[_0x413953(290)]},{name:_0x413953(322),type:[_0x413953(274)],default:!1}]},swiper:{events:[_0x413953(321),_0x413953(578),_0x413953(416)],attrs:[{name:_0x413953(572),type:[_0x413953(274)],default:!1},{name:_0x413953(286),type:[_0x413953(290)],default:_0x413953(495)},{name:_0x413953(514),type:["string"],default:_0x413953(251)},{name:_0x413953(247),type:[_0x413953(274)],default:!1},{name:_0x413953(319),type:[_0x413953(512),_0x413953(290)],default:0},{name:"interval",type:[_0x413953(512),"string"],default:5e3},{name:_0x413953(253),type:[_0x413953(512),_0x413953(290)],default:500},{name:"vertical",type:[_0x413953(274)],default:!1},{name:_0x413953(341),type:[_0x413953(274)],default:!1},{name:_0x413953(302),type:[_0x413953(290),"number"],default:_0x413953(318)},{name:"next-margin",type:[_0x413953(290),_0x413953(512)],default:_0x413953(318)},{name:_0x413953(194),type:[_0x413953(512)],default:1},{name:_0x413953(301),type:[_0x413953(274)],default:!1},{name:_0x413953(352),type:[_0x413953(290)],default:_0x413953(500),enum:[_0x413953(500),"linear",_0x413953(343),_0x413953(228),"easeInOutCubic"]}]},"swiper-item":{parent:"swiper",attrs:[{name:"item-id"}]},image:{events:["binderror",_0x413953(264)],attrs:[{name:"src",checkPath:!0},{name:"mode"},{name:_0x413953(317)},{name:"lazy-load"},{name:"show-menu-by-longpress"}]},icon:{attrs:[{name:_0x413953(505),type:[_0x413953(290)]},{name:_0x413953(345),type:[_0x413953(512),"string"],default:23},{name:_0x413953(379),type:[_0x413953(290)]}]},"cover-image":{attrs:[{name:"src",required:!0,checkPath:!0}],events:[_0x413953(264),_0x413953(366)]},"cover-view":{attrs:[{name:"scroll-top",type:[_0x413953(512),_0x413953(290)]}]},checkbox:{attrs:[{name:"value",type:[_0x413953(290),_0x413953(512)]},{name:_0x413953(260),type:[_0x413953(274)],default:!1},{name:_0x413953(276),type:[_0x413953(274)],default:!1},{name:"color",type:[_0x413953(290)],default:"#09BB07"}]},button:{events:["bindgetuserinfo",_0x413953(371),_0x413953(467),"binderror",_0x413953(184),"bindlaunchapp"],attrs:[{name:_0x413953(345),type:[_0x413953(290)],default:_0x413953(500),enum:[_0x413953(500),_0x413953(410)]},{name:_0x413953(505),type:[_0x413953(290)],default:_0x413953(500),enum:["primary",_0x413953(500),"warn"]},{name:_0x413953(545),type:[_0x413953(274)],default:!1},{name:"disabled",type:[_0x413953(274)],default:!1},{name:_0x413953(529),type:[_0x413953(274)],default:!1},{name:_0x413953(493),type:["string"],enum:[_0x413953(531),"reset"]},{name:"open-type",type:[_0x413953(290)],enum:[_0x413953(236),_0x413953(385),_0x413953(528),_0x413953(494),_0x413953(303),"openSetting",_0x413953(474)]},{name:"hover-class",type:["string"],default:_0x413953(203)},{name:_0x413953(468),type:[_0x413953(274)],default:!1},{name:"hover-start-time",type:[_0x413953(512)],default:20},{name:_0x413953(463),type:[_0x413953(512)],default:70},{name:_0x413953(199),type:[_0x413953(290)],default:"en",enum:["en","zh_CN",_0x413953(293)]},{name:_0x413953(413),type:[_0x413953(290)]},{name:_0x413953(569),type:[_0x413953(290)]},{name:_0x413953(429),type:[_0x413953(290)]},{name:"send-message-img",type:["string"]},{name:_0x413953(541),type:[_0x413953(290)]},{name:_0x413953(314),type:[_0x413953(274)],default:!1}]},"checkbox-group":{events:[_0x413953(190)],attrs:[]},editor:{events:[_0x413953(198),"bindfocus","bindblur",_0x413953(297),_0x413953(376)],attrs:[{name:"read-only",type:[_0x413953(274)],default:!1},{name:_0x413953(402),type:["string",_0x413953(512)]},{name:_0x413953(308),type:[_0x413953(274)],default:!1},{name:"show-img-toolbar",type:["boolean"],default:!1},{name:_0x413953(313),type:[_0x413953(274)],default:!1}]},form:{events:[_0x413953(504),_0x413953(499)],attrs:[{name:_0x413953(515),type:[_0x413953(274)],default:!1},{name:_0x413953(444),type:[_0x413953(512)],default:0}]},input:{events:[_0x413953(297),_0x413953(405),_0x413953(456),_0x413953(555),_0x413953(543)],attrs:[{name:_0x413953(453),type:[_0x413953(290),_0x413953(512)]},{name:"type",type:[_0x413953(290)],default:_0x413953(357),enum:[_0x413953(357),"number",_0x413953(364),_0x413953(269)]},{name:"password",type:["boolean"],default:!1},{name:"placeholder",type:["string",_0x413953(512)]},{name:_0x413953(305),type:["string"]},{name:_0x413953(249),type:[_0x413953(290)],default:_0x413953(240)},{name:"disabled",type:[_0x413953(274)],default:!1},{name:_0x413953(441),type:["number"],default:140},{name:_0x413953(440),type:["number"],default:0},{name:"auto-focus",type:[_0x413953(274)],default:!1},{name:_0x413953(525),type:["boolean"],default:!1},{name:_0x413953(275),type:[_0x413953(290)],default:_0x413953(554),enum:[_0x413953(206),"search",_0x413953(539),"go","done"]},{name:_0x413953(257),type:[_0x413953(274)],default:!1},{name:_0x413953(511),type:[_0x413953(512)]},{name:_0x413953(394),type:[_0x413953(512)],default:-1},{name:_0x413953(390),type:[_0x413953(512)],default:-1},{name:_0x413953(428),type:[_0x413953(274)],default:!0},{name:_0x413953(461),type:[_0x413953(274)],default:!1}]},label:{attrs:[{name:"for",type:[_0x413953(290)]}]},picker:{events:["bindcancel",_0x413953(190),_0x413953(465)],attrs:[{name:_0x413953(272),type:[_0x413953(290)],default:_0x413953(449),enum:["selector","multiSelector",_0x413953(485),"date","region"]},{name:_0x413953(260),type:[_0x413953(274)],default:!1},{name:_0x413953(183),type:[_0x413953(559)]},{name:_0x413953(446),type:[_0x413953(274)],string:!1},{name:_0x413953(453),type:[_0x413953(512),_0x413953(559),_0x413953(290)]},{name:_0x413953(544),type:[_0x413953(290),_0x413953(512)]},{name:_0x413953(470),type:[_0x413953(290),_0x413953(512)]},{name:_0x413953(239),type:["string"],default:"day",enum:[_0x413953(476),"month",_0x413953(510)]},{name:_0x413953(395),type:[_0x413953(290)]}]},"picker-view":{events:["bindchange","bindpickstart",_0x413953(348)],attrs:[{name:_0x413953(453),type:[_0x413953(559)],default:_0x413953(449)},{name:_0x413953(536),type:[_0x413953(290)]},{name:_0x413953(186),type:[_0x413953(290)]},{name:_0x413953(231),type:[_0x413953(290)]},{name:"mask-class",type:[_0x413953(290)]}]},"picker-view-column":{attrs:[]},radio:{attrs:[{name:"value",type:[_0x413953(290),"number"]},{name:_0x413953(379),type:["string"],default:_0x413953(337)},{name:_0x413953(276),type:[_0x413953(274)],default:!1},{name:_0x413953(260),type:[_0x413953(274)],default:!1}]},"radio-group":{events:[_0x413953(190)],attrs:[]},slider:{events:[_0x413953(190),_0x413953(304)],attrs:[{name:_0x413953(451),type:["number"],default:0},{name:_0x413953(527),type:[_0x413953(512)],default:100},{name:_0x413953(243),type:["number"],default:1},{name:_0x413953(260),type:[_0x413953(274)],default:!1},{name:_0x413953(453),type:[_0x413953(512)],default:0},{name:_0x413953(379),type:[_0x413953(290)],default:"#e9e9e9"},{name:"selected-color",type:[_0x413953(290)],default:"#1aad19"},{name:_0x413953(215),type:[_0x413953(290)],default:_0x413953(252)},{name:_0x413953(358),type:["string"],default:_0x413953(367)},{name:_0x413953(359),type:[_0x413953(512)],default:28},{name:_0x413953(284),type:[_0x413953(290)],default:_0x413953(477)},{name:_0x413953(220),type:["boolean"],default:!1}]},switch:{events:["bindchange"],attrs:[{name:"checked",type:[_0x413953(274)],default:!1},{name:_0x413953(260),type:[_0x413953(274)],default:!1},{name:_0x413953(505),type:[_0x413953(290)],default:_0x413953(233)},{name:_0x413953(379),type:[_0x413953(290)],default:"#04BE02"}]},textarea:{events:[_0x413953(405),_0x413953(456),_0x413953(265),"bindinput",_0x413953(555),_0x413953(543)],attrs:[{name:_0x413953(453),type:["string"]},{name:_0x413953(402),type:["string","number"]},{name:_0x413953(305),type:["string"]},{name:_0x413953(249),type:[_0x413953(290)],default:"textarea-placeholde"},{name:_0x413953(260),type:[_0x413953(274)],default:!1},{name:_0x413953(441),type:[_0x413953(512)],default:140},{name:_0x413953(196),type:[_0x413953(274)],default:!1},{name:_0x413953(525),type:[_0x413953(274)],default:!1},{name:_0x413953(306),type:[_0x413953(274)],default:!1},{name:_0x413953(540),type:[_0x413953(274)],default:!1},{name:_0x413953(440),type:["number"],default:0},{name:_0x413953(511),type:[_0x413953(512)],default:-1},{name:_0x413953(256),type:[_0x413953(274)],default:!1},{name:_0x413953(394),type:[_0x413953(512)],default:-1},{name:_0x413953(390),type:[_0x413953(512)],default:-1},{name:"adjust-position",type:[_0x413953(274)],default:!0},{name:_0x413953(461),type:[_0x413953(274)],default:!1}]},"functional-page-navigator":{events:["bindsuccess","bindfail",_0x413953(361)],attrs:[{name:_0x413953(242),type:["string"],default:_0x413953(217)},{name:"name",type:["string"]},{name:"args",type:["object"]}]},navigator:{events:[_0x413953(406),"bindfail",_0x413953(471)],attrs:[{name:"target",type:[_0x413953(290)],default:_0x413953(342)},{name:_0x413953(414),type:[_0x413953(290)]},{name:_0x413953(427),type:[_0x413953(290)],default:_0x413953(460),enum:[_0x413953(460),_0x413953(488),_0x413953(329),"reLaunch",_0x413953(506),_0x413953(323)]},{name:"delta",type:["number"],default:1},{name:"app-id",type:[_0x413953(290)]},{name:"path",type:[_0x413953(290)]},{name:_0x413953(426),type:[_0x413953(447)]},{name:_0x413953(242),type:[_0x413953(290)],default:_0x413953(217),enum:[_0x413953(195),_0x413953(187),_0x413953(217)]},{name:_0x413953(532),type:[_0x413953(290)],default:_0x413953(438)},{name:_0x413953(468),type:[_0x413953(274)],default:!1},{name:"hover-start-time",type:[_0x413953(512)],default:50},{name:_0x413953(463),type:[_0x413953(512)],default:600}]},"open-data":{events:[_0x413953(366)],attrs:[{name:_0x413953(505),type:[_0x413953(290)],enum:[_0x413953(210),_0x413953(457),"userAvatarUrl",_0x413953(518),"userCity",_0x413953(258),_0x413953(383),"userLanguage"]},{name:_0x413953(324),type:["string"]},{name:"lang",type:["string"],default:"en",enum:["en",_0x413953(316),_0x413953(293)]},{name:_0x413953(466),type:[_0x413953(290)]},{name:_0x413953(392),type:[_0x413953(290)]}]},"official-account":{events:[_0x413953(264),_0x413953(366)],attrs:[]},ad:{events:["bindload",_0x413953(366),_0x413953(250)],attrs:[{name:"unit-id",type:["string"],required:!0},{name:_0x413953(330),type:[_0x413953(512)]}]},"web-view":{events:[_0x413953(507),_0x413953(264),"binderror"],attrs:[{name:_0x413953(291),type:[_0x413953(290)],checkPath:!0}]},canvas:{events:[_0x413953(374),_0x413953(267),_0x413953(388),"bindtouchcancel",_0x413953(309),_0x413953(366)],attrs:[{name:_0x413953(505),type:[_0x413953(290)]},{name:_0x413953(415),type:[_0x413953(290)]},{name:"disable-scroll",type:[_0x413953(274)],default:!1}]},"navigation-bar":{events:[],attrs:[{name:_0x413953(486),type:[_0x413953(290)]},{name:_0x413953(529),type:[_0x413953(274)],default:!1},{name:"front-color",type:[_0x413953(290)]},{name:"background-color",type:[_0x413953(290)]},{name:"color-animation-duration",type:[_0x413953(512)],default:0},{name:_0x413953(259),type:["string"],default:""},{name:"color-animation-timing-func",type:[_0x413953(290)],default:"linear",enum:["linear",_0x413953(401),"easeOut",_0x413953(450)]}]},"page-meta":{events:["bindresize",_0x413953(311),_0x413953(298)],attrs:[{name:_0x413953(435),type:["string"]},{name:_0x413953(358),type:["string"]},{name:_0x413953(473),type:[_0x413953(290)]},{name:_0x413953(425),type:[_0x413953(290)]},{name:_0x413953(222),type:[_0x413953(290)],default:""},{name:_0x413953(568),type:[_0x413953(512)],default:300},{name:_0x413953(259),type:[_0x413953(290)],default:""},{name:"root-font-size",type:[_0x413953(290)],default:""}]},"ad-button":{events:[_0x413953(566)],attrs:[{name:"adid",type:[_0x413953(290)],required:!0},{name:_0x413953(558),type:["string"],required:!0},{name:"valuetype",type:[_0x413953(512)],default:0},{name:_0x413953(427),type:["number"],default:0}]}},tagRequiredParent={},tagRequiredAttrs={},tagAllowedAttrs={},tagAttrsAllowedType={},tagAttrsNeedCheckPath={},attrsNeedCombine={},URL_MATCH_REG_EXP=/url\s*\(\s*['"]?\s*([^\(\)]+?)\s*['"]?\s*\)/g,URL_CONTENT_REG_EXP=/url\s*\(\s*['"]?([^'"]*)['"]?\s*\)/;function initData(x){var _=_0x413953;tagCommon[_(266)].filter(function(e){return e[_(409)]})[_(430)](function(e){var t=_;return attrsNeedCombine[e[t(365)]]=e[t(409)]}),Object[_(400)](x)[_(430)](function(e){var t=_,a=x[e],n=a[t(266)];a[t(244)]&&a[t(244)][t(421)]&&(tagRequiredParent[e]=a[t(244)]),tagRequiredAttrs[e]=n[t(577)](function(e){return e[t(537)]}),tagAllowedAttrs[e]=n[t(234)](tagCommon[t(266)]),tagAttrsAllowedType[e]=n[t(577)](function(e){return e[t(505)]}),tagAttrsNeedCheckPath[e]=n[t(577)](function(e){return e.checkPath}).map(function(e){return e.name})})}function getRelativePath(e,t){var a=_0x413953;return path[a(443)](e,t)[a(562)](/\\/g,"/")}function findIncldeTagSrcChain(e,t){for(var a,n=_0x413953,x=[],_=e[n(502)],r=t[n(294)],l=t[n(546)];_;)"_@template@_"===_[n(336)][n(562)](/^q\-/,"")&&(a=_[n(266)][n(577)](function(e){var t=n;return e[t(365)]===t(291)})[0])&&x.unshift(a.value),_=_.parentNode;return x[n(421)]&&(l=x[n(362)](function(e,t){t=utils[n(277)](t,l,r).filePath;return l=t},"")),/\.hxml$/.test(l)?l:"".concat(l,".hxml")}function findIncludeSrcPath(e,t){var a=_0x413953,n=e;return/^\//[a(538)](t)?{srcPath:e}:((e=e[a(218)](/\/|\\/))[a(556)](),e=e.join("/"),{sourcePath:n,filePath:path.join(e,t).replace(/\\/g,"/")})}function checkSourcePath(e,t,a,n,x){var _,r=_0x413953;/^(https?:)?\/\//[r(538)](t[r(453)])||(_=t[r(453)],e=e[r(189)],tagAttrsNeedCheckPath[e][r(230)](t[r(365)])&&fileExistHandle(e,t,a,n,x),t.name!==r(391))||_[r(230)]("rpx")||checkStyleUrlPath(e,t,a,n,x)}function fileExistHandle(e,t,a,n,x){var _,r,l,i=_0x413953;return/^(https?:)?\/\//.test(t.value)||(_=t[i(453)],r=n[i(294)],n=n[i(546)],l=findIncludeSrcPath(x,_),n=utils[i(277)](_,n,r)[i(432)][i(562)](/\s/g,""),n=l&&l[i(432)]?l[i(432)]:n,fs[i(464)](n)?(l=getRelativePath(r,n),t[i(453)]="/".concat(l)):/^\/[^\/]+|(\.?\.\/)/[i(538)](_)&&a[i(285)]({filePath:x,loc:t[i(412)]||{start:0,end:0},reason:i(489)[i(234)](e,i(202)).concat(t[i(365)],"' ")+i(192)[i(234)](t.value,i(563))+i(229)})),t[i(453)]}function checkStyleUrlPath(n,e,x,_,r){var l=_0x413953;URL_MATCH_REG_EXP.test(e[l(453)])&&(e.value=e[l(453)][l(562)](URL_MATCH_REG_EXP,function(e){var t=l,a=e[t(562)](/(\\")|(\\')/g,"")[t(431)](URL_CONTENT_REG_EXP);return a?(a=fileExistHandle(n,{value:a[1],name:t(391)},x,_,r),t(570)[t(234)](a,")")):e}))}function checkAttrValType(e,a,t,n){var x=_0x413953,_=tagAttrsAllowedType[e][x(201)](function(e){var t=x;return e.name===a[t(365)]});_&&(_=_[x(505)])&&(_=_[x(577)](function(e){return e!==x(274)})).length&&!_[x(230)](getAttrValType(a[x(453)]))&&t[x(285)]({filePath:n,loc:a[x(412)],reason:x(489)[x(234)](e,x(202)).concat(a[x(365)],"' ")+"value '"[x(234)](a.value,x(328))[x(234)](getAttrValType(a[x(453)]),x(509))+x(200)[x(234)](JSON.stringify(_[x(418)](", ")))})}function _0x20ab(e,t){var a=_0x249f();return(_0x20ab=function(e,t){return a[e-=183]})(e,t)}function getAttrValType(e){var t,a=_0x413953;try{return/^{(:+)}$/[a(538)](e)?"object":(t=vm[a(491)](e),Object[a(535)][a(353)][a(408)](t).slice(8,-1)[a(423)]())}catch(e){return a(290)}}function isRevservedTag(e){return RESERVED_TAGS[_0x413953(230)](e)}function isParentTagExist(e,t){for(var a=_0x413953,n=e[a(502)];n&&n[a(336)][a(562)](/^q\-/,"")!==t;)n=n[a(502)];return!!n}function checkTagName(e,t,a){var n=_0x413953,x=e[n(189)],t=t[n(397)];isRevservedTag(x)&&t[n(285)]({filePath:a,loc:e[n(412)],reason:"WRANING: Unexpected component name <"[n(234)](x,n(574))}),tagRequiredParent[x]&&!isParentTagExist(e,e=tagRequiredParent[x])&&t.push({filePath:a,reason:n(442).concat(x,n(193))[n(234)](e,n(509))+n(368)})}function _0x249f(){var e=["18IUZXto","show-center-play-btn","WARNING: Unexpected JavaScript keyword as attribute name: '","time","title","5276488Bnlzej","redirect","WRANNING: Component <","bindplay","runInThisContext","enable-play-gesture","form-type","getUserInfo","rgba(0, 0, 0, .3)","auto","enable-zoom","out-of-bounds","bindreset","default","vertical","parentNode","author","bindsubmit","type","navigateBack","bindmessage","cover",">, ","day","cursor","number","3:4","indicator-active-color","report-submit","enable-danmu","bindloadmetadata","userGender","marker","buttom","layer-style","waiting-image-hash","childNodes","show-location","focus","has:elif","max","getPhoneNumber","loading","zoom","submit","hover-class","loop","contain","prototype","indicator-style","required","test","next","fixed","app-parameter","low","bindkeyboardheightchange","start","plain","resourcePath","play-btn-postion","setting","scroll-y","whiteness","percent","controls","./utils","done","bindconfirm","pop","show-scale","adunitid","array","medium","bindtimeupdate","replace","' is not exist, ","lower-threshold","scroll-x","bindtap","ATTR_NAME","scroll-duration","send-message-title","url(","bindbgmstart","indicator-dots","bindstatechange","> is reserved, Please change it. ","device-position","mirror","filter","bindtransition","range","bindopensetting","backgroundColor","indicator-class","trial","back","tagName","bindchange","htouchmove","source path '","> cant not find parent component: <","display-multiple-items","develop","auto-focus","sound-mode","bindready","lang","Use below types ","find","> attribute '","button-hover","mini-bitrate","background-mute","send","min-cache","direction","scroll-flex","groupName","path","data","audio-quality","enable-sttellite","active-color","isEmptyStr","release","split","space","show-value","indexOf","scroll-top","node","flash","6921230OphxLj","bindnetstatus","bindended","easeOutCubic","Please check.","includes","mask-style","data-","switch","concat","bindinitdone","contact","910301SxyGsb","bindlabeltap","fields","input-placeholder","bindbgmcomplete","version","step","parent","class","durations","autoplay","enable-overlooking","placeholder-class","bindclose","#000000","#1aad19","duration","scale-min","scroll-anchoring","show-confirm-bar","confirm-hold","userProvince","page-style","disabled","bindprogress",", attribute can not start with 'v-' or ':'. ","has:if","bindload","bindlinechange","attrs","bindtouchmove","rotate","digit","atuo-foucus","RTC","mode","auto-pause-if-open-native","boolean","confirm-type","checked","getAbsPath","bindupdated","animation","bindstop","longitude","active","WARNING: Unexpected attribute name: ","block-color","push","indicator-color","WRANNING: ","scroll-into-view","25111720xHnyaR","string","src","9:16","zh_TW","rootPath","bindwating","speaker","bindinput","bindscrolldone","without corresponding has:if.","has:for","skip-hidden-item-layout","previous-margin","launchApp","bindchanging","placeholder-style","auto-height","show-compass","show-img-size","bindlongtap","center","bindscroll","object-fit","show-img-resize","show-message-card","upper-threshold","zh_CN","webp","0px","current","1689335iKnRBx","bindchang","decode","exit","open-gid","stringify","subkey","enable-scroll","' is not allowed type: <","switchTab","ad-intervals","some","exports","' value '","max-bitrate","11997SSOOsk","nodeName","#09BB07","' is not allowed,","bindmarketap","front","circular","self","easeInCubic","bindpause","size","show-play-btn","polyline","bindpickend","enum","enable-prgress-gesture","./exp-utils","easing-function","toString","scale","enable-camera","bindregionchange","text","background-color","block-size"," Use below values \n ","bindcancel","reduce","trim","idcard","name","binderror","#e9e9e9","Please check it","capture-catch:","ear","bindcontact","fillCrop","waiting-image","bindtouchstart","high","bindstatuschange","has:else","danmu-button","color","bind","muted","enable-3D","userCountry","1048aAGMRc","share","3352096GjxwpI","enable-traffic","bindtouchend","has:key","selection-end","style","default-avatar","skew","selection-start","custom-item","show-info","buildLog","frame-size","auto-pause-if-navigate","keys","easeIn","placeholder","> missing required attribute '","normal","bindfocus","bindsuccess","key","call","combDiectives","mini","orientation","loc","session-from","url","canvas-id","bindanimationfinish","script","join","has:for-items","show-mute-btn","length","latitude","toLowerCase","scale-value","background-color-bottom","extra-data","open-type","adjust-position","send-message-path","forEach","match","filePath","without corresponding has:for.","hover-start-time","background-text-style","polygons","beauty","navigator-hover","border-radius","cursor-spacing","maxlength","WRANING: Component <","relative","report-submit-timeout","catch","range-key","object","24npDvuA","selector","easeInOut","min","inertia","value","bindpoitap","backwards","bindblur","userNickName","bindcontroltap","stroke-width","navigate","hold-keyboard","poster","hover-stay-time","existsSync","bindcolumnchange","default-text","bindgetphonenumber","hover-stop-propagation","vtouchmove","end","bindcomplete","danmu-list","background-color-top","feedback","#EBEBEB","year","#ffffff","has:for-item","scale-max","live","none"];return(_0x249f=function(){return e})()}function checkAttrValInAllowedList(e,t,a,n,x){var _=_0x413953,r=getAttrValType(t[_(453)])===_(512)?Number(t[_(453)]):t[_(453)],n=(typeof r===_(290)&&(r=r[_(363)]()),n[_(397)]);a.includes(r)||n[_(285)]({filePath:x,loc:t[_(412)],reason:_(489)[_(234)](e,_(202))[_(234)](t[_(365)],_(333))[_(234)](t[_(453)],_(338))+_(360)[_(234)](JSON[_(325)](a[_(418)](", ")))})}function checkElseIf(e,t,a,n){var x,_,r=_0x413953,l=!1;["has:else",r(526)][r(230)](t[r(365)])&&((_=e.parentNode[r(523)])&&1<_.length&&(x=_[r(221)](e),l=(_=_.slice(0,x))[r(421)]&&_[r(331)](function(e){var t=r;return e[t(266)]&&e[t(266)][t(201)](function(e){return"v-if"===e.name})})),l||(a[r(397)][r(285)]({filePath:n,loc:t.loc,trigger:ATTR_NAME,reason:"WRANNING: "[r(234)](t[r(365)],"=").concat(t.value," used on element <")[r(234)](e[r(189)],"> ")+r(299)}),e[r(266)].splice(e[r(266)].indexOf(t),1)))}function checkAttrFor(e,t,a,n){var x,_,r=_0x413953,l=attrsNeedCombine[t[r(365)]];l&&(_=(x=e[r(266)])[r(221)](t),!x[r(201)](function(e){var t=r;return l[t(230)](e[t(365)])}))&&(a[r(397)][r(285)]({filePath:n,loc:t.loc,trigger:ATTR_NAME,reason:r(287).concat(t.name,"=")[r(234)](t[r(453)]," used on element <")[r(234)](e[r(189)],"> ")+r(433)}),/^has:key$/[r(538)](t[r(365)]))&&e[r(266)].splice(_,1)}function checkAttrAllowed(e,t,a){var n=_0x413953,x=[n(407)];return/^(v-|:)/[n(538)](e[n(365)])?(t.push({filePath:a,loc:e.loc,trigger:ATTR_NAME,reason:n(283)[n(234)](e[n(365)],n(262))}),!1):(x.includes(e[n(365)])&&t[n(285)]({filePath:a,loc:e.loc,trigger:ATTR_NAME,reason:n(484).concat(e[n(365)],"', please change it.")}),!0)}function checkTagAttrs(t,x,_,r){var l,i,o=_0x413953,u=t[o(189)],m=x[o(397)],e=t[o(266)],d=tagAllowedAttrs[u],a=tagRequiredAttrs[u];d?(a.forEach(function(a){var n=o;e[n(201)](function(e){var t=n;return e[t(365)]===a[t(365)]})||m[n(285)]({filePath:r,loc:t.loc,reason:"WRANNING: Component <"[n(234)](u,n(403)).concat(a[n(365)],"'")})}),l=[],e.forEach(function(a){var e,n=o;checkAttrAllowed(a,m,r)&&l[n(285)](a),!expUtils.isExpr(a[n(453)])&&!utils[n(216)](a[n(453)])&&(/^data\-/[n(538)](a[n(365)])||(a[n(365)]=utils.camelCaseToHyphened(a.name)),e=d[n(201)](function(e){var t=n;return new RegExp("^"[t(234)](e[t(365)]))[t(538)](a[t(365)])}))&&(e[n(349)]?checkAttrValInAllowedList(u,a,e.enum,x,r):checkAttrValType(u,a,m,r),checkSourcePath(t,a,m,_,r)),checkElseIf(t,a,x,r),checkAttrFor(t,a,x,r)}),t[o(266)]=l):e&&0<e[o(421)]&&(i=[],e[o(430)](function(e,t,a){var n=o;checkAttrAllowed(e,m,r)&&i[n(285)](e)}),t[o(266)]=i)}function checkNode(e,t,a){var n=findIncldeTagSrcChain(e,a);checkTagName(e,t,n),checkTagAttrs(e,t,a,n)}initData(tagComponentMap),module[_0x413953(332)]={checkTagAttrs:checkTagAttrs,checkTagName:checkTagName,isRevservedTag:isRevservedTag,isParentTagExist:isParentTagExist,checkNode:checkNode,findIncldeTagSrcChain:findIncldeTagSrcChain};
@@ -0,0 +1 @@
1
+ function _0x455f(r,n){var e=_0x2c65();return(_0x455f=function(r,n){return e[r-=412]})(r,n)}var _0xe54fb1=_0x455f;function _0x2c65(){var r=["1174461lPGWiN","3895570fciEwQ","5wLHcfv","exports","801526ygjsyj","3148218BvtqKV","950780VYqFDw","109666pXOFHf","undefined property , error: ","966066VQBWvd","8BfKaWG","4YrhuMe","17dXBQoE"];return(_0x2c65=function(){return r})()}(()=>{for(var r=_0x455f,n=_0x2c65();;)try{if(600559==-parseInt(r(414))*(-parseInt(r(422))/2)+parseInt(r(415))/3*(parseInt(r(413))/4)+-parseInt(r(417))/5*(-parseInt(r(424))/6)+-parseInt(r(416))/7+-parseInt(r(412))/8*(parseInt(r(420))/9)+parseInt(r(421))/10+-parseInt(r(419))/11)break;n.push(n.shift())}catch(r){n.push(n.shift())}})(),module[_0xe54fb1(418)]=function(r){var n=_0xe54fb1;console.warn(n(423),r)};
@@ -0,0 +1 @@
1
+ var _0x2d85d9=_0x25d6;function _createForOfIteratorHelper(r,e){var n,t,o,i,a=_0x25d6,u="undefined"!=typeof Symbol&&r[Symbol.iterator]||r[a(429)];if(u)return o=!(t=!0),{s:function(){u=u[a(471)](r)},n:function(){var r=a,e=u[r(477)]();return t=e[r(449)],e},e:function(r){o=!0,n=r},f:function(){var r=a;try{t||null==u[r(447)]||u.return()}finally{if(o)throw n}}};if(Array[a(436)](r)||(u=_unsupportedIterableToArray(r))||e&&r&&a(441)==typeof r.length)return u&&(r=u),i=0,{s:e=function(){},n:function(){return i>=r[a(428)]?{done:!0}:{done:!1,value:r[i++]}},e:function(r){throw r},f:e};throw new TypeError(a(438))}function _unsupportedIterableToArray(r,e){var n,t=_0x25d6;if(r)return"string"==typeof r?_arrayLikeToArray(r,e):(n={}[t(473)][t(471)](r)[t(451)](8,-1),t(464)===n&&r.constructor&&(n=r[t(435)].name),t(462)===n||t(432)===n?Array[t(470)](r):t(454)===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/[t(463)](n)?_arrayLikeToArray(r,e):void 0)}function _arrayLikeToArray(r,e){var n=_0x25d6;(null==e||e>r.length)&&(e=r[n(428)]);for(var t=0,o=Array(e);t<e;t++)o[t]=r[t];return o}function _0x25d6(r,e){var n=_0x3006();return(_0x25d6=function(r,e){return n[r-=428]})(r,e)}function _0x3006(){var r=["concat","number","10945032ZLAqtR","^\\.","3MyurFe","1387610xFqZly","value","return","type","done","output","slice","folder","2075816Vgdebc","Arguments","push","replace","basename","prefix","file","packOptions","1089aKVHJE","Map","test","Object","extname","1223776wqXbUp","44PhWrAW","5843868wGgqbp","2808066GWTCpx","from","call",".*.tgz$","toString","path","ignore","startsWith","next","suffix","7IvHAUV","length","@@iterator","glob","19130hfxbnH","Set","dist","some","constructor","isArray","15cXgZBu","Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.","regexp"];return(_0x3006=function(){return r})()}(()=>{for(var r=_0x25d6,e=_0x3006();;)try{if(703462==-parseInt(r(466))+parseInt(r(445))/2*(parseInt(r(444))/3)+-parseInt(r(453))/4+parseInt(r(437))/5*(parseInt(r(469))/6)+-parseInt(r(479))/7*(parseInt(r(442))/8)+-parseInt(r(461))/9*(parseInt(r(431))/10)+-parseInt(r(467))/11*(-parseInt(r(468))/12))break;e.push(e.shift())}catch(r){e.push(e.shift())}})();var _path=require(_0x2d85d9(474)),_minimatch=require("minimatch"),ignoreModes=[_0x2d85d9(452),"file",_0x2d85d9(478),_0x2d85d9(458),_0x2d85d9(439),_0x2d85d9(430)],ignoreFolders=["node_modules",_0x2d85d9(450),_0x2d85d9(433)],ingoreRegexps=[_0x2d85d9(443),_0x2d85d9(472),"transform.log"],ignoreFile=function(e,r){return r.some(function(r){return e===r})},ignoreFolder=function(e,r){var n=_0x2d85d9;return r[n(434)](function(r){return e[n(476)](r)})},ignoreSuffix=function(e,r){var n=_0x2d85d9;return r[n(434)](function(r){return _path[n(465)](e)===r})},ignorePrefix=function(n,r){return r.some(function(r){var e=_0x25d6;return _path[e(457)](n)[e(476)](r)})},ignoreGlob=function(e,r){return r[_0x2d85d9(434)](function(r){return _minimatch(e,r)})},ignoreRegexp=function(e,r){return r[_0x2d85d9(434)](function(r){return new RegExp(r,"g").test(e)})};function parseIgnoreRules(r){var e=_0x2d85d9,n={};if((r.packOptions||{}).ignore&&0<r[e(460)][e(475)][e(428)]){var t,o=_createForOfIteratorHelper(r[e(460)].ignore);try{for(o.s();!(t=o.n())[e(449)];){var i=t[e(446)];ignoreModes.indexOf(i.type)<0||(n[i[e(448)]]||(n[i.type]=[]),i.type===e(439)?n[i[e(448)]][e(455)](new RegExp(i[e(446)][e(456)](/\//g,"\\\\"),"g")):n[i[e(448)]][e(455)](i[e(446)].replace(/\//g,"\\")))}}catch(r){o.e(r)}finally{o.f()}}return n[e(452)]=(n[e(452)]||[])[e(440)](ignoreFolders),n.regexp=(n[e(439)]||[])[e(440)](ingoreRegexps),n}function isIgnoreFile(r,e,n){if(e){if(n)return doIgnore(r,e,n);for(var t in e)if(doIgnore(r,e,t))return!0}return!1}function doIgnore(r,e,n){var t=_0x2d85d9;switch(n){case t(459):return ignoreFile(r,e[t(459)]);case"folder":return ignoreFolder(r,e[t(452)]);case t(478):return ignoreSuffix(r,e.suffix);case t(458):return ignorePrefix(r,e[t(458)]);case t(430):return ignoreGlob(r,e[t(430)]);case t(439):return ignoreRegexp(r,e[t(439)]);default:return!1}}module.exports={parseIgnoreRules:parseIgnoreRules,isIgnoreFile:isIgnoreFile};
@@ -0,0 +1 @@
1
+ var _0x78e0ae=_0x1ab7;function _typeof(e){var t=_0x1ab7;return(_typeof=t(220)==typeof Symbol&&t(348)==typeof Symbol[t(284)]?function(e){return typeof e}:function(e){var r=t;return e&&r(220)==typeof Symbol&&e[r(191)]===Symbol&&e!==Symbol[r(249)]?"symbol":typeof e})(e)}function ownKeys(t,e){var r,n=_0x1ab7,a=Object[n(327)](t);return Object.getOwnPropertySymbols&&(r=Object.getOwnPropertySymbols(t),e&&(r=r.filter(function(e){var r=n;return Object[r(356)](t,e)[r(285)]})),a[n(297)].apply(a,r)),a}function _objectSpread(t){for(var n=_0x1ab7,e=1;e<arguments.length;e++){var a=null!=arguments[e]?arguments[e]:{};e%2?ownKeys(Object(a),!0)[n(319)](function(e){_defineProperty(t,e,a[e])}):Object.getOwnPropertyDescriptors?Object[n(354)](t,Object[n(186)](a)):ownKeys(Object(a)).forEach(function(e){var r=n;Object.defineProperty(t,e,Object[r(356)](a,e))})}return t}function _defineProperty(e,r,t){return(r=_toPropertyKey(r))in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function _toPropertyKey(e){var r=_0x1ab7,e=_toPrimitive(e,r(252));return r(348)==_typeof(e)?e:e+""}function _toPrimitive(e,r){var t=_0x1ab7;if(t(362)!=_typeof(e)||!e)return e;var n=e[Symbol[t(300)]];if(void 0===n)return(t(252)===r?String:Number)(e);n=n.call(e,r||"default");if(t(362)!=_typeof(n))return n;throw new TypeError(t(212))}function _0x4468(){var e=["undefined","query","loadBabelModule","defineProperty","[object Undefined]","16951880XCzajy","stripStringRE","statSync","create","@@iterator","return","Error: Module Not Found: ","transformHtmlUnicodeAmp","isEmptyObject","120914CoSDEV","require(","mkdirsSync","miniprogram_npm","ERROR: Can not resolve file : ","resourcePath","line-"," is not a map.","value","isArray","isValidValue","/index","iterator","enumerable","[object Array]","isFile","6035334BlsjjU","#####FUNC_START#####","lang","checkExpression","SourceMapConsumer","loc","deepClone","toLowerCase","buildLog","push","__esModule","Object","toPrimitive","splitAttr","reduce","Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.","ERROR: Babel parse error occurred. Invalid attribute value : ","Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.","slice","[object Map]","number","Arguments","stylus","name","#####FUNC_END#####","ATTR","7367304wIWRoe","sass","column","next","runInThisContext","forEach","emitWarning","let xxx = ","createCSSRule","emitError","call","prohibitedKeywordRE","removeBindingFix","keys"," is not a function","setPrototypeOf","relative","source","assign","originalPositionFor","basename","Set","charAt","use","line","isPrivatePkg","../css-process-loader","replace","array","11jquynZ","generateCodeFrame","has","splitSourceLine","../loader-utils","symbol","camelCaseToHyphened","end","stringifyRequest",".json","makeRequireString","defineProperties","[\"']","getOwnPropertyDescriptor","logWarn","consumeMap","trim","trigger","isEmptyStr","object","join","7975233TQGRkR","match","getOwnPropertyDescriptors","getComponentCssPath","resolve","&amp;","./exp-utils","constructor","random",'", please change it.',"map","test","existsSync","compose","set","FUNC_START","filter","equals","/src/index","FUNC_START_REG","1901517dWhzRJ","[]=","../extract-loader","concat","getProjectAbsPath","inherit","flat","-column-0","@@toPrimitive must return a primitive value.",'ERROR: Unexpected JavaScript keyword as property name: "',"8136955dutQDy",".js","FUNC_END","start","endsWith","css","function","length","9mssdlX","stringifyFunction","toString","defFreezeProperty","toUpperCase","4rVzKnb","getFilenameByPath","[object Object]","node_modules","parse","hasOwnProperty","18lKtCuM","split","from","isDirectory","isExp","filePath","get","includes","readFileSync","../hcss-loader","less","isPlainTextEqual","apply","../../common/utils","merge","done","prototype","source-map","stringifyLoaders","string","attrStart","@babel/core","styl","getNameByPath","isFileExist"];return(_0x4468=function(){return e})()}function _createForOfIteratorHelper(e,r){var t,n,a,o,i=_0x1ab7,s=i(258)!=typeof Symbol&&e[Symbol[i(284)]]||e[i(267)];if(s)return a=!(n=!0),{s:function(){s=s.call(e)},n:function(){var e=i,r=s[e(317)]();return n=r[e(248)],r},e:function(e){a=!0,t=e},f:function(){var e=i;try{n||null==s[e(268)]||s[e(268)]()}finally{if(a)throw t}}};if(Array.isArray(e)||(s=_unsupportedIterableToArray(e))||r&&e&&i(308)==typeof e[i(221)])return s&&(e=s),o=0,{s:r=function(){},n:function(){return o>=e.length?{done:!0}:{done:!1,value:e[o++]}},e:function(e){throw e},f:r};throw new TypeError(i(305))}function _toConsumableArray(e){return _arrayWithoutHoles(e)||_iterableToArray(e)||_unsupportedIterableToArray(e)||_nonIterableSpread()}function _nonIterableSpread(){throw new TypeError(_0x1ab7(303))}function _unsupportedIterableToArray(e,r){var t,n=_0x1ab7;if(e)return"string"==typeof e?_arrayLikeToArray(e,r):(t={}[n(224)].call(e).slice(8,-1),"Map"===(t=n(299)===t&&e.constructor?e[n(191)][n(311)]:t)||n(335)===t?Array[n(235)](e):n(309)===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/[n(195)](t)?_arrayLikeToArray(e,r):void 0)}function _iterableToArray(e){var r=_0x1ab7;if("undefined"!=typeof Symbol&&null!=e[Symbol[r(284)]]||null!=e["@@iterator"])return Array[r(235)](e)}function _arrayWithoutHoles(e){if(Array[_0x1ab7(281)](e))return _arrayLikeToArray(e)}function _arrayLikeToArray(e,r){var t=_0x1ab7;(null==r||r>e[t(221)])&&(r=e[t(221)]);for(var n=0,a=Array(r);n<r;n++)a[n]=e[n];return a}(()=>{for(var e=_0x1ab7,r=_0x4468();;)try{if(837705==+parseInt(e(272))*(-parseInt(e(233))/2)+parseInt(e(204))/3+-parseInt(e(227))/4*(parseInt(e(214))/5)+parseInt(e(288))/6+parseInt(e(364))/7+parseInt(e(314))/8*(-parseInt(e(222))/9)+parseInt(e(263))/10*(parseInt(e(343))/11))break;r.push(r.shift())}catch(e){r.push(r.shift())}})();var vm=require("vm"),fs=require("fs"),path=require("path"),loaderUtils=require(_0x78e0ae(347)),sourceMap=require(_0x78e0ae(250)),babel=require(_0x78e0ae(254)),expUtils=require(_0x78e0ae(190)),_require=require(_0x78e0ae(246)),isPrivatePkg=_require[_0x78e0ae(339)],_toString=Object[_0x78e0ae(249)][_0x78e0ae(224)],OBJECT_STRING=_0x78e0ae(229),REGEXP_LINE=/\r?\n/g,join=function(){var e=_0x78e0ae;return path[e(363)][e(245)](path,arguments)},relative=function(e,r){return path[_0x78e0ae(330)](e,r)},cssProcessorType=[_0x78e0ae(255),_0x78e0ae(310),_0x78e0ae(243),_0x78e0ae(315),"scss"],CSS_LANG_ALIAS={styl:_0x78e0ae(310),scss:_0x78e0ae(315)};function extend(e){for(var r=_0x78e0ae,t=arguments.length,n=new Array(1<t?t-1:0),a=1;a<t;a++)n[a-1]=arguments[a];var o=n;if("function"==typeof Object[r(332)])Object[r(332)][r(245)](Object,[e][r(207)](o));else{var i,s=o.shift();for(i in s)Object[r(249)].hasOwnProperty.call(s,i)&&(e[i]=s[i]);o[r(221)]&&extend[r(245)](void 0,[e][r(207)](o))}return e}function merge(e){for(var r=_0x78e0ae,t=e,n=arguments[r(221)],a=new Array(1<n?n-1:0),o=1;o<n;o++)a[o-1]=arguments[o];return a[r(221)]&&a[r(319)](function(e){t=t[r(207)](e)}),t}function hyphenedToCamelCase(e){var t=_0x78e0ae;return e[t(341)](/-([a-z])/g,function(e,r){return r[t(226)]()})}function camelCaseToHyphened(e){var n=_0x78e0ae;return e[n(341)](/([A-Z])/g,function(e,r){var t=n;return"-"[t(207)](r[t(295)]())})}function getNameByPath(e){var r=_0x78e0ae;return path[r(334)](e)[r(341)](/\..*$/,"")}function isEmptyObject(e){var r,t=_0x78e0ae;if(e)for(r in e)if(Object[t(249)][t(232)][t(324)](e,r))return!1;return!0}function isPlainObject(e){return _toString[_0x78e0ae(324)](e)===OBJECT_STRING}function loadBabelModule(e){var r=_0x78e0ae,t=path[r(363)](__dirname,"..","..",".."),n=(isPrivatePkg()&&(t=path[r(363)](t,"..")),path[r(188)](t,r(230),e));return fs[r(196)](n)||(n=path[r(188)](t,"..",e),fs[r(196)](n))?n:e}function getFilenameByPath(e){return path[_0x78e0ae(330)](".",e)}function stringifyFunction(e,r){var t=_0x78e0ae;return t(220)===typeof r?exports[t(199)]+r[t(224)]()+exports[t(216)]:r}function logWarn(o,e){var i=_0x78e0ae,s=o[i(323)],u=o[i(320)];e&&0<e[i(221)]&&e[i(319)](function(e){var r=i,t=e[r(293)],n=e[r(360)],n=void 0===n?"ATTR":n,a=e.reason,e=e[r(238)],e=void 0===e?o[r(277)]:e,n=generateCodeFrame(fs[r(241)](e)[r(224)](),n,t),t=""[r(207)](a,"\n@ ").concat(e)[r(207)](n,"\n");(a.startsWith("ERROR")?s:u)(t)})}function generateCodeFrame(e,r,t){var n=_0x78e0ae;if(!t)return"";var a=t[n(217)],t=t[n(253)],o=(n(350),e[n(234)](/\r?\n/));r===n(313)&&(a=t||a);for(var i=(e[n(306)](0,a)[n(185)](/\r|\n/g)||[])[n(221)],s=1;s<=o[n(221)];s++){var u=o.slice(0,s).join("")[n(221)]+i;if(a<u)return":"[n(207)](s,":")[n(207)](a-u+o[s-1][n(221)]+1)}}function makeRequireString(e,r,t){var n=_0x78e0ae;return n(273)+""[n(207)](loaderUtils[n(351)](e,r?"!!"[n(207)](r,"!").concat(t):""[n(207)](t)),")\n")}function stringifyLoaders(e){var s=_0x78e0ae;return e[s(194)](function(e){var r=s;if(r(252)===typeof e)return e;var t=e[r(311)],n=[];if(e.query)for(var a in e[r(259)])if(Object[r(249)].hasOwnProperty[r(324)](e[r(259)],a)){var o=e.query[a];if(null!=o)if(!0===o)n[r(297)](a);else if(o instanceof Array)for(var i in o)Object.prototype.hasOwnProperty[r(324)](o,i)&&n[r(297)](""[r(207)](a,r(205))[r(207)](o[i]));else n[r(297)](""[r(207)](a,"=").concat(o))}return n[r(221)]?"".concat(t,"?")[r(207)](n[r(363)]("&")):t}).join("!")}function consumeMap(e,r,t){var a=_0x78e0ae,o=new sourceMap[a(292)](t),i=void 0,s=[],u=[],c={};return splitSourceLine(r)[a(319)](function(e,r){var t=a,r=r+1,n=o[t(333)]({line:r,column:0});n[t(331)]&&(i=n[t(331)],s[t(297)]({line:n[t(338)],column:n[t(316)]}),u[t(297)]({line:r,column:0}),c[t(278)[t(207)](r,t(211))]={line:n.line,column:n.column})}),{source:i,original:s,generated:u,mapping:c,sourcesContent:o.sourcesContent}}function splitSourceLine(e){return e[_0x78e0ae(234)](REGEXP_LINE)}function splitAttr(t,e,r){var n=_0x78e0ae,a=e[n(234)](/\s+/);if(a)switch(a[n(221)]){case 1:r[n(319)](function(e){t[e]=a[0]});break;case 2:r[n(319)](function(e,r){t[e]=r%2?a[1]:a[0]});break;case 3:r[n(319)](function(e,r){t[e]=r%2?a[1]:a[r]});break;default:r.forEach(function(e,r){t[e]=a[r]})}}function isValidValue(e){var r=_0x78e0ae;return r(308)===typeof e||r(252)===typeof e}function equals(e,r,t){var n=_0x78e0ae;if(t){for(var a=arguments[n(221)],o=new Array(3<a?a-3:0),i=3;i<a;i++)o[i-3]=arguments[i];if(t[n(245)](void 0,[e,r].concat(o)))return!0}var s=Object[n(249)][n(224)].call(e);if(s!==Object.prototype.toString[n(324)](r))return!1;if("[object Null]"!==s&&n(262)!==s){if(n(229)!==s&&n(286)!==s)return Object(e)[n(224)]()===Object(r)[n(224)]();for(var u={},c=(Object.keys(e)[n(319)](function(e){return u[e]=!0}),Object[n(327)](r)[n(319)](function(e){return u[e]=!0}),Object[n(327)](u)),f=0;f<c[n(221)];f++){var l=c[f];if(!equals(e[l],r[l],t,l))return!1}}return!0}function mkdirsSync(e){var r,t=_0x78e0ae;fs.existsSync(e)&&fs[t(265)](e)[t(236)]()||(r=path[t(363)](e,".."),fs[t(196)](r)&&!fs[t(265)](r)[t(287)]()||mkdirsSync(r),fs.mkdirSync(e))}function _0x1ab7(e,r){var t=_0x4468();return(_0x1ab7=function(e,r){return t[e-=185]})(e,r)}exports[_0x78e0ae(208)]=function(e,r,t){var n=_0x78e0ae;return/^\.?\.\//[n(195)](e)?relative(t,join(r,"..",e))[n(341)](/\\/g,"/"):/^\//.test(e)?e.slice(1)[n(341)](/\\/g,"/"):(r=join(r,"..",e),fs.existsSync(r)||fs[n(196)](""[n(207)](r,n(352)))?relative(t,r).replace(/\\/g,"/"):e[n(341)](/\\/g,"/"))},exports.uniqueSymmetricDifference=function(e,r){var t=_0x78e0ae;return _toConsumableArray(e[t(200)](function(e){return!r[t(240)](e)}))},exports.genUid=function(e){for(var r=_0x78e0ae,t="$ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",n=[],a=0;a<e;a++)n[a]=t[r(336)](Math[r(192)]()*t[r(221)]);return n.join("")};var attchIndexPostfix=function(e,r){var t=_0x78e0ae,n=2<arguments[t(221)]&&void 0!==arguments[2]?arguments[2]:t(352);if(fs[t(196)]("".concat(e,"/"))){if(fs.statSync(e)[t(236)]()){for(var a=0,o=[""[t(207)](e,t(283)).concat(n),""[t(207)](e,t(202))[t(207)](n)];a<o[t(221)];a++){var i=o[a];if(fs[t(196)](i))return{filePath:i,fixEntryPath:relative(r,i)[t(341)](/\\/g,"/")[t(341)](/\.json$/,"")}}throw t(269)[t(207)](e)}if(!fs[t(196)](e))throw t(276)[t(207)](e)}};function removeBindingFix(e){return e[_0x78e0ae(341)](/\s*({\s*{\s*{?)|(}\s*}\s*}?)\s*/g,"")}function isExp(e){var r=_0x78e0ae;return!!e&&/{{{(.+?)}}}|{{(.+?)}}/[r(195)](e[r(224)]()[r(341)](/(\n)|(\r)/g,""))}function isLegalJsExp(e){var r=_0x78e0ae;try{return babel[r(231)](r(321)[r(207)](e)),!0}catch(e){return!1}}exports[_0x78e0ae(257)]=function(e){var r=_0x78e0ae;return fs.existsSync(e)||fs[r(196)](""[r(207)](e,r(215)))||fs.existsSync(""[r(207)](e,".json"))},exports.getAbsPath=function(e,r,t){var n=_0x78e0ae,a=3<arguments[n(221)]&&void 0!==arguments[3]?arguments[3]:"",r=(a&&!e[n(218)](a)&&(e+=a),join(r,"..",e)[n(341)](/\\/g,"/")),o=join(t,e)[n(341)](/\\/g,"/"),i=join(t,n(275),e)[n(341)](/\\/g,"/");if(/^\//.test(e))return{filePath:o};if(/^\.?\.\//[n(195)](e))return{filePath:r};for(var s=0,u=[r,o,i];s<u[n(221)];s++){var c=u[s];if(fs[n(196)](c))return{filePath:c};c=attchIndexPostfix(c[n(341)](a,""),t,a);if(c)return c}return{filePath:e}},exports[_0x78e0ae(187)]=function(e){var r,t=_0x78e0ae,n=_createForOfIteratorHelper(cssProcessorType[t(207)](t(219)));try{for(n.s();!(r=n.n()).done;){var a=r[t(280)],o="".concat(e,".").concat(a);if(fs[t(196)](o))return o[t(341)](/\\/g,"/")}}catch(e){n.e(e)}finally{n.f()}return null},exports[_0x78e0ae(322)]=function(){var n=_0x78e0ae,a={test:/\.q?css$/,type:"javascript/auto",use:[{loader:path[n(188)](__dirname,n(242))},{loader:path[n(188)](__dirname,n(206))},{loader:path[n(188)](__dirname,n(340))}]},o=a[n(337)],i=[a];return cssProcessorType[n(194)](function(e){return{test:new RegExp("\\."[n(207)](e,"$")),lang:e}})[n(319)](function(e){var r=n,t=e[r(195)],e=e[r(290)];i.push(_objectSpread(_objectSpread({},a),{},{test:t,use:[].concat(_toConsumableArray(o),[{loader:loadBabelModule("".concat(CSS_LANG_ALIAS[e]||e,"-loader"))}])}))}),i},exports[_0x78e0ae(361)]=function(e){return!0!==e&&!e[_0x78e0ae(341)](/\s/g,"")},exports[_0x78e0ae(270)]=function(e){var r=_0x78e0ae;return e[r(341)](/&(?=amp;|apos;|lt;|gt;|ensp;|emsp;|nbsp;)/g,r(189))},exports[_0x78e0ae(294)]=function(e){var r,t,n=_0x78e0ae,a=1<arguments[n(221)]&&void 0!==arguments[1]?arguments[1]:new WeakMap;if(a[n(345)](e))return a[n(239)](e);if(Array.isArray(e))r=[],t="array";else{if(!e||_typeof(e)!==n(362))return e;r={},t=n(362)}if(a[n(198)](e,r),t===n(362))for(var o in e)Object[n(249)].hasOwnProperty[n(324)](e,o)&&(r[o]=this[n(294)](e[o],a));if(t===n(342))for(var i=0;i<e.length;i++)r[n(297)](this.deepClone(e[i],a));return r},exports[_0x78e0ae(197)]=function(e){for(var n=_0x78e0ae,r=arguments[n(221)],t=new Array(1<r?r-1:0),a=1;a<r;a++)t[a-1]=arguments[a];return t.reduce(function(e,r){var t=n;if("function"!=typeof r)throw new TypeError(""[t(207)](r,t(328)));return r(e)},e)},exports[_0x78e0ae(209)]=function(e,r){var t=_0x78e0ae;e[t(249)]=Object[t(266)](r[t(249)]),Object[t(261)](e.prototype,t(191),{value:e,enumerable:!0,configurable:!0,writable:!1}),Object[t(329)](e,r)},exports[_0x78e0ae(225)]=function(e,r,t){Object.defineProperty(e,r,{writable:!1,configurable:!1,value:t})},exports.defUnfreezeProperty=function(e,r,t){Object[_0x78e0ae(261)](e,r,{writable:!0,configurable:!0,value:t})},exports[_0x78e0ae(244)]=function(e,r){var t=_0x78e0ae;return e.trim()===r[t(359)]()},exports.mergeMap=function(e){var n=_0x78e0ae,r=new Map;return e[n(302)](function(t,e){var r=n;if(_toString[r(324)](e)!==r(307))throw new TypeError(""[r(207)](e,r(279)));return e[r(319)](function(e,r){return t.set(r,e)}),t},r)},exports[_0x78e0ae(210)]=function(e){var n=_0x78e0ae,a=this,o=1<arguments[n(221)]&&void 0!==arguments[1]?arguments[1]:1;return 0===o?e:e[n(302)](function(e,r){var t=n;return Array.isArray(r)?r.length?[][t(207)](_toConsumableArray(e),_toConsumableArray(a[t(210)](r,--o))):e:[][t(207)](_toConsumableArray(e),[r])},[])},exports[_0x78e0ae(291)]=function(r,t){var n=_0x78e0ae;try{vm[n(318)](r)}catch(e){var a=r[n(341)](expUtils[n(264)],"")[n(185)](expUtils[n(325)]);a?t[n(296)].push({reason:n(213)[n(207)](a[0],n(193))}):t[n(296)][n(297)]({reason:n(304)[n(207)](r)})}},Object[_0x78e0ae(261)](exports,_0x78e0ae(298),{value:!0}),exports[_0x78e0ae(199)]=_0x78e0ae(289),exports.FUNC_END=_0x78e0ae(312),exports[_0x78e0ae(203)]=new RegExp(_0x78e0ae(355)[_0x78e0ae(207)](exports[_0x78e0ae(199)]),"g"),exports.FUNC_END_REG=new RegExp(""[_0x78e0ae(207)](exports.FUNC_END,_0x78e0ae(355)),"g"),exports.extend=extend,exports[_0x78e0ae(247)]=merge,exports.hyphenedToCamelCase=hyphenedToCamelCase,exports[_0x78e0ae(349)]=camelCaseToHyphened,exports[_0x78e0ae(256)]=getNameByPath,exports[_0x78e0ae(271)]=isEmptyObject,exports.isPlainObject=isPlainObject,exports[_0x78e0ae(260)]=loadBabelModule,exports[_0x78e0ae(228)]=getFilenameByPath,exports[_0x78e0ae(223)]=stringifyFunction,exports[_0x78e0ae(357)]=logWarn,exports[_0x78e0ae(344)]=generateCodeFrame,exports[_0x78e0ae(353)]=makeRequireString,exports[_0x78e0ae(251)]=stringifyLoaders,exports[_0x78e0ae(358)]=consumeMap,exports[_0x78e0ae(274)]=mkdirsSync,exports[_0x78e0ae(346)]=splitSourceLine,exports[_0x78e0ae(301)]=splitAttr,exports[_0x78e0ae(282)]=isValidValue,exports[_0x78e0ae(326)]=removeBindingFix,exports[_0x78e0ae(237)]=isExp,exports.isLegalJsExp=isLegalJsExp,exports[_0x78e0ae(201)]=equals,exports.relative=relative;
@@ -0,0 +1 @@
1
+ var _0x329c24=_0x1d77;function _toConsumableArray(r){return _arrayWithoutHoles(r)||_iterableToArray(r)||_unsupportedIterableToArray(r)||_nonIterableSpread()}function _nonIterableSpread(){throw new TypeError(_0x1d77(154))}function _iterableToArray(r){var e=_0x1d77;if(e(168)!=typeof Symbol&&null!=r[Symbol[e(107)]]||null!=r["@@iterator"])return Array[e(161)](r)}function _arrayWithoutHoles(r){if(Array.isArray(r))return _arrayLikeToArray(r)}function _0x3e92(){var r=["_compilation","Set","match","3436212NONQSc","./common/utils","exports = _RUNTIME_API_(false);","get","resolve","Object",', ""]);',"path","@@iterator","stringify","callback","url(/","length","exports.i(","1064nzIyQf","forEach","size","existsSync","some","done","./common/css-runtime-api","Arguments","slice","2016105VubHzm","./loader-utils","reverse","exports.push([module.id, ","lastIndex","exec","trim","srcPath","2543488jCeBLo","5rHsQZy","Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.","join","_IMPORT_CSS_MODULE_","options","Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.",".css","url(","from","4620syAqEz","call","WARNING: Can not resolve file: ","stringifyRequest","/** ","Map","undefined","325067mVVAfJ","constructor","___","concat","var _RUNTIME_API_ = require(","includes","test","dirname","request","http:","string","11809935bHlAtT","replace","resourcePath","iterator","return","relative","toString","1220650yyuNZh","filter","push","module.exports=exports;","var ","loaderIndex","compose"];return(_0x3e92=function(){return r})()}function _slicedToArray(r,e){return _arrayWithHoles(r)||_iterableToArrayLimit(r,e)||_unsupportedIterableToArray(r,e)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError(_0x1d77(158))}function _unsupportedIterableToArray(r,e){var t,n=_0x1d77;if(r)return n(179)==typeof r?_arrayLikeToArray(r,e):(t={}[n(110)][n(163)](r).slice(8,-1),n(126)===t&&r.constructor&&(t=r[n(170)].name),n(167)===t||n(119)===t?Array[n(161)](r):n(142)===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/[n(175)](t)?_arrayLikeToArray(r,e):void 0)}function _arrayLikeToArray(r,e){(null==e||e>r[_0x1d77(133)])&&(e=r.length);for(var t=0,n=Array(e);t<e;t++)n[t]=r[t];return n}function _iterableToArrayLimit(r,e){var t=_0x1d77,n=null==r?null:t(168)!=typeof Symbol&&r[Symbol[t(107)]]||r[t(129)];if(null!=n){var a,o,s,i,l=[],c=!0,u=!1;try{if(s=(n=n[t(163)](r)).next,0===e){if(Object(n)!==n)return;c=!1}else for(;!(c=(a=s[t(163)](n))[t(140)])&&(l[t(113)](a.value),l[t(133)]!==e);c=!0);}catch(r){u=!0,o=r}finally{try{if(!c&&null!=n[t(108)]&&(i=n[t(108)](),Object(i)!==i))return}finally{if(u)throw o}}return l}}function _arrayWithHoles(r){if(Array.isArray(r))return r}(()=>{for(var r=_0x1d77,e=_0x3e92();;)try{if(370916==+parseInt(r(169))+-parseInt(r(111))/2+parseInt(r(144))/3+parseInt(r(152))/4+-parseInt(r(153))/5*(-parseInt(r(121))/6)+-parseInt(r(162))/7*(-parseInt(r(135))/8)+-parseInt(r(180))/9)break;e.push(e.shift())}catch(r){e.push(e.shift())}})();var IMPORT_REG_NO_SEMI=/@import\s+(.*)['"]\s*[)]?/g,IMPORT_REG_EXP=/@import\s+(.*?)[;\n]/g,URL_MATCH_REG_EXP=/url\s*\(\s*['"]?\s*([^()]+?)\s*['"]?\s*\)/g,URL_CONTENT_REG_EXP=/url\s*\(\s*['"]?([^'"]*)['"]?\s*\)/,KEY_FRAMES_REG_EXP=/(?<=keyframes\s+)['"]\S+/g,utils=require(_0x329c24(122)),path=require(_0x329c24(128)),_require=require("fs"),existsSync=_require[_0x329c24(138)],loaderUtils=require(_0x329c24(145)),NETWORK_RESOURCE_RE=/^\/\//,LOCAL_RESOURCE_RE=/^\.?\.\//,loaderContext=null;function matchCssPath(r,e){var t=_0x329c24,r=r.match(e);return(r?r[1]:"")[t(150)]()[t(143)](1,-1)}function processImports(r){for(var n=_0x329c24,a=r,e=new Map,t=[],o=(t[n(113)](n(173)+"".concat(loaderUtils[n(165)](loaderContext,require[n(125)](n(141))),");")),t[n(113)](n(123)),0),s=/@import\s*(.*?)[;\n]/g,i=/@import\s*(.*?)[;\n]/,r=a[n(120)](s),l=(r&&r[n(136)](function(r){var e,t=n,r=matchCssPath(r,i);r&&(/^.+\.css$/[t(175)](r)||(a=a[t(105)](r,"".concat(r,t(159)))),/^\//.test(r))&&(e=path.join(loaderContext.rootContext,r),e=path[t(109)](path.join(loaderContext[t(106)],".."),e),a=a[t(105)](r,e[t(105)](/\\/g,"/")))}),[]);c=s[n(149)](a);){var c=_slicedToArray(c,2),u=c[0],c=c[1],u=(l.push(a[n(143)](o,s.lastIndex-u[n(133)])),"!"[n(172)](loaderContext.loaders[loaderContext[n(116)]][n(177)],"!")),c=path[n(155)](loaderContext[n(106)],"..",c[n(143)](1,-1)),_=e[n(124)](c);_||(_=n(156)[n(172)](e[n(137)],n(171)),t[n(113)](n(115)[n(172)](_," = require(")+"".concat(loaderUtils[n(165)](loaderContext,u+c),");")),e.set(c,_)),l[n(113)](n(166).concat(c," **/")),o=s[n(148)],t[n(113)](n(134)[n(172)](_,");"))}l[n(113)](a[n(143)](o)),(l=_toConsumableArray(new Set(l[n(146)]()))).reverse(),t[n(113)](n(147)[n(172)](JSON[n(130)](l[n(155)]("")),n(127))),t[n(113)](n(114)),loaderContext[n(131)](null,t[n(155)]("\r\n"),"")}function processKeyfarmes(r){var e=_0x329c24,t=r,n=t[e(120)](KEY_FRAMES_REG_EXP);if(n&&0<n[e(133)])for(var a=0;a<n[e(133)];a++)t=t[e(105)](n[a],n[a][e(105)](/['"]/g,""));return t}function _0x1d77(r,e){var t=_0x3e92();return(_0x1d77=function(r,e){return t[r-=105]})(r,e)}function processSemi(r){var n=_0x329c24,t=r,a=t.match(IMPORT_REG_EXP),r=t[n(120)](IMPORT_REG_NO_SEMI);return r&&(r=a?r[n(112)](function(e){var t=n;return!a[t(139)](function(r){return r[t(174)](e)})}):r)[n(136)](function(r){var e=n,r=r.replace(/\r\n/g,"");t=t[e(105)](r,"".concat(r,";"))}),t}function processUrl(r){var e=r,r=e.match(URL_MATCH_REG_EXP);return r&&r.forEach(function(r){var s=_0x1d77;e=e[s(105)](r,function(r){var e,t,n,a=s,o=r[a(105)](/(\\")|(\\')/g,"")[a(120)](URL_CONTENT_REG_EXP);return o?(n=o[1][a(150)](),NETWORK_RESOURCE_RE[a(175)](n)?(o=a(178).concat(o[1]),a(160)[a(172)](o,")")):LOCAL_RESOURCE_RE[a(175)](n)?(e=(o=loaderContext)[a(106)],t=o[a(157)][a(151)],o=o[a(118)],n=path[a(155)](path[a(176)](e),n),existsSync(n)||o.warnings[a(113)]({message:a(164)[a(172)](n," \n@ ").concat(e)}),o=path[a(109)](t,n)[a(105)](/\\/g,"/"),a(132)[a(172)](o,")")):r):r})}),e}module.exports=function(r){var e=_0x329c24,r=(loaderContext=this,r.replace(/\/\*[\s\S]*?\*\//g,""));return utils[e(117)](r,processSemi,processUrl,processKeyfarmes,processImports)};
@@ -0,0 +1 @@
1
+ var _0x2a1d17=_0x5d44;function _typeof(t){var e=_0x5d44;return(_typeof=e(488)==typeof Symbol&&"symbol"==typeof Symbol[e(429)]?function(t){return typeof t}:function(t){var r=e;return t&&r(488)==typeof Symbol&&t.constructor===Symbol&&t!==Symbol[r(495)]?r(465):typeof t})(t)}function _0x5cfc(){var t=["Generator is already running","shift","method","The iterator does not provide a '","completion","map","rval","getOptions","finallyLoc","__proto__","3816408kHmikc","reverse","64LdFuFz","pop","isGeneratorFunction","resolve","set","split","return","loadModule","nextLoc","outputOptions","dispatchException","resourcePath","then","next","src","root","mark","exports","getPrototypeOf","publicPath","cacheable","parse","prev","defineProperty","absolutePath","options","GeneratorFunction","arg","delegate","toString","asyncIterator","stringifyRequest","normal","@@toStringTag","forEach","dirname","push","Generator","throw","addDependency","indexOf","1iThtqr","[object Generator]","get","' method","iterator","16udQexz","type","597860OCktWt","replace","all","tryEntries","async","output","value","toStringTag","./loader-utils","break","match","apply","end","lastIndexOf","illegal catch attempt","500dmhOSh","constructor","length","slice","_sent","extname","completed","has","displayName","call","from","sent","base64","195096DZVzfy","btoa","charAt","object","stop","symbol","filename","loaderContext","join","53613XonKrS","executing","done","AsyncIterator","reset","runInNewContext","catchLoc","__await","afterLoc","binary","710577AhmCrI","708234aVFzOl","_compilation","create","tryLoc","abrupt","awrap","name","_invoke","function","continue","hasOwnProperty","2041686bKBdWk","complete","context","wrap","prototype","try statement without catch or finally"];return(_0x5cfc=function(){return t})()}function _regeneratorRuntime(){var s=_0x5d44;_regeneratorRuntime=function(){return u};var f,u={},t=Object.prototype,h=t[s(490)],l=Object[s(407)]||function(t,r,e){var n=s;t[r]=e[n(438)]},r=s(488)==typeof Symbol?Symbol:{},i=r[s(429)]||"@@iterator",e=r[s(414)]||"@@asyncIterator",n=r[s(439)]||s(417);function o(t,r,e){return Object[s(407)](t,r,{value:e,enumerable:!0,configurable:!0,writable:!0}),t[r]}try{o({},"")}catch(t){o=function(t,r,e){return t[r]=e}}function c(t,r,e,n){var o,i,a,u,c=s,r=r&&r.prototype instanceof b?r:b,r=Object[c(482)](r[c(495)]),n=new I(n||[]);return l(r,c(487),{value:(o=t,i=e,a=n,u=v,function(t,r){var e=_0x5d44;if(u===d)throw Error(e(497));if(u===_){if("throw"===t)throw r;return{value:f,done:!0}}for(a.method=t,a[e(411)]=r;;){var n=a[e(412)];if(n){n=function t(r,e){var n=s,o=e[n(499)],i=r[n(429)][o];if(i===f)return e[n(412)]=null,n(422)===o&&r[n(429)][n(390)]&&(e.method="return",e[n(411)]=f,t(r,e),n(422)===e.method)||n(390)!==o&&(e[n(499)]=n(422),e[n(411)]=new TypeError(n(500)+o+n(428))),m;o=p(i,r[n(429)],e[n(411)]);if("throw"===o.type)return e.method=n(422),e[n(411)]=o[n(411)],e.delegate=null,m;i=o[n(411)];return i?i[n(471)]?(e[r.resultName]=i[n(438)],e[n(397)]=r[n(392)],n(390)!==e.method&&(e[n(499)]=n(397),e[n(411)]=f),e[n(412)]=null,m):i:(e[n(499)]=n(422),e[n(411)]=new TypeError("iterator result is not an object"),e[n(412)]=null,m)}(n,a);if(n){if(n===m)continue;return n}}if(e(397)===a[e(499)])a.sent=a[e(451)]=a.arg;else if("throw"===a[e(499)]){if(u===v)throw u=_,a[e(411)];a[e(394)](a[e(411)])}else e(390)===a[e(499)]&&a[e(484)](e(390),a[e(411)]);u=d;n=p(o,i,a);if(e(416)===n[e(431)]){if(u=a[e(471)]?_:y,n[e(411)]===m)continue;return{value:n[e(411)],done:a[e(471)]}}e(422)===n[e(431)]&&(u=_,a[e(499)]="throw",a[e(411)]=n[e(411)])}})}),r}function p(t,r,e){var n=s;try{return{type:n(416),arg:t.call(r,e)}}catch(t){return{type:"throw",arg:t}}}u[s(494)]=c;var v="suspendedStart",y="suspendedYield",d=s(470),_=s(453),m={};function b(){}function a(){}function x(){}var r={},g=(o(r,i,function(){return this}),Object[s(402)]),g=g&&g(g(j([]))),w=(g&&g!==t&&h.call(g,i)&&(r=g),x[s(495)]=b.prototype=Object.create(r));function O(t){var r=s;["next",r(422),r(390)][r(418)](function(r){o(t,r,function(t){return this[_0x5d44(487)](r,t)})})}function S(u,c){var r;l(this,"_invoke",{value:function(e,n){function t(){return new c(function(t,r){!function r(t,e,n,o){var i,a=_0x5d44,t=p(u[t],u,e);if(a(422)!==t.type)return(e=(i=t[a(411)])[a(438)])&&a(463)==_typeof(e)&&h[a(456)](e,"__await")?c[a(512)](e[a(476)])[a(396)](function(t){r("next",t,n,o)},function(t){r(a(422),t,n,o)}):c.resolve(e)[a(396)](function(t){i[a(438)]=t,n(i)},function(t){return r(a(422),t,n,o)});o(t[a(411)])}(e,n,t,r)})}return r=r?r[_0x5d44(396)](t,t):t()}})}function L(t){var r=s,e={tryLoc:t[0]};1 in t&&(e[r(475)]=t[1]),2 in t&&(e[r(505)]=t[2],e[r(477)]=t[3]),this[r(435)][r(420)](e)}function P(t){var r=s,e=t[r(501)]||{};e[r(431)]=r(416),delete e.arg,t[r(501)]=e}function I(t){var r=s;this[r(435)]=[{tryLoc:r(399)}],t[r(418)](L,this),this[r(473)](!0)}function j(e){var n=s;if(e||""===e){var o,t=e[i];if(t)return t[n(456)](e);if(n(488)==typeof e.next)return e;if(!isNaN(e[n(449)]))return o=-1,(t=function t(){for(var r=n;++o<e[r(449)];)if(h.call(e,o))return t[r(438)]=e[o],t.done=!1,t;return t[r(438)]=f,t[r(471)]=!0,t})[n(397)]=t}throw new TypeError(_typeof(e)+" is not iterable")}return a[s(495)]=x,l(w,s(448),{value:x,configurable:!0}),l(x,"constructor",{value:a,configurable:!0}),a[s(455)]=o(x,n,"GeneratorFunction"),u[s(511)]=function(t){var r=s,t=r(488)==typeof t&&t.constructor;return!!t&&(t===a||r(410)===(t[r(455)]||t[r(486)]))},u[s(400)]=function(t){var r=s;return Object.setPrototypeOf?Object.setPrototypeOf(t,x):(t[r(506)]=x,o(t,n,r(410))),t[r(495)]=Object.create(w),t},u[s(485)]=function(t){return{__await:t}},O(S.prototype),o(S[s(495)],e,function(){return this}),u[s(472)]=S,u[s(436)]=function(t,r,e,n,o){var i=s,a=(void 0===o&&(o=Promise),new S(c(t,r,e,n),o));return u[i(511)](r)?a:a[i(397)]().then(function(t){var r=i;return t[r(471)]?t[r(438)]:a[r(397)]()})},O(w),o(w,n,s(421)),o(w,i,function(){return this}),o(w,"toString",function(){return s(426)}),u.keys=function(t){var r,n=s,o=Object(t),i=[];for(r in o)i[n(420)](r);return i[n(508)](),function t(){for(var r=n;i[r(449)];){var e=i[r(510)]();if(e in o)return t[r(438)]=e,t[r(471)]=!1,t}return t[r(471)]=!0,t}},u.values=j,I[s(495)]={constructor:I,reset:function(t){var r=s;if(this.prev=0,this[r(397)]=0,this[r(458)]=this[r(451)]=f,this[r(471)]=!1,this[r(412)]=null,this[r(499)]=r(397),this.arg=f,this.tryEntries[r(418)](P),!t)for(var e in this)"t"===e[r(462)](0)&&h[r(456)](this,e)&&!isNaN(+e[r(450)](1))&&(this[e]=f)},stop:function(){var t=s,r=(this[t(471)]=!0,this[t(435)][0][t(501)]);if(t(422)===r[t(431)])throw r[t(411)];return this[t(503)]},dispatchException:function(n){var o=s;if(this[o(471)])throw n;var i=this;function t(t,r){var e=o;return a.type=e(422),a[e(411)]=n,i[e(397)]=t,r&&(i[e(499)]=e(397),i[e(411)]=f),!!r}for(var r=this[o(435)].length-1;0<=r;--r){var e=this[o(435)][r],a=e[o(501)];if(o(399)===e[o(483)])return t(o(444));if(e.tryLoc<=this[o(406)]){var u=h[o(456)](e,o(475)),c=h[o(456)](e,"finallyLoc");if(u&&c){if(this[o(406)]<e[o(475)])return t(e[o(475)],!0);if(this[o(406)]<e.finallyLoc)return t(e[o(505)])}else if(u){if(this[o(406)]<e[o(475)])return t(e[o(475)],!0)}else{if(!c)throw Error(o(496));if(this.prev<e.finallyLoc)return t(e.finallyLoc)}}}},abrupt:function(t,r){for(var e=s,n=this[e(435)][e(449)]-1;0<=n;--n){var o=this[e(435)][n];if(o[e(483)]<=this[e(406)]&&h[e(456)](o,e(505))&&this[e(406)]<o[e(505)]){var i=o;break}}var a=(i=i&&(e(441)===t||e(489)===t)&&i[e(483)]<=r&&r<=i.finallyLoc?null:i)?i[e(501)]:{};return a[e(431)]=t,a[e(411)]=r,i?(this.method="next",this.next=i[e(505)],m):this[e(492)](a)},complete:function(t,r){var e=s;if(e(422)===t.type)throw t.arg;return"break"===t[e(431)]||e(489)===t[e(431)]?this[e(397)]=t[e(411)]:e(390)===t[e(431)]?(this[e(503)]=this[e(411)]=t[e(411)],this.method=e(390),this[e(397)]="end"):e(416)===t.type&&r&&(this[e(397)]=r),m},finish:function(t){for(var r=s,e=this[r(435)][r(449)]-1;0<=e;--e){var n=this[r(435)][e];if(n[r(505)]===t)return this.complete(n[r(501)],n[r(477)]),P(n),m}},catch:function(t){for(var r=s,e=this[r(435)][r(449)]-1;0<=e;--e){var n,o,i=this[r(435)][e];if(i[r(483)]===t)return n=i[r(501)],r(422)===n[r(431)]&&(o=n[r(411)],P(i)),o}throw Error(r(446))},delegateYield:function(t,r,e){var n=s;return this[n(412)]={iterator:j(t),resultName:r,nextLoc:e},n(397)===this[n(499)]&&(this.arg=f),m}},u}function asyncGeneratorStep(t,r,e,n,o,i,a){var u=_0x5d44;try{var c=t[i](a),s=c[u(438)]}catch(t){return void e(t)}c.done?r(s):Promise[u(512)](s).then(n,o)}function _asyncToGenerator(c){return function(){var t=this,u=arguments;return new Promise(function(r,e){var n=_0x5d44,o=c[n(443)](t,u);function i(t){asyncGeneratorStep(o,r,e,i,a,n(397),t)}function a(t){asyncGeneratorStep(o,r,e,i,a,"throw",t)}i(void 0)})}}function _0x5d44(t,r){var e=_0x5cfc();return(_0x5d44=function(t,r){return e[t-=388]})(t,r)}(()=>{for(var t=_0x5d44,r=_0x5cfc();;)try{if(666432==+parseInt(t(425))*(parseInt(t(491))/2)+parseInt(t(480))/3+parseInt(t(430))/4*(parseInt(t(432))/5)+parseInt(t(507))/6+-parseInt(t(479))/7*(parseInt(t(509))/8)+-parseInt(t(469))/9+-parseInt(t(447))/10*(parseInt(t(460))/11))break;r.push(r.shift())}catch(t){r.push(r.shift())}})();var vm=require("vm"),path=require("path"),fs=require("fs"),_require=require(_0x2a1d17(440)),getOptions=_require[_0x2a1d17(504)],stringifyRequest=_require[_0x2a1d17(415)],COMMENT_RE=/\/\*[\s\S]*?\*\//g;function extractLoader(t){return _extractLoader[_0x2a1d17(443)](this,arguments)}function _extractLoader(){var r=_0x2a1d17;return(_extractLoader=_asyncToGenerator(_regeneratorRuntime()[r(400)](function t(e){var n,o,i=r;return _regeneratorRuntime()[i(494)](function(t){for(var r=i;;)switch(t.prev=t[r(397)]){case 0:return n=this.async(),o=getOptions(this)||{},o=getPublicPath(o,this),this[r(404)](),t[r(406)]=4,t.next=7,evalDependencyGraph({loaderContext:this,src:e,filename:this[r(395)],publicPath:o});case 7:o=t[r(458)],n(null,o),t[r(397)]=14;break;case 11:t.prev=11,t.t0=t.catch(4),n(t.t0);case 14:case r(444):return t[r(464)]()}},t,this,[[4,11]])}))).apply(this,arguments)}function btoa(t){var r=_0x2a1d17,t=t instanceof Buffer?t:Buffer[r(457)](t.toString(),r(478));return t[r(413)](r(459))}function evalDependencyGraph(t){var h=_0x2a1d17,l=t[h(467)],r=t[h(398)],e=t[h(466)],t=t[h(403)],f=void 0===t?"":t,p=new Map;function v(){return n[h(443)](this,arguments)}function n(){var i=h;return(n=_asyncToGenerator(_regeneratorRuntime()[i(400)](function t(r,a){var u,e,n,o,c,s=i;return _regeneratorRuntime()[s(494)](function(t){for(var i=s;;)switch(t.prev=t[i(397)]){case 0:return o=new vm.Script(r,{fileName:a,displayErrors:!0}),e={},u=[],e=Object.assign({},global,{exports:e,module:{exports:e},__webpack_publicpath__:f,require:(r=>{function t(t){return r.apply(this,arguments)}return t.toString=function(){return r[_0x5d44(413)]()},t})(function(t){var r=i,e=Math.max(t[r(424)]("?"),t[r(449)]),n=t[r(450)](0,e),o=n[r(445)]("!"),e=t[r(450)](e),t=t.slice(0,o+1),n=n[r(450)](o+1),o="",o=path.isAbsolute(n)?n:path[r(468)](path[r(419)](a),n),n=path[r(452)](o);return p[r(454)](o)?p[r(427)](o):""===t&&".js"===n?(l[r(423)](o),n=require(o),p[r(388)](o,n),n):(u[r(420)]({absolutePath:o,absoluteRequest:t+o+e}),"")})}),o[i(474)](e),t.next=7,Promise[i(434)](u[i(502)]((()=>{var r=_asyncToGenerator(_regeneratorRuntime().mark(function t(c){var s,f;return _regeneratorRuntime().wrap(function(t){for(var r=_0x5d44;;)switch(t[r(406)]=t[r(397)]){case 0:s=c[r(408)],f=c.absoluteRequest,t[r(397)]=3;var e,n,o,i=f,a=h,u=((i=i.split("!"))[1]&&((n=l.remainingRequest[a(389)]("!")[0])&&(e=stringifyRequest(l,n)),n=(i[1][a(442)](/^(.*?)(\?.*)/)||i)[1],o=path[a(468)](l[a(493)],n),fs.existsSync(o)||n===e||(i[1]=JSON[a(405)](e))),i[a(468)]("!"));return new Promise(function(e,n){l[a(391)](u,function(t,r){t?n(t):e(r)})});case 3:return f=t[r(458)],t[r(484)]("return",v(f,s));case 5:case r(444):return t[r(464)]()}},t)}));return function(t){return r[_0x5d44(443)](this,arguments)}})()));case 7:return n=t.sent,o=(t=>{var r=h,e=r(461)in global,n=global[r(461)];global[r(461)]=btoa;try{return t&&t[r(413)]()}catch(t){throw t}finally{e?global[r(461)]=n:delete global[r(461)]}})(e.module[i(401)]),c=o[i(433)](COMMENT_RE,function(){return n[i(498)]()||""}),p[i(388)](a,c),t[i(484)](i(390),c);case 12:case i(444):return t[i(464)]()}},t)})))[i(443)](this,arguments)}return v(r,e)}function getPublicPath(t,r){var e=_0x2a1d17;return e(403)in t?typeof t[e(403)]===e(488)?t[e(403)](r):t[e(403)]:r[e(409)]&&r[e(409)][e(437)]&&"publicPath"in r[e(409)][e(437)]?r.options[e(437)][e(403)]:r[e(481)]&&r._compilation[e(393)]&&e(403)in r[e(481)].outputOptions?r[e(481)][e(393)][e(403)]:""}module[_0x2a1d17(401)]=extractLoader;