pnpm-lock.yaml 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330
  1. lockfileVersion: '6.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. dependencies:
  6. '@handsontable/vue':
  7. specifier: ^15.2.0
  8. version: 15.2.0(handsontable@11.1.0)(vue@2.7.16)
  9. '@lifetech-inc/x-data-spreadsheet':
  10. specifier: ^1.0.17
  11. version: 1.0.17
  12. axios:
  13. specifier: ^1.8.4
  14. version: 1.8.4
  15. docx-preview:
  16. specifier: ^0.3.5
  17. version: 0.3.5
  18. element-ui:
  19. specifier: ^2.15.13
  20. version: 2.15.14(vue@2.7.16)
  21. exceljs:
  22. specifier: ^4.4.0
  23. version: 4.4.0
  24. file-saver:
  25. specifier: ^2.0.5
  26. version: 2.0.5
  27. handsontable:
  28. specifier: ^11.1.0
  29. version: 11.1.0
  30. html2canvas:
  31. specifier: ^1.4.1
  32. version: 1.4.1
  33. js-cookie:
  34. specifier: ^3.0.5
  35. version: 3.0.5
  36. jszip:
  37. specifier: ^3.10.1
  38. version: 3.10.1
  39. lodash-es:
  40. specifier: ^4.17.21
  41. version: 4.17.21
  42. pdfjs-dist:
  43. specifier: 2.4.456
  44. version: 2.4.456
  45. pptxtojson:
  46. specifier: ^1.3.1
  47. version: 1.3.1
  48. tinycolor2:
  49. specifier: ^1.6.0
  50. version: 1.6.0
  51. txml:
  52. specifier: ^5.1.1
  53. version: 5.1.1
  54. vue:
  55. specifier: 2.7.16
  56. version: 2.7.16
  57. vue-router:
  58. specifier: ^3.5.1
  59. version: 3.6.5(vue@2.7.16)
  60. x-data-spreadsheet:
  61. specifier: ^1.1.9
  62. version: 1.1.9
  63. xlsx:
  64. specifier: ^0.18.5
  65. version: 0.18.5
  66. devDependencies:
  67. '@babel/types':
  68. specifier: ^7.27.0
  69. version: 7.27.0
  70. '@originjs/vite-plugin-require-context':
  71. specifier: ^1.0.9
  72. version: 1.0.9
  73. less:
  74. specifier: ^4.3.0
  75. version: 4.3.0
  76. typescript:
  77. specifier: ~5.7.2
  78. version: 5.7.3
  79. vite:
  80. specifier: ^2.8.6
  81. version: 2.9.18(less@4.3.0)
  82. vite-plugin-vue2:
  83. specifier: ^2.0.3
  84. version: 2.0.3(vite@2.9.18)(vue-template-compiler@2.7.16)(vue@2.7.16)
  85. vue-template-compiler:
  86. specifier: ^2.7.16
  87. version: 2.7.16
  88. packages:
  89. /@ampproject/remapping@2.3.0:
  90. resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
  91. engines: {node: '>=6.0.0'}
  92. dependencies:
  93. '@jridgewell/gen-mapping': 0.3.8
  94. '@jridgewell/trace-mapping': 0.3.25
  95. dev: true
  96. /@babel/code-frame@7.26.2:
  97. resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
  98. engines: {node: '>=6.9.0'}
  99. dependencies:
  100. '@babel/helper-validator-identifier': 7.25.9
  101. js-tokens: 4.0.0
  102. picocolors: 1.1.1
  103. dev: true
  104. /@babel/compat-data@7.26.8:
  105. resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
  106. engines: {node: '>=6.9.0'}
  107. dev: true
  108. /@babel/core@7.26.10:
  109. resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
  110. engines: {node: '>=6.9.0'}
  111. dependencies:
  112. '@ampproject/remapping': 2.3.0
  113. '@babel/code-frame': 7.26.2
  114. '@babel/generator': 7.27.0
  115. '@babel/helper-compilation-targets': 7.27.0
  116. '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
  117. '@babel/helpers': 7.27.0
  118. '@babel/parser': 7.27.0
  119. '@babel/template': 7.27.0
  120. '@babel/traverse': 7.27.0
  121. '@babel/types': 7.27.0
  122. convert-source-map: 2.0.0
  123. debug: 4.4.0
  124. gensync: 1.0.0-beta.2
  125. json5: 2.2.3
  126. semver: 6.3.1
  127. transitivePeerDependencies:
  128. - supports-color
  129. dev: true
  130. /@babel/generator@7.27.0:
  131. resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==}
  132. engines: {node: '>=6.9.0'}
  133. dependencies:
  134. '@babel/parser': 7.27.0
  135. '@babel/types': 7.27.0
  136. '@jridgewell/gen-mapping': 0.3.8
  137. '@jridgewell/trace-mapping': 0.3.25
  138. jsesc: 3.1.0
  139. dev: true
  140. /@babel/helper-annotate-as-pure@7.25.9:
  141. resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
  142. engines: {node: '>=6.9.0'}
  143. dependencies:
  144. '@babel/types': 7.27.0
  145. dev: true
  146. /@babel/helper-compilation-targets@7.27.0:
  147. resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==}
  148. engines: {node: '>=6.9.0'}
  149. dependencies:
  150. '@babel/compat-data': 7.26.8
  151. '@babel/helper-validator-option': 7.25.9
  152. browserslist: 4.24.4
  153. lru-cache: 5.1.1
  154. semver: 6.3.1
  155. dev: true
  156. /@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.26.10):
  157. resolution: {integrity: sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==}
  158. engines: {node: '>=6.9.0'}
  159. peerDependencies:
  160. '@babel/core': ^7.0.0
  161. dependencies:
  162. '@babel/core': 7.26.10
  163. '@babel/helper-annotate-as-pure': 7.25.9
  164. '@babel/helper-member-expression-to-functions': 7.25.9
  165. '@babel/helper-optimise-call-expression': 7.25.9
  166. '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10)
  167. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  168. '@babel/traverse': 7.27.0
  169. semver: 6.3.1
  170. transitivePeerDependencies:
  171. - supports-color
  172. dev: true
  173. /@babel/helper-member-expression-to-functions@7.25.9:
  174. resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
  175. engines: {node: '>=6.9.0'}
  176. dependencies:
  177. '@babel/traverse': 7.27.0
  178. '@babel/types': 7.27.0
  179. transitivePeerDependencies:
  180. - supports-color
  181. dev: true
  182. /@babel/helper-module-imports@7.25.9:
  183. resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
  184. engines: {node: '>=6.9.0'}
  185. dependencies:
  186. '@babel/traverse': 7.27.0
  187. '@babel/types': 7.27.0
  188. transitivePeerDependencies:
  189. - supports-color
  190. dev: true
  191. /@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10):
  192. resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
  193. engines: {node: '>=6.9.0'}
  194. peerDependencies:
  195. '@babel/core': ^7.0.0
  196. dependencies:
  197. '@babel/core': 7.26.10
  198. '@babel/helper-module-imports': 7.25.9
  199. '@babel/helper-validator-identifier': 7.25.9
  200. '@babel/traverse': 7.27.0
  201. transitivePeerDependencies:
  202. - supports-color
  203. dev: true
  204. /@babel/helper-optimise-call-expression@7.25.9:
  205. resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
  206. engines: {node: '>=6.9.0'}
  207. dependencies:
  208. '@babel/types': 7.27.0
  209. dev: true
  210. /@babel/helper-plugin-utils@7.26.5:
  211. resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
  212. engines: {node: '>=6.9.0'}
  213. dev: true
  214. /@babel/helper-replace-supers@7.26.5(@babel/core@7.26.10):
  215. resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==}
  216. engines: {node: '>=6.9.0'}
  217. peerDependencies:
  218. '@babel/core': ^7.0.0
  219. dependencies:
  220. '@babel/core': 7.26.10
  221. '@babel/helper-member-expression-to-functions': 7.25.9
  222. '@babel/helper-optimise-call-expression': 7.25.9
  223. '@babel/traverse': 7.27.0
  224. transitivePeerDependencies:
  225. - supports-color
  226. dev: true
  227. /@babel/helper-skip-transparent-expression-wrappers@7.25.9:
  228. resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
  229. engines: {node: '>=6.9.0'}
  230. dependencies:
  231. '@babel/traverse': 7.27.0
  232. '@babel/types': 7.27.0
  233. transitivePeerDependencies:
  234. - supports-color
  235. dev: true
  236. /@babel/helper-string-parser@7.25.9:
  237. resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
  238. engines: {node: '>=6.9.0'}
  239. /@babel/helper-validator-identifier@7.25.9:
  240. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  241. engines: {node: '>=6.9.0'}
  242. /@babel/helper-validator-option@7.25.9:
  243. resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
  244. engines: {node: '>=6.9.0'}
  245. dev: true
  246. /@babel/helpers@7.27.0:
  247. resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==}
  248. engines: {node: '>=6.9.0'}
  249. dependencies:
  250. '@babel/template': 7.27.0
  251. '@babel/types': 7.27.0
  252. dev: true
  253. /@babel/parser@7.27.0:
  254. resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
  255. engines: {node: '>=6.0.0'}
  256. hasBin: true
  257. dependencies:
  258. '@babel/types': 7.27.0
  259. /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.10):
  260. resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
  261. engines: {node: '>=6.9.0'}
  262. deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
  263. peerDependencies:
  264. '@babel/core': ^7.0.0-0
  265. dependencies:
  266. '@babel/core': 7.26.10
  267. '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
  268. '@babel/helper-plugin-utils': 7.26.5
  269. transitivePeerDependencies:
  270. - supports-color
  271. dev: true
  272. /@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.10):
  273. resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
  274. engines: {node: '>=6.9.0'}
  275. peerDependencies:
  276. '@babel/core': ^7.0.0-0
  277. dependencies:
  278. '@babel/core': 7.26.10
  279. '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
  280. '@babel/helper-plugin-utils': 7.26.5
  281. '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.10)
  282. transitivePeerDependencies:
  283. - supports-color
  284. dev: true
  285. /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.26.10):
  286. resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
  287. engines: {node: '>=6.9.0'}
  288. deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
  289. peerDependencies:
  290. '@babel/core': ^7.0.0-0
  291. dependencies:
  292. '@babel/core': 7.26.10
  293. '@babel/helper-plugin-utils': 7.26.5
  294. '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.10)
  295. dev: true
  296. /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.26.10):
  297. resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
  298. engines: {node: '>=6.9.0'}
  299. deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
  300. peerDependencies:
  301. '@babel/core': ^7.0.0-0
  302. dependencies:
  303. '@babel/compat-data': 7.26.8
  304. '@babel/core': 7.26.10
  305. '@babel/helper-compilation-targets': 7.27.0
  306. '@babel/helper-plugin-utils': 7.26.5
  307. '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.10)
  308. '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10)
  309. dev: true
  310. /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.26.10):
  311. resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
  312. engines: {node: '>=6.9.0'}
  313. deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
  314. peerDependencies:
  315. '@babel/core': ^7.0.0-0
  316. dependencies:
  317. '@babel/core': 7.26.10
  318. '@babel/helper-plugin-utils': 7.26.5
  319. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  320. '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.10)
  321. transitivePeerDependencies:
  322. - supports-color
  323. dev: true
  324. /@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.10):
  325. resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
  326. engines: {node: '>=6.9.0'}
  327. peerDependencies:
  328. '@babel/core': ^7.0.0-0
  329. dependencies:
  330. '@babel/core': 7.26.10
  331. '@babel/helper-plugin-utils': 7.26.5
  332. dev: true
  333. /@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.10):
  334. resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
  335. engines: {node: '>=6.9.0'}
  336. peerDependencies:
  337. '@babel/core': ^7.0.0-0
  338. dependencies:
  339. '@babel/core': 7.26.10
  340. '@babel/helper-plugin-utils': 7.26.5
  341. dev: true
  342. /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.10):
  343. resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
  344. peerDependencies:
  345. '@babel/core': ^7.0.0-0
  346. dependencies:
  347. '@babel/core': 7.26.10
  348. '@babel/helper-plugin-utils': 7.26.5
  349. dev: true
  350. /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.10):
  351. resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
  352. peerDependencies:
  353. '@babel/core': ^7.0.0-0
  354. dependencies:
  355. '@babel/core': 7.26.10
  356. '@babel/helper-plugin-utils': 7.26.5
  357. dev: true
  358. /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.10):
  359. resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
  360. peerDependencies:
  361. '@babel/core': ^7.0.0-0
  362. dependencies:
  363. '@babel/core': 7.26.10
  364. '@babel/helper-plugin-utils': 7.26.5
  365. dev: true
  366. /@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.10):
  367. resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
  368. engines: {node: '>=6.9.0'}
  369. peerDependencies:
  370. '@babel/core': ^7.0.0-0
  371. dependencies:
  372. '@babel/core': 7.26.10
  373. '@babel/helper-plugin-utils': 7.26.5
  374. dev: true
  375. /@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.10):
  376. resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
  377. engines: {node: '>=6.9.0'}
  378. peerDependencies:
  379. '@babel/core': ^7.0.0-0
  380. dependencies:
  381. '@babel/core': 7.26.10
  382. '@babel/helper-plugin-utils': 7.26.5
  383. dev: true
  384. /@babel/plugin-transform-block-scoping@7.27.0(@babel/core@7.26.10):
  385. resolution: {integrity: sha512-u1jGphZ8uDI2Pj/HJj6YQ6XQLZCNjOlprjxB5SVz6rq2T6SwAR+CdrWK0CP7F+9rDVMXdB0+r6Am5G5aobOjAQ==}
  386. engines: {node: '>=6.9.0'}
  387. peerDependencies:
  388. '@babel/core': ^7.0.0-0
  389. dependencies:
  390. '@babel/core': 7.26.10
  391. '@babel/helper-plugin-utils': 7.26.5
  392. dev: true
  393. /@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.10):
  394. resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
  395. engines: {node: '>=6.9.0'}
  396. peerDependencies:
  397. '@babel/core': ^7.0.0-0
  398. dependencies:
  399. '@babel/core': 7.26.10
  400. '@babel/helper-plugin-utils': 7.26.5
  401. '@babel/template': 7.27.0
  402. dev: true
  403. /@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.10):
  404. resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
  405. engines: {node: '>=6.9.0'}
  406. peerDependencies:
  407. '@babel/core': ^7.0.0-0
  408. dependencies:
  409. '@babel/core': 7.26.10
  410. '@babel/helper-plugin-utils': 7.26.5
  411. dev: true
  412. /@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.10):
  413. resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
  414. engines: {node: '>=6.9.0'}
  415. peerDependencies:
  416. '@babel/core': ^7.0.0-0
  417. dependencies:
  418. '@babel/core': 7.26.10
  419. '@babel/helper-plugin-utils': 7.26.5
  420. dev: true
  421. /@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.10):
  422. resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
  423. engines: {node: '>=6.9.0'}
  424. peerDependencies:
  425. '@babel/core': ^7.0.0-0
  426. dependencies:
  427. '@babel/core': 7.26.10
  428. '@babel/helper-plugin-utils': 7.26.5
  429. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  430. transitivePeerDependencies:
  431. - supports-color
  432. dev: true
  433. /@babel/plugin-transform-typescript@7.27.0(@babel/core@7.26.10):
  434. resolution: {integrity: sha512-fRGGjO2UEGPjvEcyAZXRXAS8AfdaQoq7HnxAbJoAoW10B9xOKesmmndJv+Sym2a+9FHWZ9KbyyLCe9s0Sn5jtg==}
  435. engines: {node: '>=6.9.0'}
  436. peerDependencies:
  437. '@babel/core': ^7.0.0-0
  438. dependencies:
  439. '@babel/core': 7.26.10
  440. '@babel/helper-annotate-as-pure': 7.25.9
  441. '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
  442. '@babel/helper-plugin-utils': 7.26.5
  443. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  444. '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.10)
  445. transitivePeerDependencies:
  446. - supports-color
  447. dev: true
  448. /@babel/template@7.27.0:
  449. resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==}
  450. engines: {node: '>=6.9.0'}
  451. dependencies:
  452. '@babel/code-frame': 7.26.2
  453. '@babel/parser': 7.27.0
  454. '@babel/types': 7.27.0
  455. dev: true
  456. /@babel/traverse@7.27.0:
  457. resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==}
  458. engines: {node: '>=6.9.0'}
  459. dependencies:
  460. '@babel/code-frame': 7.26.2
  461. '@babel/generator': 7.27.0
  462. '@babel/parser': 7.27.0
  463. '@babel/template': 7.27.0
  464. '@babel/types': 7.27.0
  465. debug: 4.4.0
  466. globals: 11.12.0
  467. transitivePeerDependencies:
  468. - supports-color
  469. dev: true
  470. /@babel/types@7.27.0:
  471. resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
  472. engines: {node: '>=6.9.0'}
  473. dependencies:
  474. '@babel/helper-string-parser': 7.25.9
  475. '@babel/helper-validator-identifier': 7.25.9
  476. /@esbuild/linux-loong64@0.14.54:
  477. resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==}
  478. engines: {node: '>=12'}
  479. cpu: [loong64]
  480. os: [linux]
  481. requiresBuild: true
  482. dev: true
  483. optional: true
  484. /@fast-csv/format@4.3.5:
  485. resolution: {integrity: sha512-8iRn6QF3I8Ak78lNAa+Gdl5MJJBM5vRHivFtMRUWINdevNo00K7OXxS2PshawLKTejVwieIlPmK5YlLu6w4u8A==}
  486. dependencies:
  487. '@types/node': 14.18.63
  488. lodash.escaperegexp: 4.1.2
  489. lodash.isboolean: 3.0.3
  490. lodash.isequal: 4.5.0
  491. lodash.isfunction: 3.0.9
  492. lodash.isnil: 4.0.0
  493. dev: false
  494. /@fast-csv/parse@4.3.6:
  495. resolution: {integrity: sha512-uRsLYksqpbDmWaSmzvJcuApSEe38+6NQZBUsuAyMZKqHxH0g1wcJgsKUvN3WC8tewaqFjBMMGrkHmC+T7k8LvA==}
  496. dependencies:
  497. '@types/node': 14.18.63
  498. lodash.escaperegexp: 4.1.2
  499. lodash.groupby: 4.6.0
  500. lodash.isfunction: 3.0.9
  501. lodash.isnil: 4.0.0
  502. lodash.isundefined: 3.0.1
  503. lodash.uniq: 4.5.0
  504. dev: false
  505. /@handsontable/vue@15.2.0(handsontable@11.1.0)(vue@2.7.16):
  506. resolution: {integrity: sha512-N7OrfGNMwm+uhbU0Kg7zrrSJVrkWFdrT9xR2Wha6XWTXfJoduFKmkHgw6PIBb4nCb7+tM3jAr8ZAR/oFaGH0KA==}
  507. peerDependencies:
  508. handsontable: '>=15.0.0'
  509. vue: ^2.5.0
  510. dependencies:
  511. handsontable: 11.1.0
  512. vue: 2.7.16
  513. dev: false
  514. /@jest/types@26.6.2:
  515. resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
  516. engines: {node: '>= 10.14.2'}
  517. dependencies:
  518. '@types/istanbul-lib-coverage': 2.0.6
  519. '@types/istanbul-reports': 3.0.4
  520. '@types/node': 22.14.1
  521. '@types/yargs': 15.0.19
  522. chalk: 4.1.2
  523. dev: true
  524. /@jridgewell/gen-mapping@0.3.8:
  525. resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
  526. engines: {node: '>=6.0.0'}
  527. dependencies:
  528. '@jridgewell/set-array': 1.2.1
  529. '@jridgewell/sourcemap-codec': 1.5.0
  530. '@jridgewell/trace-mapping': 0.3.25
  531. dev: true
  532. /@jridgewell/resolve-uri@3.1.2:
  533. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  534. engines: {node: '>=6.0.0'}
  535. dev: true
  536. /@jridgewell/set-array@1.2.1:
  537. resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
  538. engines: {node: '>=6.0.0'}
  539. dev: true
  540. /@jridgewell/sourcemap-codec@1.5.0:
  541. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  542. dev: true
  543. /@jridgewell/trace-mapping@0.3.25:
  544. resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
  545. dependencies:
  546. '@jridgewell/resolve-uri': 3.1.2
  547. '@jridgewell/sourcemap-codec': 1.5.0
  548. dev: true
  549. /@lifetech-inc/x-data-spreadsheet@1.0.17:
  550. resolution: {integrity: sha512-pgWAUia9gOH0xJ3GYRatufZ7tQ4kbGBHIQo6nGDppgisrqbDQaWl9NLN6WecTv18vV4g9DgdLMK27u4+NZR2OQ==}
  551. requiresBuild: true
  552. dependencies:
  553. opencollective: 1.0.3
  554. opencollective-postinstall: 2.0.3
  555. dev: false
  556. /@originjs/vite-plugin-require-context@1.0.9:
  557. resolution: {integrity: sha512-xBC7XGm6HkniQ9x+P0yTS4uUua5bWKjnN0/FfHreCV22QrQ+zXIZVdCFDr0PPXuawXfPzqSzdljqffcpSCFNcA==}
  558. dependencies:
  559. '@types/jest': 26.0.24
  560. node-dir: 0.1.17
  561. dev: true
  562. /@rollup/pluginutils@4.2.1:
  563. resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
  564. engines: {node: '>= 8.0.0'}
  565. dependencies:
  566. estree-walker: 2.0.2
  567. picomatch: 2.3.1
  568. dev: true
  569. /@types/istanbul-lib-coverage@2.0.6:
  570. resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
  571. dev: true
  572. /@types/istanbul-lib-report@3.0.3:
  573. resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
  574. dependencies:
  575. '@types/istanbul-lib-coverage': 2.0.6
  576. dev: true
  577. /@types/istanbul-reports@3.0.4:
  578. resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
  579. dependencies:
  580. '@types/istanbul-lib-report': 3.0.3
  581. dev: true
  582. /@types/jest@26.0.24:
  583. resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==}
  584. dependencies:
  585. jest-diff: 26.6.2
  586. pretty-format: 26.6.2
  587. dev: true
  588. /@types/node@14.18.63:
  589. resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==}
  590. dev: false
  591. /@types/node@22.14.1:
  592. resolution: {integrity: sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==}
  593. dependencies:
  594. undici-types: 6.21.0
  595. dev: true
  596. /@types/pikaday@1.7.4:
  597. resolution: {integrity: sha512-0KsHVyw5pTG829nqG4IRu7m+BFQlFEBdbE/1i3S5182HeKUKv1uEW0gyEmkJVp5i4IV+9pyh23O83+KpRkSQbw==}
  598. dependencies:
  599. moment: 2.24.0
  600. dev: false
  601. /@types/yargs-parser@21.0.3:
  602. resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
  603. dev: true
  604. /@types/yargs@15.0.19:
  605. resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==}
  606. dependencies:
  607. '@types/yargs-parser': 21.0.3
  608. dev: true
  609. /@vue/babel-helper-vue-jsx-merge-props@1.4.0:
  610. resolution: {integrity: sha512-JkqXfCkUDp4PIlFdDQ0TdXoIejMtTHP67/pvxlgeY+u5k3LEdKuWZ3LK6xkxo52uDoABIVyRwqVkfLQJhk7VBA==}
  611. dev: true
  612. /@vue/babel-plugin-transform-vue-jsx@1.4.0(@babel/core@7.26.10):
  613. resolution: {integrity: sha512-Fmastxw4MMx0vlgLS4XBX0XiBbUFzoMGeVXuMV08wyOfXdikAFqBTuYPR0tlk+XskL19EzHc39SgjrPGY23JnA==}
  614. peerDependencies:
  615. '@babel/core': ^7.0.0-0
  616. dependencies:
  617. '@babel/core': 7.26.10
  618. '@babel/helper-module-imports': 7.25.9
  619. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  620. '@vue/babel-helper-vue-jsx-merge-props': 1.4.0
  621. html-tags: 2.0.0
  622. lodash.kebabcase: 4.1.1
  623. svg-tags: 1.0.0
  624. transitivePeerDependencies:
  625. - supports-color
  626. dev: true
  627. /@vue/babel-preset-jsx@1.4.0(@babel/core@7.26.10)(vue@2.7.16):
  628. resolution: {integrity: sha512-QmfRpssBOPZWL5xw7fOuHNifCQcNQC1PrOo/4fu6xlhlKJJKSA3HqX92Nvgyx8fqHZTUGMPHmFA+IDqwXlqkSA==}
  629. peerDependencies:
  630. '@babel/core': ^7.0.0-0
  631. vue: '*'
  632. peerDependenciesMeta:
  633. vue:
  634. optional: true
  635. dependencies:
  636. '@babel/core': 7.26.10
  637. '@vue/babel-helper-vue-jsx-merge-props': 1.4.0
  638. '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.26.10)
  639. '@vue/babel-sugar-composition-api-inject-h': 1.4.0(@babel/core@7.26.10)
  640. '@vue/babel-sugar-composition-api-render-instance': 1.4.0(@babel/core@7.26.10)
  641. '@vue/babel-sugar-functional-vue': 1.4.0(@babel/core@7.26.10)
  642. '@vue/babel-sugar-inject-h': 1.4.0(@babel/core@7.26.10)
  643. '@vue/babel-sugar-v-model': 1.4.0(@babel/core@7.26.10)
  644. '@vue/babel-sugar-v-on': 1.4.0(@babel/core@7.26.10)
  645. vue: 2.7.16
  646. transitivePeerDependencies:
  647. - supports-color
  648. dev: true
  649. /@vue/babel-sugar-composition-api-inject-h@1.4.0(@babel/core@7.26.10):
  650. resolution: {integrity: sha512-VQq6zEddJHctnG4w3TfmlVp5FzDavUSut/DwR0xVoe/mJKXyMcsIibL42wPntozITEoY90aBV0/1d2KjxHU52g==}
  651. peerDependencies:
  652. '@babel/core': ^7.0.0-0
  653. dependencies:
  654. '@babel/core': 7.26.10
  655. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  656. dev: true
  657. /@vue/babel-sugar-composition-api-render-instance@1.4.0(@babel/core@7.26.10):
  658. resolution: {integrity: sha512-6ZDAzcxvy7VcnCjNdHJ59mwK02ZFuP5CnucloidqlZwVQv5CQLijc3lGpR7MD3TWFi78J7+a8J56YxbCtHgT9Q==}
  659. peerDependencies:
  660. '@babel/core': ^7.0.0-0
  661. dependencies:
  662. '@babel/core': 7.26.10
  663. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  664. dev: true
  665. /@vue/babel-sugar-functional-vue@1.4.0(@babel/core@7.26.10):
  666. resolution: {integrity: sha512-lTEB4WUFNzYt2In6JsoF9sAYVTo84wC4e+PoZWSgM6FUtqRJz7wMylaEhSRgG71YF+wfLD6cc9nqVeXN2rwBvw==}
  667. peerDependencies:
  668. '@babel/core': ^7.0.0-0
  669. dependencies:
  670. '@babel/core': 7.26.10
  671. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  672. dev: true
  673. /@vue/babel-sugar-inject-h@1.4.0(@babel/core@7.26.10):
  674. resolution: {integrity: sha512-muwWrPKli77uO2fFM7eA3G1lAGnERuSz2NgAxuOLzrsTlQl8W4G+wwbM4nB6iewlKbwKRae3nL03UaF5ffAPMA==}
  675. peerDependencies:
  676. '@babel/core': ^7.0.0-0
  677. dependencies:
  678. '@babel/core': 7.26.10
  679. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  680. dev: true
  681. /@vue/babel-sugar-v-model@1.4.0(@babel/core@7.26.10):
  682. resolution: {integrity: sha512-0t4HGgXb7WHYLBciZzN5s0Hzqan4Ue+p/3FdQdcaHAb7s5D9WZFGoSxEZHrR1TFVZlAPu1bejTKGeAzaaG3NCQ==}
  683. peerDependencies:
  684. '@babel/core': ^7.0.0-0
  685. dependencies:
  686. '@babel/core': 7.26.10
  687. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  688. '@vue/babel-helper-vue-jsx-merge-props': 1.4.0
  689. '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.26.10)
  690. camelcase: 5.3.1
  691. html-tags: 2.0.0
  692. svg-tags: 1.0.0
  693. transitivePeerDependencies:
  694. - supports-color
  695. dev: true
  696. /@vue/babel-sugar-v-on@1.4.0(@babel/core@7.26.10):
  697. resolution: {integrity: sha512-m+zud4wKLzSKgQrWwhqRObWzmTuyzl6vOP7024lrpeJM4x2UhQtRDLgYjXAw9xBXjCwS0pP9kXjg91F9ZNo9JA==}
  698. peerDependencies:
  699. '@babel/core': ^7.0.0-0
  700. dependencies:
  701. '@babel/core': 7.26.10
  702. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  703. '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.26.10)
  704. camelcase: 5.3.1
  705. transitivePeerDependencies:
  706. - supports-color
  707. dev: true
  708. /@vue/compiler-sfc@2.7.16:
  709. resolution: {integrity: sha512-KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg==}
  710. dependencies:
  711. '@babel/parser': 7.27.0
  712. postcss: 8.5.3
  713. source-map: 0.6.1
  714. optionalDependencies:
  715. prettier: 2.8.8
  716. /@vue/component-compiler-utils@3.3.0:
  717. resolution: {integrity: sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==}
  718. dependencies:
  719. consolidate: 0.15.1
  720. hash-sum: 1.0.2
  721. lru-cache: 4.1.5
  722. merge-source-map: 1.1.0
  723. postcss: 7.0.39
  724. postcss-selector-parser: 6.1.2
  725. source-map: 0.6.1
  726. vue-template-es2015-compiler: 1.9.1
  727. optionalDependencies:
  728. prettier: 2.8.8
  729. transitivePeerDependencies:
  730. - arc-templates
  731. - atpl
  732. - babel-core
  733. - bracket-template
  734. - coffee-script
  735. - dot
  736. - dust
  737. - dustjs-helpers
  738. - dustjs-linkedin
  739. - eco
  740. - ect
  741. - ejs
  742. - haml-coffee
  743. - hamlet
  744. - hamljs
  745. - handlebars
  746. - hogan.js
  747. - htmling
  748. - jade
  749. - jazz
  750. - jqtpl
  751. - just
  752. - liquid-node
  753. - liquor
  754. - lodash
  755. - marko
  756. - mote
  757. - mustache
  758. - nunjucks
  759. - plates
  760. - pug
  761. - qejs
  762. - ractive
  763. - razor-tmpl
  764. - react
  765. - react-dom
  766. - slm
  767. - squirrelly
  768. - swig
  769. - swig-templates
  770. - teacup
  771. - templayed
  772. - then-jade
  773. - then-pug
  774. - tinyliquid
  775. - toffee
  776. - twig
  777. - twing
  778. - underscore
  779. - vash
  780. - velocityjs
  781. - walrus
  782. - whiskers
  783. dev: true
  784. /adler-32@1.3.1:
  785. resolution: {integrity: sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A==}
  786. engines: {node: '>=0.8'}
  787. dev: false
  788. /ansi-escapes@1.4.0:
  789. resolution: {integrity: sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw==}
  790. engines: {node: '>=0.10.0'}
  791. dev: false
  792. /ansi-regex@2.1.1:
  793. resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
  794. engines: {node: '>=0.10.0'}
  795. dev: false
  796. /ansi-regex@3.0.1:
  797. resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
  798. engines: {node: '>=4'}
  799. dev: false
  800. /ansi-regex@5.0.1:
  801. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  802. engines: {node: '>=8'}
  803. dev: true
  804. /ansi-styles@2.2.1:
  805. resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
  806. engines: {node: '>=0.10.0'}
  807. dev: false
  808. /ansi-styles@4.3.0:
  809. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  810. engines: {node: '>=8'}
  811. dependencies:
  812. color-convert: 2.0.1
  813. dev: true
  814. /archiver-utils@2.1.0:
  815. resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==}
  816. engines: {node: '>= 6'}
  817. dependencies:
  818. glob: 7.2.3
  819. graceful-fs: 4.2.11
  820. lazystream: 1.0.1
  821. lodash.defaults: 4.2.0
  822. lodash.difference: 4.5.0
  823. lodash.flatten: 4.4.0
  824. lodash.isplainobject: 4.0.6
  825. lodash.union: 4.6.0
  826. normalize-path: 3.0.0
  827. readable-stream: 2.3.8
  828. dev: false
  829. /archiver-utils@3.0.4:
  830. resolution: {integrity: sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==}
  831. engines: {node: '>= 10'}
  832. dependencies:
  833. glob: 7.2.3
  834. graceful-fs: 4.2.11
  835. lazystream: 1.0.1
  836. lodash.defaults: 4.2.0
  837. lodash.difference: 4.5.0
  838. lodash.flatten: 4.4.0
  839. lodash.isplainobject: 4.0.6
  840. lodash.union: 4.6.0
  841. normalize-path: 3.0.0
  842. readable-stream: 3.6.2
  843. dev: false
  844. /archiver@5.3.2:
  845. resolution: {integrity: sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==}
  846. engines: {node: '>= 10'}
  847. dependencies:
  848. archiver-utils: 2.1.0
  849. async: 3.2.6
  850. buffer-crc32: 0.2.13
  851. readable-stream: 3.6.2
  852. readdir-glob: 1.1.3
  853. tar-stream: 2.2.0
  854. zip-stream: 4.1.1
  855. dev: false
  856. /async-validator@1.8.5:
  857. resolution: {integrity: sha512-tXBM+1m056MAX0E8TL2iCjg8WvSyXu0Zc8LNtYqrVeyoL3+esHRZ4SieE9fKQyyU09uONjnMEjrNBMqT0mbvmA==}
  858. dependencies:
  859. babel-runtime: 6.26.0
  860. dev: false
  861. /async@3.2.6:
  862. resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
  863. dev: false
  864. /asynckit@0.4.0:
  865. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  866. dev: false
  867. /axios@1.8.4:
  868. resolution: {integrity: sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw==}
  869. dependencies:
  870. follow-redirects: 1.15.9
  871. form-data: 4.0.2
  872. proxy-from-env: 1.1.0
  873. transitivePeerDependencies:
  874. - debug
  875. dev: false
  876. /babel-helper-vue-jsx-merge-props@2.0.3:
  877. resolution: {integrity: sha512-gsLiKK7Qrb7zYJNgiXKpXblxbV5ffSwR0f5whkPAaBAR4fhi6bwRZxX9wBlIc5M/v8CCkXUbXZL4N/nSE97cqg==}
  878. dev: false
  879. /babel-polyfill@6.23.0:
  880. resolution: {integrity: sha512-0l7mVU+LrQ2X/ZTUq63T5i3VyR2aTgcRTFmBcD6djQ/Fek6q1A9t5u0F4jZVYHzp78jwWAzGfLpAY1b4/I3lfg==}
  881. dependencies:
  882. babel-runtime: 6.26.0
  883. core-js: 2.6.12
  884. regenerator-runtime: 0.10.5
  885. dev: false
  886. /babel-runtime@6.26.0:
  887. resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==}
  888. dependencies:
  889. core-js: 2.6.12
  890. regenerator-runtime: 0.11.1
  891. dev: false
  892. /balanced-match@1.0.2:
  893. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  894. /base64-arraybuffer@1.0.2:
  895. resolution: {integrity: sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==}
  896. engines: {node: '>= 0.6.0'}
  897. dev: false
  898. /base64-js@1.5.1:
  899. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  900. dev: false
  901. /big-integer@1.6.52:
  902. resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
  903. engines: {node: '>=0.6'}
  904. dev: false
  905. /bignumber.js@8.1.1:
  906. resolution: {integrity: sha512-QD46ppGintwPGuL1KqmwhR0O+N2cZUg8JG/VzwI2e28sM9TqHjQB10lI4QAaMHVbLzwVLLAwEglpKPViWX+5NQ==}
  907. dev: false
  908. /binary@0.3.0:
  909. resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==}
  910. dependencies:
  911. buffers: 0.1.1
  912. chainsaw: 0.1.0
  913. dev: false
  914. /bl@4.1.0:
  915. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  916. dependencies:
  917. buffer: 5.7.1
  918. inherits: 2.0.4
  919. readable-stream: 3.6.2
  920. dev: false
  921. /bluebird@3.4.7:
  922. resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==}
  923. dev: false
  924. /bluebird@3.7.2:
  925. resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
  926. dev: true
  927. /brace-expansion@1.1.11:
  928. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  929. dependencies:
  930. balanced-match: 1.0.2
  931. concat-map: 0.0.1
  932. /brace-expansion@2.0.1:
  933. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  934. dependencies:
  935. balanced-match: 1.0.2
  936. dev: false
  937. /browserslist@4.24.4:
  938. resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
  939. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  940. hasBin: true
  941. dependencies:
  942. caniuse-lite: 1.0.30001715
  943. electron-to-chromium: 1.5.139
  944. node-releases: 2.0.19
  945. update-browserslist-db: 1.1.3(browserslist@4.24.4)
  946. dev: true
  947. /buffer-crc32@0.2.13:
  948. resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
  949. dev: false
  950. /buffer-indexof-polyfill@1.0.2:
  951. resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==}
  952. engines: {node: '>=0.10'}
  953. dev: false
  954. /buffer@5.7.1:
  955. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  956. dependencies:
  957. base64-js: 1.5.1
  958. ieee754: 1.2.1
  959. dev: false
  960. /buffers@0.1.1:
  961. resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==}
  962. engines: {node: '>=0.2.0'}
  963. dev: false
  964. /call-bind-apply-helpers@1.0.2:
  965. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  966. engines: {node: '>= 0.4'}
  967. dependencies:
  968. es-errors: 1.3.0
  969. function-bind: 1.1.2
  970. dev: false
  971. /camelcase@5.3.1:
  972. resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
  973. engines: {node: '>=6'}
  974. dev: true
  975. /caniuse-lite@1.0.30001715:
  976. resolution: {integrity: sha512-7ptkFGMm2OAOgvZpwgA4yjQ5SQbrNVGdRjzH0pBdy1Fasvcr+KAeECmbCAECzTuDuoX0FCY8KzUxjf9+9kfZEw==}
  977. dev: true
  978. /cfb@1.2.2:
  979. resolution: {integrity: sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA==}
  980. engines: {node: '>=0.8'}
  981. dependencies:
  982. adler-32: 1.3.1
  983. crc-32: 1.2.2
  984. dev: false
  985. /chainsaw@0.1.0:
  986. resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==}
  987. dependencies:
  988. traverse: 0.3.9
  989. dev: false
  990. /chalk@1.1.3:
  991. resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
  992. engines: {node: '>=0.10.0'}
  993. dependencies:
  994. ansi-styles: 2.2.1
  995. escape-string-regexp: 1.0.5
  996. has-ansi: 2.0.0
  997. strip-ansi: 3.0.1
  998. supports-color: 2.0.0
  999. dev: false
  1000. /chalk@4.1.2:
  1001. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  1002. engines: {node: '>=10'}
  1003. dependencies:
  1004. ansi-styles: 4.3.0
  1005. supports-color: 7.2.0
  1006. dev: true
  1007. /chardet@0.4.2:
  1008. resolution: {integrity: sha512-j/Toj7f1z98Hh2cYo2BVr85EpIRWqUi7rtRSGxh/cqUjqrnJe9l9UE7IUGd2vQ2p+kSHLkSzObQPZPLUC6TQwg==}
  1009. dev: false
  1010. /chevrotain@6.5.0:
  1011. resolution: {integrity: sha512-BwqQ/AgmKJ8jcMEjaSnfMybnKMgGTrtDKowfTP3pX4jwVy0kNjRsT/AP6h+wC3+3NC+X8X15VWBnTCQlX+wQFg==}
  1012. requiresBuild: true
  1013. dependencies:
  1014. regexp-to-ast: 0.4.0
  1015. dev: false
  1016. optional: true
  1017. /cli-cursor@2.1.0:
  1018. resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==}
  1019. engines: {node: '>=4'}
  1020. dependencies:
  1021. restore-cursor: 2.0.0
  1022. dev: false
  1023. /cli-width@2.2.1:
  1024. resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==}
  1025. dev: false
  1026. /codepage@1.15.0:
  1027. resolution: {integrity: sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==}
  1028. engines: {node: '>=0.8'}
  1029. dev: false
  1030. /color-convert@2.0.1:
  1031. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  1032. engines: {node: '>=7.0.0'}
  1033. dependencies:
  1034. color-name: 1.1.4
  1035. dev: true
  1036. /color-name@1.1.4:
  1037. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  1038. dev: true
  1039. /combined-stream@1.0.8:
  1040. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  1041. engines: {node: '>= 0.8'}
  1042. dependencies:
  1043. delayed-stream: 1.0.0
  1044. dev: false
  1045. /compress-commons@4.1.2:
  1046. resolution: {integrity: sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==}
  1047. engines: {node: '>= 10'}
  1048. dependencies:
  1049. buffer-crc32: 0.2.13
  1050. crc32-stream: 4.0.3
  1051. normalize-path: 3.0.0
  1052. readable-stream: 3.6.2
  1053. dev: false
  1054. /concat-map@0.0.1:
  1055. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  1056. /consolidate@0.15.1:
  1057. resolution: {integrity: sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==}
  1058. engines: {node: '>= 0.10.0'}
  1059. deprecated: Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog
  1060. peerDependencies:
  1061. arc-templates: ^0.5.3
  1062. atpl: '>=0.7.6'
  1063. babel-core: ^6.26.3
  1064. bracket-template: ^1.1.5
  1065. coffee-script: ^1.12.7
  1066. dot: ^1.1.3
  1067. dust: ^0.3.0
  1068. dustjs-helpers: ^1.7.4
  1069. dustjs-linkedin: ^2.7.5
  1070. eco: ^1.1.0-rc-3
  1071. ect: ^0.5.9
  1072. ejs: ^3.1.5
  1073. haml-coffee: ^1.14.1
  1074. hamlet: ^0.3.3
  1075. hamljs: ^0.6.2
  1076. handlebars: ^4.7.6
  1077. hogan.js: ^3.0.2
  1078. htmling: ^0.0.8
  1079. jade: ^1.11.0
  1080. jazz: ^0.0.18
  1081. jqtpl: ~1.1.0
  1082. just: ^0.1.8
  1083. liquid-node: ^3.0.1
  1084. liquor: ^0.0.5
  1085. lodash: ^4.17.20
  1086. marko: ^3.14.4
  1087. mote: ^0.2.0
  1088. mustache: ^3.0.0
  1089. nunjucks: ^3.2.2
  1090. plates: ~0.4.11
  1091. pug: ^3.0.0
  1092. qejs: ^3.0.5
  1093. ractive: ^1.3.12
  1094. razor-tmpl: ^1.3.1
  1095. react: ^16.13.1
  1096. react-dom: ^16.13.1
  1097. slm: ^2.0.0
  1098. squirrelly: ^5.1.0
  1099. swig: ^1.4.2
  1100. swig-templates: ^2.0.3
  1101. teacup: ^2.0.0
  1102. templayed: '>=0.2.3'
  1103. then-jade: '*'
  1104. then-pug: '*'
  1105. tinyliquid: ^0.2.34
  1106. toffee: ^0.3.6
  1107. twig: ^1.15.2
  1108. twing: ^5.0.2
  1109. underscore: ^1.11.0
  1110. vash: ^0.13.0
  1111. velocityjs: ^2.0.1
  1112. walrus: ^0.10.1
  1113. whiskers: ^0.4.0
  1114. peerDependenciesMeta:
  1115. arc-templates:
  1116. optional: true
  1117. atpl:
  1118. optional: true
  1119. babel-core:
  1120. optional: true
  1121. bracket-template:
  1122. optional: true
  1123. coffee-script:
  1124. optional: true
  1125. dot:
  1126. optional: true
  1127. dust:
  1128. optional: true
  1129. dustjs-helpers:
  1130. optional: true
  1131. dustjs-linkedin:
  1132. optional: true
  1133. eco:
  1134. optional: true
  1135. ect:
  1136. optional: true
  1137. ejs:
  1138. optional: true
  1139. haml-coffee:
  1140. optional: true
  1141. hamlet:
  1142. optional: true
  1143. hamljs:
  1144. optional: true
  1145. handlebars:
  1146. optional: true
  1147. hogan.js:
  1148. optional: true
  1149. htmling:
  1150. optional: true
  1151. jade:
  1152. optional: true
  1153. jazz:
  1154. optional: true
  1155. jqtpl:
  1156. optional: true
  1157. just:
  1158. optional: true
  1159. liquid-node:
  1160. optional: true
  1161. liquor:
  1162. optional: true
  1163. lodash:
  1164. optional: true
  1165. marko:
  1166. optional: true
  1167. mote:
  1168. optional: true
  1169. mustache:
  1170. optional: true
  1171. nunjucks:
  1172. optional: true
  1173. plates:
  1174. optional: true
  1175. pug:
  1176. optional: true
  1177. qejs:
  1178. optional: true
  1179. ractive:
  1180. optional: true
  1181. razor-tmpl:
  1182. optional: true
  1183. react:
  1184. optional: true
  1185. react-dom:
  1186. optional: true
  1187. slm:
  1188. optional: true
  1189. squirrelly:
  1190. optional: true
  1191. swig:
  1192. optional: true
  1193. swig-templates:
  1194. optional: true
  1195. teacup:
  1196. optional: true
  1197. templayed:
  1198. optional: true
  1199. then-jade:
  1200. optional: true
  1201. then-pug:
  1202. optional: true
  1203. tinyliquid:
  1204. optional: true
  1205. toffee:
  1206. optional: true
  1207. twig:
  1208. optional: true
  1209. twing:
  1210. optional: true
  1211. underscore:
  1212. optional: true
  1213. vash:
  1214. optional: true
  1215. velocityjs:
  1216. optional: true
  1217. walrus:
  1218. optional: true
  1219. whiskers:
  1220. optional: true
  1221. dependencies:
  1222. bluebird: 3.7.2
  1223. dev: true
  1224. /consolidate@0.16.0:
  1225. resolution: {integrity: sha512-Nhl1wzCslqXYTJVDyJCu3ODohy9OfBMB5uD2BiBTzd7w+QY0lBzafkR8y8755yMYHAaMD4NuzbAw03/xzfw+eQ==}
  1226. engines: {node: '>= 0.10.0'}
  1227. deprecated: Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog
  1228. peerDependencies:
  1229. arc-templates: ^0.5.3
  1230. atpl: '>=0.7.6'
  1231. babel-core: ^6.26.3
  1232. bracket-template: ^1.1.5
  1233. coffee-script: ^1.12.7
  1234. dot: ^1.1.3
  1235. dust: ^0.3.0
  1236. dustjs-helpers: ^1.7.4
  1237. dustjs-linkedin: ^2.7.5
  1238. eco: ^1.1.0-rc-3
  1239. ect: ^0.5.9
  1240. ejs: ^3.1.5
  1241. haml-coffee: ^1.14.1
  1242. hamlet: ^0.3.3
  1243. hamljs: ^0.6.2
  1244. handlebars: ^4.7.6
  1245. hogan.js: ^3.0.2
  1246. htmling: ^0.0.8
  1247. jade: ^1.11.0
  1248. jazz: ^0.0.18
  1249. jqtpl: ~1.1.0
  1250. just: ^0.1.8
  1251. liquid-node: ^3.0.1
  1252. liquor: ^0.0.5
  1253. lodash: ^4.17.20
  1254. marko: ^3.14.4
  1255. mote: ^0.2.0
  1256. mustache: ^4.0.1
  1257. nunjucks: ^3.2.2
  1258. plates: ~0.4.11
  1259. pug: ^3.0.0
  1260. qejs: ^3.0.5
  1261. ractive: ^1.3.12
  1262. razor-tmpl: ^1.3.1
  1263. react: ^16.13.1
  1264. react-dom: ^16.13.1
  1265. slm: ^2.0.0
  1266. squirrelly: ^5.1.0
  1267. swig: ^1.4.2
  1268. swig-templates: ^2.0.3
  1269. teacup: ^2.0.0
  1270. templayed: '>=0.2.3'
  1271. then-jade: '*'
  1272. then-pug: '*'
  1273. tinyliquid: ^0.2.34
  1274. toffee: ^0.3.6
  1275. twig: ^1.15.2
  1276. twing: ^5.0.2
  1277. underscore: ^1.11.0
  1278. vash: ^0.13.0
  1279. velocityjs: ^2.0.1
  1280. walrus: ^0.10.1
  1281. whiskers: ^0.4.0
  1282. peerDependenciesMeta:
  1283. arc-templates:
  1284. optional: true
  1285. atpl:
  1286. optional: true
  1287. babel-core:
  1288. optional: true
  1289. bracket-template:
  1290. optional: true
  1291. coffee-script:
  1292. optional: true
  1293. dot:
  1294. optional: true
  1295. dust:
  1296. optional: true
  1297. dustjs-helpers:
  1298. optional: true
  1299. dustjs-linkedin:
  1300. optional: true
  1301. eco:
  1302. optional: true
  1303. ect:
  1304. optional: true
  1305. ejs:
  1306. optional: true
  1307. haml-coffee:
  1308. optional: true
  1309. hamlet:
  1310. optional: true
  1311. hamljs:
  1312. optional: true
  1313. handlebars:
  1314. optional: true
  1315. hogan.js:
  1316. optional: true
  1317. htmling:
  1318. optional: true
  1319. jade:
  1320. optional: true
  1321. jazz:
  1322. optional: true
  1323. jqtpl:
  1324. optional: true
  1325. just:
  1326. optional: true
  1327. liquid-node:
  1328. optional: true
  1329. liquor:
  1330. optional: true
  1331. lodash:
  1332. optional: true
  1333. marko:
  1334. optional: true
  1335. mote:
  1336. optional: true
  1337. mustache:
  1338. optional: true
  1339. nunjucks:
  1340. optional: true
  1341. plates:
  1342. optional: true
  1343. pug:
  1344. optional: true
  1345. qejs:
  1346. optional: true
  1347. ractive:
  1348. optional: true
  1349. razor-tmpl:
  1350. optional: true
  1351. react:
  1352. optional: true
  1353. react-dom:
  1354. optional: true
  1355. slm:
  1356. optional: true
  1357. squirrelly:
  1358. optional: true
  1359. swig:
  1360. optional: true
  1361. swig-templates:
  1362. optional: true
  1363. teacup:
  1364. optional: true
  1365. templayed:
  1366. optional: true
  1367. then-jade:
  1368. optional: true
  1369. then-pug:
  1370. optional: true
  1371. tinyliquid:
  1372. optional: true
  1373. toffee:
  1374. optional: true
  1375. twig:
  1376. optional: true
  1377. twing:
  1378. optional: true
  1379. underscore:
  1380. optional: true
  1381. vash:
  1382. optional: true
  1383. velocityjs:
  1384. optional: true
  1385. walrus:
  1386. optional: true
  1387. whiskers:
  1388. optional: true
  1389. dependencies:
  1390. bluebird: 3.7.2
  1391. dev: true
  1392. /convert-source-map@2.0.0:
  1393. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  1394. dev: true
  1395. /copy-anything@2.0.6:
  1396. resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
  1397. dependencies:
  1398. is-what: 3.14.1
  1399. dev: true
  1400. /core-js@2.6.12:
  1401. resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==}
  1402. deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
  1403. requiresBuild: true
  1404. dev: false
  1405. /core-js@3.41.0:
  1406. resolution: {integrity: sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA==}
  1407. requiresBuild: true
  1408. dev: false
  1409. /core-util-is@1.0.3:
  1410. resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
  1411. dev: false
  1412. /crc-32@1.2.2:
  1413. resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==}
  1414. engines: {node: '>=0.8'}
  1415. hasBin: true
  1416. dev: false
  1417. /crc32-stream@4.0.3:
  1418. resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==}
  1419. engines: {node: '>= 10'}
  1420. dependencies:
  1421. crc-32: 1.2.2
  1422. readable-stream: 3.6.2
  1423. dev: false
  1424. /css-line-break@2.1.0:
  1425. resolution: {integrity: sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==}
  1426. dependencies:
  1427. utrie: 1.0.2
  1428. dev: false
  1429. /cssesc@3.0.0:
  1430. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  1431. engines: {node: '>=4'}
  1432. hasBin: true
  1433. dev: true
  1434. /csstype@3.1.3:
  1435. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  1436. /dayjs@1.11.13:
  1437. resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
  1438. dev: false
  1439. /de-indent@1.0.2:
  1440. resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
  1441. dev: true
  1442. /debug@4.4.0:
  1443. resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
  1444. engines: {node: '>=6.0'}
  1445. peerDependencies:
  1446. supports-color: '*'
  1447. peerDependenciesMeta:
  1448. supports-color:
  1449. optional: true
  1450. dependencies:
  1451. ms: 2.1.3
  1452. dev: true
  1453. /deepmerge@1.5.2:
  1454. resolution: {integrity: sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==}
  1455. engines: {node: '>=0.10.0'}
  1456. dev: false
  1457. /deepmerge@4.3.1:
  1458. resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
  1459. engines: {node: '>=0.10.0'}
  1460. dev: true
  1461. /delayed-stream@1.0.0:
  1462. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  1463. engines: {node: '>=0.4.0'}
  1464. dev: false
  1465. /diff-sequences@26.6.2:
  1466. resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==}
  1467. engines: {node: '>= 10.14.2'}
  1468. dev: true
  1469. /docx-preview@0.3.5:
  1470. resolution: {integrity: sha512-nod1jG5PkvzDIiZAcgAY4gSFQzgmAAChcuZH4Hj9dj7oCzscY3Hn8NfbUv7X7Jk4xL1lfKO113JLDhWKOt6fYw==}
  1471. dependencies:
  1472. jszip: 3.10.1
  1473. dev: false
  1474. /dompurify@2.5.8:
  1475. resolution: {integrity: sha512-o1vSNgrmYMQObbSSvF/1brBYEQPHhV1+gsmrusO7/GXtp1T9rCS8cXFqVxK/9crT1jA6Ccv+5MTSjBNqr7Sovw==}
  1476. dev: false
  1477. /dunder-proto@1.0.1:
  1478. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  1479. engines: {node: '>= 0.4'}
  1480. dependencies:
  1481. call-bind-apply-helpers: 1.0.2
  1482. es-errors: 1.3.0
  1483. gopd: 1.2.0
  1484. dev: false
  1485. /duplexer2@0.1.4:
  1486. resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
  1487. dependencies:
  1488. readable-stream: 2.3.8
  1489. dev: false
  1490. /electron-to-chromium@1.5.139:
  1491. resolution: {integrity: sha512-GGnRYOTdN5LYpwbIr0rwP/ZHOQSvAF6TG0LSzp28uCBb9JiXHJGmaaKw29qjNJc5bGnnp6kXJqRnGMQoELwi5w==}
  1492. dev: true
  1493. /element-ui@2.15.14(vue@2.7.16):
  1494. resolution: {integrity: sha512-2v9fHL0ZGINotOlRIAJD5YuVB8V7WKxrE9Qy7dXhRipa035+kF7WuU/z+tEmLVPBcJ0zt8mOu1DKpWcVzBK8IA==}
  1495. peerDependencies:
  1496. vue: ^2.5.17
  1497. dependencies:
  1498. async-validator: 1.8.5
  1499. babel-helper-vue-jsx-merge-props: 2.0.3
  1500. deepmerge: 1.5.2
  1501. normalize-wheel: 1.0.1
  1502. resize-observer-polyfill: 1.5.1
  1503. throttle-debounce: 1.1.0
  1504. vue: 2.7.16
  1505. dev: false
  1506. /encoding@0.1.13:
  1507. resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
  1508. dependencies:
  1509. iconv-lite: 0.6.3
  1510. dev: false
  1511. /end-of-stream@1.4.4:
  1512. resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
  1513. dependencies:
  1514. once: 1.4.0
  1515. dev: false
  1516. /errno@0.1.8:
  1517. resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
  1518. hasBin: true
  1519. requiresBuild: true
  1520. dependencies:
  1521. prr: 1.0.1
  1522. dev: true
  1523. optional: true
  1524. /es-define-property@1.0.1:
  1525. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  1526. engines: {node: '>= 0.4'}
  1527. dev: false
  1528. /es-errors@1.3.0:
  1529. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  1530. engines: {node: '>= 0.4'}
  1531. dev: false
  1532. /es-object-atoms@1.1.1:
  1533. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  1534. engines: {node: '>= 0.4'}
  1535. dependencies:
  1536. es-errors: 1.3.0
  1537. dev: false
  1538. /es-set-tostringtag@2.1.0:
  1539. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  1540. engines: {node: '>= 0.4'}
  1541. dependencies:
  1542. es-errors: 1.3.0
  1543. get-intrinsic: 1.3.0
  1544. has-tostringtag: 1.0.2
  1545. hasown: 2.0.2
  1546. dev: false
  1547. /esbuild-android-64@0.14.54:
  1548. resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==}
  1549. engines: {node: '>=12'}
  1550. cpu: [x64]
  1551. os: [android]
  1552. requiresBuild: true
  1553. dev: true
  1554. optional: true
  1555. /esbuild-android-arm64@0.14.54:
  1556. resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==}
  1557. engines: {node: '>=12'}
  1558. cpu: [arm64]
  1559. os: [android]
  1560. requiresBuild: true
  1561. dev: true
  1562. optional: true
  1563. /esbuild-darwin-64@0.14.54:
  1564. resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==}
  1565. engines: {node: '>=12'}
  1566. cpu: [x64]
  1567. os: [darwin]
  1568. requiresBuild: true
  1569. dev: true
  1570. optional: true
  1571. /esbuild-darwin-arm64@0.14.54:
  1572. resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==}
  1573. engines: {node: '>=12'}
  1574. cpu: [arm64]
  1575. os: [darwin]
  1576. requiresBuild: true
  1577. dev: true
  1578. optional: true
  1579. /esbuild-freebsd-64@0.14.54:
  1580. resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==}
  1581. engines: {node: '>=12'}
  1582. cpu: [x64]
  1583. os: [freebsd]
  1584. requiresBuild: true
  1585. dev: true
  1586. optional: true
  1587. /esbuild-freebsd-arm64@0.14.54:
  1588. resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==}
  1589. engines: {node: '>=12'}
  1590. cpu: [arm64]
  1591. os: [freebsd]
  1592. requiresBuild: true
  1593. dev: true
  1594. optional: true
  1595. /esbuild-linux-32@0.14.54:
  1596. resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==}
  1597. engines: {node: '>=12'}
  1598. cpu: [ia32]
  1599. os: [linux]
  1600. requiresBuild: true
  1601. dev: true
  1602. optional: true
  1603. /esbuild-linux-64@0.14.54:
  1604. resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==}
  1605. engines: {node: '>=12'}
  1606. cpu: [x64]
  1607. os: [linux]
  1608. requiresBuild: true
  1609. dev: true
  1610. optional: true
  1611. /esbuild-linux-arm64@0.14.54:
  1612. resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==}
  1613. engines: {node: '>=12'}
  1614. cpu: [arm64]
  1615. os: [linux]
  1616. requiresBuild: true
  1617. dev: true
  1618. optional: true
  1619. /esbuild-linux-arm@0.14.54:
  1620. resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==}
  1621. engines: {node: '>=12'}
  1622. cpu: [arm]
  1623. os: [linux]
  1624. requiresBuild: true
  1625. dev: true
  1626. optional: true
  1627. /esbuild-linux-mips64le@0.14.54:
  1628. resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==}
  1629. engines: {node: '>=12'}
  1630. cpu: [mips64el]
  1631. os: [linux]
  1632. requiresBuild: true
  1633. dev: true
  1634. optional: true
  1635. /esbuild-linux-ppc64le@0.14.54:
  1636. resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==}
  1637. engines: {node: '>=12'}
  1638. cpu: [ppc64]
  1639. os: [linux]
  1640. requiresBuild: true
  1641. dev: true
  1642. optional: true
  1643. /esbuild-linux-riscv64@0.14.54:
  1644. resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==}
  1645. engines: {node: '>=12'}
  1646. cpu: [riscv64]
  1647. os: [linux]
  1648. requiresBuild: true
  1649. dev: true
  1650. optional: true
  1651. /esbuild-linux-s390x@0.14.54:
  1652. resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==}
  1653. engines: {node: '>=12'}
  1654. cpu: [s390x]
  1655. os: [linux]
  1656. requiresBuild: true
  1657. dev: true
  1658. optional: true
  1659. /esbuild-netbsd-64@0.14.54:
  1660. resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==}
  1661. engines: {node: '>=12'}
  1662. cpu: [x64]
  1663. os: [netbsd]
  1664. requiresBuild: true
  1665. dev: true
  1666. optional: true
  1667. /esbuild-openbsd-64@0.14.54:
  1668. resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==}
  1669. engines: {node: '>=12'}
  1670. cpu: [x64]
  1671. os: [openbsd]
  1672. requiresBuild: true
  1673. dev: true
  1674. optional: true
  1675. /esbuild-sunos-64@0.14.54:
  1676. resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==}
  1677. engines: {node: '>=12'}
  1678. cpu: [x64]
  1679. os: [sunos]
  1680. requiresBuild: true
  1681. dev: true
  1682. optional: true
  1683. /esbuild-windows-32@0.14.54:
  1684. resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==}
  1685. engines: {node: '>=12'}
  1686. cpu: [ia32]
  1687. os: [win32]
  1688. requiresBuild: true
  1689. dev: true
  1690. optional: true
  1691. /esbuild-windows-64@0.14.54:
  1692. resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==}
  1693. engines: {node: '>=12'}
  1694. cpu: [x64]
  1695. os: [win32]
  1696. requiresBuild: true
  1697. dev: true
  1698. optional: true
  1699. /esbuild-windows-arm64@0.14.54:
  1700. resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==}
  1701. engines: {node: '>=12'}
  1702. cpu: [arm64]
  1703. os: [win32]
  1704. requiresBuild: true
  1705. dev: true
  1706. optional: true
  1707. /esbuild@0.14.54:
  1708. resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==}
  1709. engines: {node: '>=12'}
  1710. hasBin: true
  1711. requiresBuild: true
  1712. optionalDependencies:
  1713. '@esbuild/linux-loong64': 0.14.54
  1714. esbuild-android-64: 0.14.54
  1715. esbuild-android-arm64: 0.14.54
  1716. esbuild-darwin-64: 0.14.54
  1717. esbuild-darwin-arm64: 0.14.54
  1718. esbuild-freebsd-64: 0.14.54
  1719. esbuild-freebsd-arm64: 0.14.54
  1720. esbuild-linux-32: 0.14.54
  1721. esbuild-linux-64: 0.14.54
  1722. esbuild-linux-arm: 0.14.54
  1723. esbuild-linux-arm64: 0.14.54
  1724. esbuild-linux-mips64le: 0.14.54
  1725. esbuild-linux-ppc64le: 0.14.54
  1726. esbuild-linux-riscv64: 0.14.54
  1727. esbuild-linux-s390x: 0.14.54
  1728. esbuild-netbsd-64: 0.14.54
  1729. esbuild-openbsd-64: 0.14.54
  1730. esbuild-sunos-64: 0.14.54
  1731. esbuild-windows-32: 0.14.54
  1732. esbuild-windows-64: 0.14.54
  1733. esbuild-windows-arm64: 0.14.54
  1734. dev: true
  1735. /escalade@3.2.0:
  1736. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  1737. engines: {node: '>=6'}
  1738. dev: true
  1739. /escape-string-regexp@1.0.5:
  1740. resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
  1741. engines: {node: '>=0.8.0'}
  1742. dev: false
  1743. /estree-walker@2.0.2:
  1744. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  1745. dev: true
  1746. /exceljs@4.4.0:
  1747. resolution: {integrity: sha512-XctvKaEMaj1Ii9oDOqbW/6e1gXknSY4g/aLCDicOXqBE4M0nRWkUu0PTp++UPNzoFY12BNHMfs/VadKIS6llvg==}
  1748. engines: {node: '>=8.3.0'}
  1749. dependencies:
  1750. archiver: 5.3.2
  1751. dayjs: 1.11.13
  1752. fast-csv: 4.3.6
  1753. jszip: 3.10.1
  1754. readable-stream: 3.6.2
  1755. saxes: 5.0.1
  1756. tmp: 0.2.3
  1757. unzipper: 0.10.14
  1758. uuid: 8.3.2
  1759. dev: false
  1760. /external-editor@2.2.0:
  1761. resolution: {integrity: sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==}
  1762. engines: {node: '>=0.12'}
  1763. dependencies:
  1764. chardet: 0.4.2
  1765. iconv-lite: 0.4.24
  1766. tmp: 0.0.33
  1767. dev: false
  1768. /fast-csv@4.3.6:
  1769. resolution: {integrity: sha512-2RNSpuwwsJGP0frGsOmTb9oUF+VkFSM4SyLTDgwf2ciHWTarN0lQTC+F2f/t5J9QjW+c65VFIAAu85GsvMIusw==}
  1770. engines: {node: '>=10.0.0'}
  1771. dependencies:
  1772. '@fast-csv/format': 4.3.5
  1773. '@fast-csv/parse': 4.3.6
  1774. dev: false
  1775. /figures@2.0.0:
  1776. resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==}
  1777. engines: {node: '>=4'}
  1778. dependencies:
  1779. escape-string-regexp: 1.0.5
  1780. dev: false
  1781. /file-saver@2.0.5:
  1782. resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==}
  1783. dev: false
  1784. /follow-redirects@1.15.9:
  1785. resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
  1786. engines: {node: '>=4.0'}
  1787. peerDependencies:
  1788. debug: '*'
  1789. peerDependenciesMeta:
  1790. debug:
  1791. optional: true
  1792. dev: false
  1793. /form-data@4.0.2:
  1794. resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
  1795. engines: {node: '>= 6'}
  1796. dependencies:
  1797. asynckit: 0.4.0
  1798. combined-stream: 1.0.8
  1799. es-set-tostringtag: 2.1.0
  1800. mime-types: 2.1.35
  1801. dev: false
  1802. /frac@1.1.2:
  1803. resolution: {integrity: sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==}
  1804. engines: {node: '>=0.8'}
  1805. dev: false
  1806. /fs-constants@1.0.0:
  1807. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  1808. dev: false
  1809. /fs-extra@10.1.0:
  1810. resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
  1811. engines: {node: '>=12'}
  1812. dependencies:
  1813. graceful-fs: 4.2.11
  1814. jsonfile: 6.1.0
  1815. universalify: 2.0.1
  1816. dev: true
  1817. /fs.realpath@1.0.0:
  1818. resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
  1819. dev: false
  1820. /fsevents@2.3.3:
  1821. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  1822. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  1823. os: [darwin]
  1824. requiresBuild: true
  1825. dev: true
  1826. optional: true
  1827. /fstream@1.0.12:
  1828. resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==}
  1829. engines: {node: '>=0.6'}
  1830. deprecated: This package is no longer supported.
  1831. dependencies:
  1832. graceful-fs: 4.2.11
  1833. inherits: 2.0.4
  1834. mkdirp: 0.5.6
  1835. rimraf: 2.7.1
  1836. dev: false
  1837. /function-bind@1.1.2:
  1838. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  1839. /gensync@1.0.0-beta.2:
  1840. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  1841. engines: {node: '>=6.9.0'}
  1842. dev: true
  1843. /get-intrinsic@1.3.0:
  1844. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  1845. engines: {node: '>= 0.4'}
  1846. dependencies:
  1847. call-bind-apply-helpers: 1.0.2
  1848. es-define-property: 1.0.1
  1849. es-errors: 1.3.0
  1850. es-object-atoms: 1.1.1
  1851. function-bind: 1.1.2
  1852. get-proto: 1.0.1
  1853. gopd: 1.2.0
  1854. has-symbols: 1.1.0
  1855. hasown: 2.0.2
  1856. math-intrinsics: 1.1.0
  1857. dev: false
  1858. /get-proto@1.0.1:
  1859. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  1860. engines: {node: '>= 0.4'}
  1861. dependencies:
  1862. dunder-proto: 1.0.1
  1863. es-object-atoms: 1.1.1
  1864. dev: false
  1865. /glob@7.2.3:
  1866. resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
  1867. deprecated: Glob versions prior to v9 are no longer supported
  1868. dependencies:
  1869. fs.realpath: 1.0.0
  1870. inflight: 1.0.6
  1871. inherits: 2.0.4
  1872. minimatch: 3.1.2
  1873. once: 1.4.0
  1874. path-is-absolute: 1.0.1
  1875. dev: false
  1876. /globals@11.12.0:
  1877. resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
  1878. engines: {node: '>=4'}
  1879. dev: true
  1880. /gopd@1.2.0:
  1881. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  1882. engines: {node: '>= 0.4'}
  1883. dev: false
  1884. /graceful-fs@4.2.11:
  1885. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  1886. /handsontable@11.1.0:
  1887. resolution: {integrity: sha512-Ph0avovpqLy+1U0+U+ptvfPDMLYWkxfBXwJU5mT+ql475tAM1CuwhFlY8MH6iRAxrqWJdCDOzytIgIrbGrfjMQ==}
  1888. dependencies:
  1889. '@types/pikaday': 1.7.4
  1890. core-js: 3.41.0
  1891. dompurify: 2.5.8
  1892. moment: 2.24.0
  1893. numbro: 2.1.2
  1894. pikaday: 1.8.0
  1895. optionalDependencies:
  1896. hyperformula: 1.3.1
  1897. dev: false
  1898. /has-ansi@2.0.0:
  1899. resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
  1900. engines: {node: '>=0.10.0'}
  1901. dependencies:
  1902. ansi-regex: 2.1.1
  1903. dev: false
  1904. /has-flag@4.0.0:
  1905. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  1906. engines: {node: '>=8'}
  1907. dev: true
  1908. /has-symbols@1.1.0:
  1909. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  1910. engines: {node: '>= 0.4'}
  1911. dev: false
  1912. /has-tostringtag@1.0.2:
  1913. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  1914. engines: {node: '>= 0.4'}
  1915. dependencies:
  1916. has-symbols: 1.1.0
  1917. dev: false
  1918. /hash-sum@1.0.2:
  1919. resolution: {integrity: sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==}
  1920. dev: true
  1921. /hash-sum@2.0.0:
  1922. resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==}
  1923. dev: true
  1924. /hasown@2.0.2:
  1925. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  1926. engines: {node: '>= 0.4'}
  1927. dependencies:
  1928. function-bind: 1.1.2
  1929. /he@1.2.0:
  1930. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  1931. hasBin: true
  1932. dev: true
  1933. /html-tags@2.0.0:
  1934. resolution: {integrity: sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g==}
  1935. engines: {node: '>=4'}
  1936. dev: true
  1937. /html2canvas@1.4.1:
  1938. resolution: {integrity: sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==}
  1939. engines: {node: '>=8.0.0'}
  1940. dependencies:
  1941. css-line-break: 2.1.0
  1942. text-segmentation: 1.0.3
  1943. dev: false
  1944. /hyperformula@1.3.1:
  1945. resolution: {integrity: sha512-9CdvkJSAy74PLaLQZf6mnvJGncE+ur2tmuZ6wB86E8M+A1hM9HeAJbl+6X3WjeZyvHle6UMV8b0uSNkjGxecKQ==}
  1946. requiresBuild: true
  1947. dependencies:
  1948. chevrotain: 6.5.0
  1949. core-js: 3.41.0
  1950. regenerator-runtime: 0.13.11
  1951. tiny-emitter: 2.1.0
  1952. unorm: 1.6.0
  1953. dev: false
  1954. optional: true
  1955. /iconv-lite@0.4.24:
  1956. resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
  1957. engines: {node: '>=0.10.0'}
  1958. dependencies:
  1959. safer-buffer: 2.1.2
  1960. dev: false
  1961. /iconv-lite@0.6.3:
  1962. resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
  1963. engines: {node: '>=0.10.0'}
  1964. dependencies:
  1965. safer-buffer: 2.1.2
  1966. /ieee754@1.2.1:
  1967. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  1968. dev: false
  1969. /image-size@0.5.5:
  1970. resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
  1971. engines: {node: '>=0.10.0'}
  1972. hasBin: true
  1973. requiresBuild: true
  1974. dev: true
  1975. optional: true
  1976. /immediate@3.0.6:
  1977. resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
  1978. dev: false
  1979. /inflight@1.0.6:
  1980. resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
  1981. deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
  1982. dependencies:
  1983. once: 1.4.0
  1984. wrappy: 1.0.2
  1985. dev: false
  1986. /inherits@2.0.4:
  1987. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  1988. dev: false
  1989. /inquirer@3.0.6:
  1990. resolution: {integrity: sha512-thluxTGBXUGb8DuQcvH9/CM/CrcGyB5xUpWc9x6Slqcq1z/hRr2a6KxUpX4ddRfmbe0hg3E4jTvo5833aWz3BA==}
  1991. dependencies:
  1992. ansi-escapes: 1.4.0
  1993. chalk: 1.1.3
  1994. cli-cursor: 2.1.0
  1995. cli-width: 2.2.1
  1996. external-editor: 2.2.0
  1997. figures: 2.0.0
  1998. lodash: 4.17.21
  1999. mute-stream: 0.0.7
  2000. run-async: 2.4.1
  2001. rx: 4.1.0
  2002. string-width: 2.1.1
  2003. strip-ansi: 3.0.1
  2004. through: 2.3.8
  2005. dev: false
  2006. /is-core-module@2.16.1:
  2007. resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
  2008. engines: {node: '>= 0.4'}
  2009. dependencies:
  2010. hasown: 2.0.2
  2011. dev: true
  2012. /is-fullwidth-code-point@2.0.0:
  2013. resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==}
  2014. engines: {node: '>=4'}
  2015. dev: false
  2016. /is-stream@1.1.0:
  2017. resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
  2018. engines: {node: '>=0.10.0'}
  2019. dev: false
  2020. /is-what@3.14.1:
  2021. resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
  2022. dev: true
  2023. /isarray@1.0.0:
  2024. resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
  2025. dev: false
  2026. /jest-diff@26.6.2:
  2027. resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==}
  2028. engines: {node: '>= 10.14.2'}
  2029. dependencies:
  2030. chalk: 4.1.2
  2031. diff-sequences: 26.6.2
  2032. jest-get-type: 26.3.0
  2033. pretty-format: 26.6.2
  2034. dev: true
  2035. /jest-get-type@26.3.0:
  2036. resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==}
  2037. engines: {node: '>= 10.14.2'}
  2038. dev: true
  2039. /js-cookie@3.0.5:
  2040. resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
  2041. engines: {node: '>=14'}
  2042. dev: false
  2043. /js-tokens@4.0.0:
  2044. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  2045. dev: true
  2046. /jsesc@3.1.0:
  2047. resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
  2048. engines: {node: '>=6'}
  2049. hasBin: true
  2050. dev: true
  2051. /json5@2.2.3:
  2052. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  2053. engines: {node: '>=6'}
  2054. hasBin: true
  2055. dev: true
  2056. /jsonfile@6.1.0:
  2057. resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
  2058. dependencies:
  2059. universalify: 2.0.1
  2060. optionalDependencies:
  2061. graceful-fs: 4.2.11
  2062. dev: true
  2063. /jszip@3.10.1:
  2064. resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==}
  2065. dependencies:
  2066. lie: 3.3.0
  2067. pako: 1.0.11
  2068. readable-stream: 2.3.8
  2069. setimmediate: 1.0.5
  2070. dev: false
  2071. /lazystream@1.0.1:
  2072. resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
  2073. engines: {node: '>= 0.6.3'}
  2074. dependencies:
  2075. readable-stream: 2.3.8
  2076. dev: false
  2077. /less@4.3.0:
  2078. resolution: {integrity: sha512-X9RyH9fvemArzfdP8Pi3irr7lor2Ok4rOttDXBhlwDg+wKQsXOXgHWduAJE1EsF7JJx0w0bcO6BC6tCKKYnXKA==}
  2079. engines: {node: '>=14'}
  2080. hasBin: true
  2081. dependencies:
  2082. copy-anything: 2.0.6
  2083. parse-node-version: 1.0.1
  2084. tslib: 2.8.1
  2085. optionalDependencies:
  2086. errno: 0.1.8
  2087. graceful-fs: 4.2.11
  2088. image-size: 0.5.5
  2089. make-dir: 2.1.0
  2090. mime: 1.6.0
  2091. needle: 3.3.1
  2092. source-map: 0.6.1
  2093. dev: true
  2094. /lie@3.3.0:
  2095. resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==}
  2096. dependencies:
  2097. immediate: 3.0.6
  2098. dev: false
  2099. /listenercount@1.0.1:
  2100. resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==}
  2101. dev: false
  2102. /lodash-es@4.17.21:
  2103. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  2104. dev: false
  2105. /lodash.defaults@4.2.0:
  2106. resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
  2107. dev: false
  2108. /lodash.difference@4.5.0:
  2109. resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==}
  2110. dev: false
  2111. /lodash.escaperegexp@4.1.2:
  2112. resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==}
  2113. dev: false
  2114. /lodash.flatten@4.4.0:
  2115. resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==}
  2116. dev: false
  2117. /lodash.groupby@4.6.0:
  2118. resolution: {integrity: sha512-5dcWxm23+VAoz+awKmBaiBvzox8+RqMgFhi7UvX9DHZr2HdxHXM/Wrf8cfKpsW37RNrvtPn6hSwNqurSILbmJw==}
  2119. dev: false
  2120. /lodash.isboolean@3.0.3:
  2121. resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==}
  2122. dev: false
  2123. /lodash.isequal@4.5.0:
  2124. resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
  2125. deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead.
  2126. dev: false
  2127. /lodash.isfunction@3.0.9:
  2128. resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==}
  2129. dev: false
  2130. /lodash.isnil@4.0.0:
  2131. resolution: {integrity: sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==}
  2132. dev: false
  2133. /lodash.isplainobject@4.0.6:
  2134. resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
  2135. dev: false
  2136. /lodash.isundefined@3.0.1:
  2137. resolution: {integrity: sha512-MXB1is3s899/cD8jheYYE2V9qTHwKvt+npCwpD+1Sxm3Q3cECXCiYHjeHWXNwr6Q0SOBPrYUDxendrO6goVTEA==}
  2138. dev: false
  2139. /lodash.kebabcase@4.1.1:
  2140. resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==}
  2141. dev: true
  2142. /lodash.union@4.6.0:
  2143. resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==}
  2144. dev: false
  2145. /lodash.uniq@4.5.0:
  2146. resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
  2147. dev: false
  2148. /lodash@4.17.21:
  2149. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  2150. dev: false
  2151. /lru-cache@4.1.5:
  2152. resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
  2153. dependencies:
  2154. pseudomap: 1.0.2
  2155. yallist: 2.1.2
  2156. dev: true
  2157. /lru-cache@5.1.1:
  2158. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  2159. dependencies:
  2160. yallist: 3.1.1
  2161. dev: true
  2162. /magic-string@0.26.7:
  2163. resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==}
  2164. engines: {node: '>=12'}
  2165. dependencies:
  2166. sourcemap-codec: 1.4.8
  2167. dev: true
  2168. /make-dir@2.1.0:
  2169. resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
  2170. engines: {node: '>=6'}
  2171. requiresBuild: true
  2172. dependencies:
  2173. pify: 4.0.1
  2174. semver: 5.7.2
  2175. dev: true
  2176. optional: true
  2177. /math-intrinsics@1.1.0:
  2178. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  2179. engines: {node: '>= 0.4'}
  2180. dev: false
  2181. /merge-source-map@1.1.0:
  2182. resolution: {integrity: sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==}
  2183. dependencies:
  2184. source-map: 0.6.1
  2185. dev: true
  2186. /mime-db@1.52.0:
  2187. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  2188. engines: {node: '>= 0.6'}
  2189. dev: false
  2190. /mime-types@2.1.35:
  2191. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  2192. engines: {node: '>= 0.6'}
  2193. dependencies:
  2194. mime-db: 1.52.0
  2195. dev: false
  2196. /mime@1.6.0:
  2197. resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
  2198. engines: {node: '>=4'}
  2199. hasBin: true
  2200. requiresBuild: true
  2201. dev: true
  2202. optional: true
  2203. /mimic-fn@1.2.0:
  2204. resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
  2205. engines: {node: '>=4'}
  2206. dev: false
  2207. /minimatch@3.1.2:
  2208. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  2209. dependencies:
  2210. brace-expansion: 1.1.11
  2211. /minimatch@5.1.6:
  2212. resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
  2213. engines: {node: '>=10'}
  2214. dependencies:
  2215. brace-expansion: 2.0.1
  2216. dev: false
  2217. /minimist@1.2.0:
  2218. resolution: {integrity: sha512-7Wl+Jz+IGWuSdgsQEJ4JunV0si/iMhg42MnQQG6h1R6TNeVenp4U9x5CC5v/gYqz/fENLQITAWXidNtVL0NNbw==}
  2219. dev: false
  2220. /minimist@1.2.8:
  2221. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  2222. dev: false
  2223. /mkdirp@0.5.6:
  2224. resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
  2225. hasBin: true
  2226. dependencies:
  2227. minimist: 1.2.8
  2228. dev: false
  2229. /moment@2.24.0:
  2230. resolution: {integrity: sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==}
  2231. dev: false
  2232. /ms@2.1.3:
  2233. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  2234. dev: true
  2235. /mute-stream@0.0.7:
  2236. resolution: {integrity: sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==}
  2237. dev: false
  2238. /nanoid@3.3.11:
  2239. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  2240. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  2241. hasBin: true
  2242. /needle@3.3.1:
  2243. resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==}
  2244. engines: {node: '>= 4.4.x'}
  2245. hasBin: true
  2246. requiresBuild: true
  2247. dependencies:
  2248. iconv-lite: 0.6.3
  2249. sax: 1.4.1
  2250. dev: true
  2251. optional: true
  2252. /node-dir@0.1.17:
  2253. resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
  2254. engines: {node: '>= 0.10.5'}
  2255. dependencies:
  2256. minimatch: 3.1.2
  2257. dev: true
  2258. /node-fetch@1.6.3:
  2259. resolution: {integrity: sha512-BDxbhLHXFFFvilHjh9xihcDyPkXQ+kjblxnl82zAX41xUYSNvuRpFRznmldR9+OKu+p+ULZ7hNoyunlLB5ecUA==}
  2260. dependencies:
  2261. encoding: 0.1.13
  2262. is-stream: 1.1.0
  2263. dev: false
  2264. /node-releases@2.0.19:
  2265. resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
  2266. dev: true
  2267. /normalize-path@3.0.0:
  2268. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  2269. engines: {node: '>=0.10.0'}
  2270. dev: false
  2271. /normalize-wheel@1.0.1:
  2272. resolution: {integrity: sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA==}
  2273. dev: false
  2274. /numbro@2.1.2:
  2275. resolution: {integrity: sha512-7w833BxZmKGLE9HI0aREtNVRVH6WTYUUlWf4qgA5gKNhPQ4F/MRZ14sc0v8eoLORprk9ZTVwYaLwj8N3Zgxwiw==}
  2276. dependencies:
  2277. bignumber.js: 8.1.1
  2278. dev: false
  2279. /object-assign@4.1.1:
  2280. resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  2281. engines: {node: '>=0.10.0'}
  2282. dev: false
  2283. /once@1.4.0:
  2284. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  2285. dependencies:
  2286. wrappy: 1.0.2
  2287. dev: false
  2288. /onetime@2.0.1:
  2289. resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==}
  2290. engines: {node: '>=4'}
  2291. dependencies:
  2292. mimic-fn: 1.2.0
  2293. dev: false
  2294. /opencollective-postinstall@2.0.3:
  2295. resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==}
  2296. hasBin: true
  2297. dev: false
  2298. /opencollective@1.0.3:
  2299. resolution: {integrity: sha512-YBRI0Qa8+Ui0/STV1qYuPrJm889PT3oCPHMVoL+8Y3nwCffj7PSrB2NlGgrhgBKDujxTjxknHWJ/FiqOsYcIDw==}
  2300. hasBin: true
  2301. dependencies:
  2302. babel-polyfill: 6.23.0
  2303. chalk: 1.1.3
  2304. inquirer: 3.0.6
  2305. minimist: 1.2.0
  2306. node-fetch: 1.6.3
  2307. opn: 4.0.2
  2308. dev: false
  2309. /opn@4.0.2:
  2310. resolution: {integrity: sha512-iPBWbPP4OEOzR1xfhpGLDh+ypKBOygunZhM9jBtA7FS5sKjEiMZw0EFb82hnDOmTZX90ZWLoZKUza4cVt8MexA==}
  2311. engines: {node: '>=0.10.0'}
  2312. dependencies:
  2313. object-assign: 4.1.1
  2314. pinkie-promise: 2.0.1
  2315. dev: false
  2316. /os-tmpdir@1.0.2:
  2317. resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
  2318. engines: {node: '>=0.10.0'}
  2319. dev: false
  2320. /pako@1.0.11:
  2321. resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
  2322. dev: false
  2323. /parse-node-version@1.0.1:
  2324. resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
  2325. engines: {node: '>= 0.10'}
  2326. dev: true
  2327. /path-is-absolute@1.0.1:
  2328. resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
  2329. engines: {node: '>=0.10.0'}
  2330. dev: false
  2331. /path-parse@1.0.7:
  2332. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  2333. dev: true
  2334. /pdfjs-dist@2.4.456:
  2335. resolution: {integrity: sha512-yckJEHq3F48hcp6wStEpbN9McOj328Ib09UrBlGAKxvN2k+qYPN5iq6TH6jD1C0pso7zTep+g/CKsYgdrQd5QA==}
  2336. dev: false
  2337. /picocolors@0.2.1:
  2338. resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
  2339. dev: true
  2340. /picocolors@1.1.1:
  2341. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  2342. /picomatch@2.3.1:
  2343. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  2344. engines: {node: '>=8.6'}
  2345. dev: true
  2346. /pify@4.0.1:
  2347. resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
  2348. engines: {node: '>=6'}
  2349. requiresBuild: true
  2350. dev: true
  2351. optional: true
  2352. /pikaday@1.8.0:
  2353. resolution: {integrity: sha512-SgGxMYX0NHj9oQnMaSyAipr2gOrbB4Lfs/TJTb6H6hRHs39/5c5VZi73Q8hr53+vWjdn6HzkWcj8Vtl3c9ziaA==}
  2354. dev: false
  2355. /pinkie-promise@2.0.1:
  2356. resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==}
  2357. engines: {node: '>=0.10.0'}
  2358. dependencies:
  2359. pinkie: 2.0.4
  2360. dev: false
  2361. /pinkie@2.0.4:
  2362. resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==}
  2363. engines: {node: '>=0.10.0'}
  2364. dev: false
  2365. /postcss-selector-parser@6.1.2:
  2366. resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
  2367. engines: {node: '>=4'}
  2368. dependencies:
  2369. cssesc: 3.0.0
  2370. util-deprecate: 1.0.2
  2371. dev: true
  2372. /postcss@7.0.39:
  2373. resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
  2374. engines: {node: '>=6.0.0'}
  2375. dependencies:
  2376. picocolors: 0.2.1
  2377. source-map: 0.6.1
  2378. dev: true
  2379. /postcss@8.5.3:
  2380. resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
  2381. engines: {node: ^10 || ^12 || >=14}
  2382. dependencies:
  2383. nanoid: 3.3.11
  2384. picocolors: 1.1.1
  2385. source-map-js: 1.2.1
  2386. /pptxtojson@1.3.1:
  2387. resolution: {integrity: sha512-+FcSS70PTkgdlExXCEUoNL2DZcySueonyYpnQANeD6BW1AX8313o6zF71t5wN7tnO1cxh1p0/J90fBV5yMzTCA==}
  2388. dependencies:
  2389. jszip: 3.10.1
  2390. tinycolor2: 1.6.0
  2391. txml: 5.1.1
  2392. dev: false
  2393. /prettier@2.8.8:
  2394. resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
  2395. engines: {node: '>=10.13.0'}
  2396. hasBin: true
  2397. /pretty-format@26.6.2:
  2398. resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==}
  2399. engines: {node: '>= 10'}
  2400. dependencies:
  2401. '@jest/types': 26.6.2
  2402. ansi-regex: 5.0.1
  2403. ansi-styles: 4.3.0
  2404. react-is: 17.0.2
  2405. dev: true
  2406. /process-nextick-args@2.0.1:
  2407. resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
  2408. dev: false
  2409. /proxy-from-env@1.1.0:
  2410. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  2411. dev: false
  2412. /prr@1.0.1:
  2413. resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
  2414. requiresBuild: true
  2415. dev: true
  2416. optional: true
  2417. /pseudomap@1.0.2:
  2418. resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
  2419. dev: true
  2420. /querystring@0.2.1:
  2421. resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==}
  2422. engines: {node: '>=0.4.x'}
  2423. deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
  2424. dev: true
  2425. /react-is@17.0.2:
  2426. resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
  2427. dev: true
  2428. /readable-stream@2.3.8:
  2429. resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
  2430. dependencies:
  2431. core-util-is: 1.0.3
  2432. inherits: 2.0.4
  2433. isarray: 1.0.0
  2434. process-nextick-args: 2.0.1
  2435. safe-buffer: 5.1.2
  2436. string_decoder: 1.1.1
  2437. util-deprecate: 1.0.2
  2438. dev: false
  2439. /readable-stream@3.6.2:
  2440. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  2441. engines: {node: '>= 6'}
  2442. dependencies:
  2443. inherits: 2.0.4
  2444. string_decoder: 1.3.0
  2445. util-deprecate: 1.0.2
  2446. dev: false
  2447. /readdir-glob@1.1.3:
  2448. resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==}
  2449. dependencies:
  2450. minimatch: 5.1.6
  2451. dev: false
  2452. /regenerator-runtime@0.10.5:
  2453. resolution: {integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==}
  2454. dev: false
  2455. /regenerator-runtime@0.11.1:
  2456. resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==}
  2457. dev: false
  2458. /regenerator-runtime@0.13.11:
  2459. resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
  2460. requiresBuild: true
  2461. dev: false
  2462. optional: true
  2463. /regexp-to-ast@0.4.0:
  2464. resolution: {integrity: sha512-4qf/7IsIKfSNHQXSwial1IFmfM1Cc/whNBQqRwe0V2stPe7KmN1U0tWQiIx6JiirgSrisjE0eECdNf7Tav1Ntw==}
  2465. requiresBuild: true
  2466. dev: false
  2467. optional: true
  2468. /resize-observer-polyfill@1.5.1:
  2469. resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
  2470. dev: false
  2471. /resolve@1.22.10:
  2472. resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
  2473. engines: {node: '>= 0.4'}
  2474. hasBin: true
  2475. dependencies:
  2476. is-core-module: 2.16.1
  2477. path-parse: 1.0.7
  2478. supports-preserve-symlinks-flag: 1.0.0
  2479. dev: true
  2480. /restore-cursor@2.0.0:
  2481. resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==}
  2482. engines: {node: '>=4'}
  2483. dependencies:
  2484. onetime: 2.0.1
  2485. signal-exit: 3.0.7
  2486. dev: false
  2487. /rimraf@2.7.1:
  2488. resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
  2489. deprecated: Rimraf versions prior to v4 are no longer supported
  2490. hasBin: true
  2491. dependencies:
  2492. glob: 7.2.3
  2493. dev: false
  2494. /rollup@2.77.3:
  2495. resolution: {integrity: sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==}
  2496. engines: {node: '>=10.0.0'}
  2497. hasBin: true
  2498. optionalDependencies:
  2499. fsevents: 2.3.3
  2500. dev: true
  2501. /rollup@2.79.2:
  2502. resolution: {integrity: sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==}
  2503. engines: {node: '>=10.0.0'}
  2504. hasBin: true
  2505. optionalDependencies:
  2506. fsevents: 2.3.3
  2507. dev: true
  2508. /run-async@2.4.1:
  2509. resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
  2510. engines: {node: '>=0.12.0'}
  2511. dev: false
  2512. /rx@4.1.0:
  2513. resolution: {integrity: sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==}
  2514. dev: false
  2515. /safe-buffer@5.1.2:
  2516. resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
  2517. dev: false
  2518. /safe-buffer@5.2.1:
  2519. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  2520. dev: false
  2521. /safer-buffer@2.1.2:
  2522. resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
  2523. /sax@1.4.1:
  2524. resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
  2525. requiresBuild: true
  2526. dev: true
  2527. optional: true
  2528. /saxes@5.0.1:
  2529. resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==}
  2530. engines: {node: '>=10'}
  2531. dependencies:
  2532. xmlchars: 2.2.0
  2533. dev: false
  2534. /semver@5.7.2:
  2535. resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
  2536. hasBin: true
  2537. requiresBuild: true
  2538. dev: true
  2539. optional: true
  2540. /semver@6.3.1:
  2541. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  2542. hasBin: true
  2543. dev: true
  2544. /setimmediate@1.0.5:
  2545. resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
  2546. dev: false
  2547. /signal-exit@3.0.7:
  2548. resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
  2549. dev: false
  2550. /slash@3.0.0:
  2551. resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
  2552. engines: {node: '>=8'}
  2553. dev: true
  2554. /source-map-js@1.2.1:
  2555. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  2556. engines: {node: '>=0.10.0'}
  2557. /source-map@0.6.1:
  2558. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  2559. engines: {node: '>=0.10.0'}
  2560. /source-map@0.7.4:
  2561. resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
  2562. engines: {node: '>= 8'}
  2563. dev: true
  2564. /sourcemap-codec@1.4.8:
  2565. resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
  2566. deprecated: Please use @jridgewell/sourcemap-codec instead
  2567. dev: true
  2568. /ssf@0.11.2:
  2569. resolution: {integrity: sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g==}
  2570. engines: {node: '>=0.8'}
  2571. dependencies:
  2572. frac: 1.1.2
  2573. dev: false
  2574. /string-width@2.1.1:
  2575. resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==}
  2576. engines: {node: '>=4'}
  2577. dependencies:
  2578. is-fullwidth-code-point: 2.0.0
  2579. strip-ansi: 4.0.0
  2580. dev: false
  2581. /string_decoder@1.1.1:
  2582. resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
  2583. dependencies:
  2584. safe-buffer: 5.1.2
  2585. dev: false
  2586. /string_decoder@1.3.0:
  2587. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  2588. dependencies:
  2589. safe-buffer: 5.2.1
  2590. dev: false
  2591. /strip-ansi@3.0.1:
  2592. resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
  2593. engines: {node: '>=0.10.0'}
  2594. dependencies:
  2595. ansi-regex: 2.1.1
  2596. dev: false
  2597. /strip-ansi@4.0.0:
  2598. resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==}
  2599. engines: {node: '>=4'}
  2600. dependencies:
  2601. ansi-regex: 3.0.1
  2602. dev: false
  2603. /supports-color@2.0.0:
  2604. resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
  2605. engines: {node: '>=0.8.0'}
  2606. dev: false
  2607. /supports-color@7.2.0:
  2608. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  2609. engines: {node: '>=8'}
  2610. dependencies:
  2611. has-flag: 4.0.0
  2612. dev: true
  2613. /supports-preserve-symlinks-flag@1.0.0:
  2614. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  2615. engines: {node: '>= 0.4'}
  2616. dev: true
  2617. /svg-tags@1.0.0:
  2618. resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
  2619. dev: true
  2620. /tar-stream@2.2.0:
  2621. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  2622. engines: {node: '>=6'}
  2623. dependencies:
  2624. bl: 4.1.0
  2625. end-of-stream: 1.4.4
  2626. fs-constants: 1.0.0
  2627. inherits: 2.0.4
  2628. readable-stream: 3.6.2
  2629. dev: false
  2630. /text-segmentation@1.0.3:
  2631. resolution: {integrity: sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==}
  2632. dependencies:
  2633. utrie: 1.0.2
  2634. dev: false
  2635. /throttle-debounce@1.1.0:
  2636. resolution: {integrity: sha512-XH8UiPCQcWNuk2LYePibW/4qL97+ZQ1AN3FNXwZRBNPPowo/NRU5fAlDCSNBJIYCKbioZfuYtMhG4quqoJhVzg==}
  2637. engines: {node: '>=4'}
  2638. dev: false
  2639. /through2@3.0.2:
  2640. resolution: {integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==}
  2641. dependencies:
  2642. inherits: 2.0.4
  2643. readable-stream: 3.6.2
  2644. dev: false
  2645. /through@2.3.8:
  2646. resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
  2647. dev: false
  2648. /tiny-emitter@2.1.0:
  2649. resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==}
  2650. requiresBuild: true
  2651. dev: false
  2652. optional: true
  2653. /tinycolor2@1.6.0:
  2654. resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
  2655. dev: false
  2656. /tmp@0.0.33:
  2657. resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
  2658. engines: {node: '>=0.6.0'}
  2659. dependencies:
  2660. os-tmpdir: 1.0.2
  2661. dev: false
  2662. /tmp@0.2.3:
  2663. resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
  2664. engines: {node: '>=14.14'}
  2665. dev: false
  2666. /traverse@0.3.9:
  2667. resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==}
  2668. dev: false
  2669. /tslib@2.8.1:
  2670. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  2671. dev: true
  2672. /txml@5.1.1:
  2673. resolution: {integrity: sha512-TwMDLnXQ09enNaxybLVvKZU7rqog8LgnuAs4ZYXM0nV0eu10iLsSFwlX3AEknAXXtH1wT3CYfoiXAjyBexcmuw==}
  2674. dependencies:
  2675. through2: 3.0.2
  2676. dev: false
  2677. /typescript@5.7.3:
  2678. resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
  2679. engines: {node: '>=14.17'}
  2680. hasBin: true
  2681. dev: true
  2682. /undici-types@6.21.0:
  2683. resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
  2684. dev: true
  2685. /universalify@2.0.1:
  2686. resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
  2687. engines: {node: '>= 10.0.0'}
  2688. dev: true
  2689. /unorm@1.6.0:
  2690. resolution: {integrity: sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA==}
  2691. engines: {node: '>= 0.4.0'}
  2692. requiresBuild: true
  2693. dev: false
  2694. optional: true
  2695. /unzipper@0.10.14:
  2696. resolution: {integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==}
  2697. dependencies:
  2698. big-integer: 1.6.52
  2699. binary: 0.3.0
  2700. bluebird: 3.4.7
  2701. buffer-indexof-polyfill: 1.0.2
  2702. duplexer2: 0.1.4
  2703. fstream: 1.0.12
  2704. graceful-fs: 4.2.11
  2705. listenercount: 1.0.1
  2706. readable-stream: 2.3.8
  2707. setimmediate: 1.0.5
  2708. dev: false
  2709. /update-browserslist-db@1.1.3(browserslist@4.24.4):
  2710. resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
  2711. hasBin: true
  2712. peerDependencies:
  2713. browserslist: '>= 4.21.0'
  2714. dependencies:
  2715. browserslist: 4.24.4
  2716. escalade: 3.2.0
  2717. picocolors: 1.1.1
  2718. dev: true
  2719. /util-deprecate@1.0.2:
  2720. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  2721. /utrie@1.0.2:
  2722. resolution: {integrity: sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==}
  2723. dependencies:
  2724. base64-arraybuffer: 1.0.2
  2725. dev: false
  2726. /uuid@8.3.2:
  2727. resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
  2728. hasBin: true
  2729. dev: false
  2730. /vite-plugin-vue2@2.0.3(vite@2.9.18)(vue-template-compiler@2.7.16)(vue@2.7.16):
  2731. resolution: {integrity: sha512-t3Tu93GWsMHbpeIv66MTO5e/rRAo8/+/eWoUtFYuAdKDMyEnn1dqsrXh+CfG+SJAlxJvcTP8U0eXkzhLjKNyMg==}
  2732. peerDependencies:
  2733. vite: ^2.0.0 || ^3.0.0 || ^4.0.0
  2734. vue-template-compiler: ^2.2.0
  2735. dependencies:
  2736. '@babel/core': 7.26.10
  2737. '@babel/parser': 7.27.0
  2738. '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.10)
  2739. '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.10)
  2740. '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.10)
  2741. '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.26.10)
  2742. '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.10)
  2743. '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.10)
  2744. '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.26.10)
  2745. '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.10)
  2746. '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.10)
  2747. '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10)
  2748. '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.10)
  2749. '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10)
  2750. '@rollup/pluginutils': 4.2.1
  2751. '@vue/babel-helper-vue-jsx-merge-props': 1.4.0
  2752. '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.26.10)(vue@2.7.16)
  2753. '@vue/component-compiler-utils': 3.3.0
  2754. consolidate: 0.16.0
  2755. debug: 4.4.0
  2756. fs-extra: 10.1.0
  2757. hash-sum: 2.0.0
  2758. magic-string: 0.26.7
  2759. prettier: 2.8.8
  2760. querystring: 0.2.1
  2761. rollup: 2.79.2
  2762. slash: 3.0.0
  2763. source-map: 0.7.4
  2764. vite: 2.9.18(less@4.3.0)
  2765. vue-template-babel-compiler: 1.2.0(vue-template-compiler@2.7.16)
  2766. vue-template-compiler: 2.7.16
  2767. transitivePeerDependencies:
  2768. - arc-templates
  2769. - atpl
  2770. - babel-core
  2771. - bracket-template
  2772. - coffee-script
  2773. - dot
  2774. - dust
  2775. - dustjs-helpers
  2776. - dustjs-linkedin
  2777. - eco
  2778. - ect
  2779. - ejs
  2780. - haml-coffee
  2781. - hamlet
  2782. - hamljs
  2783. - handlebars
  2784. - hogan.js
  2785. - htmling
  2786. - jade
  2787. - jazz
  2788. - jqtpl
  2789. - just
  2790. - liquid-node
  2791. - liquor
  2792. - lodash
  2793. - marko
  2794. - mote
  2795. - mustache
  2796. - nunjucks
  2797. - plates
  2798. - pug
  2799. - qejs
  2800. - ractive
  2801. - razor-tmpl
  2802. - react
  2803. - react-dom
  2804. - slm
  2805. - squirrelly
  2806. - supports-color
  2807. - swig
  2808. - swig-templates
  2809. - teacup
  2810. - templayed
  2811. - then-jade
  2812. - then-pug
  2813. - tinyliquid
  2814. - toffee
  2815. - twig
  2816. - twing
  2817. - underscore
  2818. - vash
  2819. - velocityjs
  2820. - vue
  2821. - walrus
  2822. - whiskers
  2823. dev: true
  2824. /vite@2.9.18(less@4.3.0):
  2825. resolution: {integrity: sha512-sAOqI5wNM9QvSEE70W3UGMdT8cyEn0+PmJMTFvTB8wB0YbYUWw3gUbY62AOyrXosGieF2htmeLATvNxpv/zNyQ==}
  2826. engines: {node: '>=12.2.0'}
  2827. hasBin: true
  2828. peerDependencies:
  2829. less: '*'
  2830. sass: '*'
  2831. stylus: '*'
  2832. peerDependenciesMeta:
  2833. less:
  2834. optional: true
  2835. sass:
  2836. optional: true
  2837. stylus:
  2838. optional: true
  2839. dependencies:
  2840. esbuild: 0.14.54
  2841. less: 4.3.0
  2842. postcss: 8.5.3
  2843. resolve: 1.22.10
  2844. rollup: 2.77.3
  2845. optionalDependencies:
  2846. fsevents: 2.3.3
  2847. dev: true
  2848. /vue-router@3.6.5(vue@2.7.16):
  2849. resolution: {integrity: sha512-VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ==}
  2850. peerDependencies:
  2851. vue: ^2
  2852. dependencies:
  2853. vue: 2.7.16
  2854. dev: false
  2855. /vue-template-babel-compiler@1.2.0(vue-template-compiler@2.7.16):
  2856. resolution: {integrity: sha512-CScBSX1/wCdmmZ/Lvj/63p2CCVTS0FMj0F69VRBo73CuJrjvPAPGmeNJ7D/cwt/VS2PduowRWbO8N4Zh4Z3b0g==}
  2857. engines: {node: '>=12.0.0'}
  2858. peerDependencies:
  2859. vue-template-compiler: ^2.6.0
  2860. dependencies:
  2861. '@babel/core': 7.26.10
  2862. '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.10)
  2863. '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.26.10)
  2864. '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.10)
  2865. '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.10)
  2866. '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.26.10)
  2867. '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.10)
  2868. '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.10)
  2869. '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10)
  2870. '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.10)
  2871. '@babel/types': 7.27.0
  2872. deepmerge: 4.3.1
  2873. vue-template-compiler: 2.7.16
  2874. transitivePeerDependencies:
  2875. - supports-color
  2876. dev: true
  2877. /vue-template-compiler@2.7.16:
  2878. resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==}
  2879. dependencies:
  2880. de-indent: 1.0.2
  2881. he: 1.2.0
  2882. dev: true
  2883. /vue-template-es2015-compiler@1.9.1:
  2884. resolution: {integrity: sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==}
  2885. dev: true
  2886. /vue@2.7.16:
  2887. resolution: {integrity: sha512-4gCtFXaAA3zYZdTp5s4Hl2sozuySsgz4jy1EnpBHNfpMa9dK1ZCG7viqBPCwXtmgc8nHqUsAu3G4gtmXkkY3Sw==}
  2888. deprecated: Vue 2 has reached EOL and is no longer actively maintained. See https://v2.vuejs.org/eol/ for more details.
  2889. dependencies:
  2890. '@vue/compiler-sfc': 2.7.16
  2891. csstype: 3.1.3
  2892. /wmf@1.0.2:
  2893. resolution: {integrity: sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw==}
  2894. engines: {node: '>=0.8'}
  2895. dev: false
  2896. /word@0.3.0:
  2897. resolution: {integrity: sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==}
  2898. engines: {node: '>=0.8'}
  2899. dev: false
  2900. /wrappy@1.0.2:
  2901. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  2902. dev: false
  2903. /x-data-spreadsheet@1.1.9:
  2904. resolution: {integrity: sha512-wk7knDBYdHjtWiHUVQryZMy00dsGNCF+6wMb5ykwEFcAtBYkYZakJCOCHpEo8onC0Lb/q2gIynWpbQxA4qakyg==}
  2905. requiresBuild: true
  2906. dependencies:
  2907. opencollective: 1.0.3
  2908. opencollective-postinstall: 2.0.3
  2909. dev: false
  2910. /xlsx@0.18.5:
  2911. resolution: {integrity: sha512-dmg3LCjBPHZnQp5/F/+nnTa+miPJxUXB6vtk42YjBBKayDNagxGEeIdWApkYPOf3Z3pm3k62Knjzp7lMeTEtFQ==}
  2912. engines: {node: '>=0.8'}
  2913. hasBin: true
  2914. dependencies:
  2915. adler-32: 1.3.1
  2916. cfb: 1.2.2
  2917. codepage: 1.15.0
  2918. crc-32: 1.2.2
  2919. ssf: 0.11.2
  2920. wmf: 1.0.2
  2921. word: 0.3.0
  2922. dev: false
  2923. /xmlchars@2.2.0:
  2924. resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
  2925. dev: false
  2926. /yallist@2.1.2:
  2927. resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
  2928. dev: true
  2929. /yallist@3.1.1:
  2930. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  2931. dev: true
  2932. /zip-stream@4.1.1:
  2933. resolution: {integrity: sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==}
  2934. engines: {node: '>= 10'}
  2935. dependencies:
  2936. archiver-utils: 3.0.4
  2937. compress-commons: 4.1.2
  2938. readable-stream: 3.6.2
  2939. dev: false