pnpm-lock.yaml 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906
  1. lockfileVersion: "6.0"
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. dependencies:
  6. "@emotion/react":
  7. specifier: ^11.11.1
  8. version: 11.11.1(@types/react@18.2.37)(react@18.2.0)
  9. "@emotion/styled":
  10. specifier: ^11.11.0
  11. version: 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.37)(react@18.2.0)
  12. "@juggle/resize-observer":
  13. specifier: ^3.4.0
  14. version: 3.4.0
  15. "@mui/icons-material":
  16. specifier: ^5.14.14
  17. version: 5.14.14(@mui/material@5.14.14)(@types/react@18.2.37)(react@18.2.0)
  18. "@mui/lab":
  19. specifier: 5.0.0-alpha.149
  20. version: 5.0.0-alpha.149(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/material@5.14.14)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  21. "@mui/material":
  22. specifier: ^5.14.14
  23. version: 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  24. "@mui/x-data-grid":
  25. specifier: ^6.16.3
  26. version: 6.16.3(@mui/material@5.14.14)(@mui/system@5.14.14)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  27. "@tauri-apps/api":
  28. specifier: ^1.3.0
  29. version: 1.3.0
  30. ahooks:
  31. specifier: ^3.7.2
  32. version: 3.7.2(react@18.2.0)
  33. axios:
  34. specifier: ^1.1.3
  35. version: 1.1.3
  36. dayjs:
  37. specifier: 1.11.5
  38. version: 1.11.5
  39. i18next:
  40. specifier: ^22.0.4
  41. version: 22.0.4
  42. lodash-es:
  43. specifier: ^4.17.21
  44. version: 4.17.21
  45. monaco-editor:
  46. specifier: ^0.34.1
  47. version: 0.34.1
  48. react:
  49. specifier: ^18.2.0
  50. version: 18.2.0
  51. react-dom:
  52. specifier: ^18.2.0
  53. version: 18.2.0(react@18.2.0)
  54. react-error-boundary:
  55. specifier: ^3.1.4
  56. version: 3.1.4(react@18.2.0)
  57. react-hook-form:
  58. specifier: ^7.39.5
  59. version: 7.39.5(react@18.2.0)
  60. react-i18next:
  61. specifier: ^12.0.0
  62. version: 12.0.0(i18next@22.0.4)(react-dom@18.2.0)(react@18.2.0)
  63. react-router-dom:
  64. specifier: ^6.4.3
  65. version: 6.4.3(react-dom@18.2.0)(react@18.2.0)
  66. react-transition-group:
  67. specifier: ^4.4.5
  68. version: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  69. react-virtuoso:
  70. specifier: ^3.1.3
  71. version: 3.1.3(react-dom@18.2.0)(react@18.2.0)
  72. recoil:
  73. specifier: ^0.7.6
  74. version: 0.7.6(react-dom@18.2.0)(react@18.2.0)
  75. snarkdown:
  76. specifier: ^2.0.0
  77. version: 2.0.0
  78. swr:
  79. specifier: ^1.3.0
  80. version: 1.3.0(react@18.2.0)
  81. devDependencies:
  82. "@actions/github":
  83. specifier: ^5.0.3
  84. version: 5.0.3
  85. "@tauri-apps/cli":
  86. specifier: ^1.3.1
  87. version: 1.3.1
  88. "@types/fs-extra":
  89. specifier: ^9.0.13
  90. version: 9.0.13
  91. "@types/js-cookie":
  92. specifier: ^3.0.2
  93. version: 3.0.2
  94. "@types/lodash":
  95. specifier: ^4.14.180
  96. version: 4.14.191
  97. "@types/lodash-es":
  98. specifier: ^4.17.7
  99. version: 4.17.7
  100. "@types/react":
  101. specifier: ^18.2.37
  102. version: 18.2.37
  103. "@types/react-dom":
  104. specifier: ^18.0.11
  105. version: 18.0.11
  106. "@types/react-transition-group":
  107. specifier: ^4.4.9
  108. version: 4.4.9
  109. "@vitejs/plugin-react":
  110. specifier: ^4.1.0
  111. version: 4.1.0(vite@4.5.0)
  112. adm-zip:
  113. specifier: ^0.5.9
  114. version: 0.5.9
  115. cross-env:
  116. specifier: ^7.0.3
  117. version: 7.0.3
  118. fs-extra:
  119. specifier: ^10.0.0
  120. version: 10.0.1
  121. https-proxy-agent:
  122. specifier: ^5.0.1
  123. version: 5.0.1
  124. husky:
  125. specifier: ^7.0.0
  126. version: 7.0.4
  127. node-fetch:
  128. specifier: ^3.2.6
  129. version: 3.2.6
  130. prettier:
  131. specifier: ^2.7.1
  132. version: 2.7.1
  133. pretty-quick:
  134. specifier: ^3.1.3
  135. version: 3.1.3(prettier@2.7.1)
  136. sass:
  137. specifier: ^1.54.0
  138. version: 1.54.8
  139. typescript:
  140. specifier: ^4.7.4
  141. version: 4.7.4
  142. vite:
  143. specifier: ^4.5.0
  144. version: 4.5.0(sass@1.54.8)
  145. vite-plugin-monaco-editor:
  146. specifier: ^1.1.0
  147. version: 1.1.0(monaco-editor@0.34.1)
  148. vite-plugin-svgr:
  149. specifier: ^4.1.0
  150. version: 4.1.0(typescript@4.7.4)(vite@4.5.0)
  151. packages:
  152. /@actions/github@5.0.3:
  153. resolution:
  154. {
  155. integrity: sha512-myjA/pdLQfhUGLtRZC/J4L1RXOG4o6aYdiEq+zr5wVVKljzbFld+xv10k1FX6IkIJtNxbAq44BdwSNpQ015P0A==,
  156. }
  157. dependencies:
  158. "@actions/http-client": 2.0.1
  159. "@octokit/core": 3.6.0
  160. "@octokit/plugin-paginate-rest": 2.17.0(@octokit/core@3.6.0)
  161. "@octokit/plugin-rest-endpoint-methods": 5.13.0(@octokit/core@3.6.0)
  162. transitivePeerDependencies:
  163. - encoding
  164. dev: true
  165. /@actions/http-client@2.0.1:
  166. resolution:
  167. {
  168. integrity: sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==,
  169. }
  170. dependencies:
  171. tunnel: 0.0.6
  172. dev: true
  173. /@ampproject/remapping@2.2.1:
  174. resolution:
  175. {
  176. integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==,
  177. }
  178. engines: { node: ">=6.0.0" }
  179. dependencies:
  180. "@jridgewell/gen-mapping": 0.3.3
  181. "@jridgewell/trace-mapping": 0.3.20
  182. dev: true
  183. /@babel/code-frame@7.22.13:
  184. resolution:
  185. {
  186. integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==,
  187. }
  188. engines: { node: ">=6.9.0" }
  189. dependencies:
  190. "@babel/highlight": 7.22.20
  191. chalk: 2.4.2
  192. /@babel/compat-data@7.23.2:
  193. resolution:
  194. {
  195. integrity: sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==,
  196. }
  197. engines: { node: ">=6.9.0" }
  198. dev: true
  199. /@babel/core@7.23.2:
  200. resolution:
  201. {
  202. integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==,
  203. }
  204. engines: { node: ">=6.9.0" }
  205. dependencies:
  206. "@ampproject/remapping": 2.2.1
  207. "@babel/code-frame": 7.22.13
  208. "@babel/generator": 7.23.0
  209. "@babel/helper-compilation-targets": 7.22.15
  210. "@babel/helper-module-transforms": 7.23.0(@babel/core@7.23.2)
  211. "@babel/helpers": 7.23.2
  212. "@babel/parser": 7.23.0
  213. "@babel/template": 7.22.15
  214. "@babel/traverse": 7.23.2
  215. "@babel/types": 7.23.0
  216. convert-source-map: 2.0.0
  217. debug: 4.3.4
  218. gensync: 1.0.0-beta.2
  219. json5: 2.2.3
  220. semver: 6.3.1
  221. transitivePeerDependencies:
  222. - supports-color
  223. dev: true
  224. /@babel/generator@7.23.0:
  225. resolution:
  226. {
  227. integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==,
  228. }
  229. engines: { node: ">=6.9.0" }
  230. dependencies:
  231. "@babel/types": 7.23.0
  232. "@jridgewell/gen-mapping": 0.3.3
  233. "@jridgewell/trace-mapping": 0.3.20
  234. jsesc: 2.5.2
  235. dev: true
  236. /@babel/helper-compilation-targets@7.22.15:
  237. resolution:
  238. {
  239. integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==,
  240. }
  241. engines: { node: ">=6.9.0" }
  242. dependencies:
  243. "@babel/compat-data": 7.23.2
  244. "@babel/helper-validator-option": 7.22.15
  245. browserslist: 4.22.1
  246. lru-cache: 5.1.1
  247. semver: 6.3.1
  248. dev: true
  249. /@babel/helper-environment-visitor@7.22.20:
  250. resolution:
  251. {
  252. integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==,
  253. }
  254. engines: { node: ">=6.9.0" }
  255. dev: true
  256. /@babel/helper-function-name@7.23.0:
  257. resolution:
  258. {
  259. integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==,
  260. }
  261. engines: { node: ">=6.9.0" }
  262. dependencies:
  263. "@babel/template": 7.22.15
  264. "@babel/types": 7.23.0
  265. dev: true
  266. /@babel/helper-hoist-variables@7.22.5:
  267. resolution:
  268. {
  269. integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==,
  270. }
  271. engines: { node: ">=6.9.0" }
  272. dependencies:
  273. "@babel/types": 7.23.0
  274. dev: true
  275. /@babel/helper-module-imports@7.22.15:
  276. resolution:
  277. {
  278. integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==,
  279. }
  280. engines: { node: ">=6.9.0" }
  281. dependencies:
  282. "@babel/types": 7.23.0
  283. /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2):
  284. resolution:
  285. {
  286. integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==,
  287. }
  288. engines: { node: ">=6.9.0" }
  289. peerDependencies:
  290. "@babel/core": ^7.0.0
  291. dependencies:
  292. "@babel/core": 7.23.2
  293. "@babel/helper-environment-visitor": 7.22.20
  294. "@babel/helper-module-imports": 7.22.15
  295. "@babel/helper-simple-access": 7.22.5
  296. "@babel/helper-split-export-declaration": 7.22.6
  297. "@babel/helper-validator-identifier": 7.22.20
  298. dev: true
  299. /@babel/helper-plugin-utils@7.22.5:
  300. resolution:
  301. {
  302. integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==,
  303. }
  304. engines: { node: ">=6.9.0" }
  305. dev: true
  306. /@babel/helper-simple-access@7.22.5:
  307. resolution:
  308. {
  309. integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==,
  310. }
  311. engines: { node: ">=6.9.0" }
  312. dependencies:
  313. "@babel/types": 7.23.0
  314. dev: true
  315. /@babel/helper-split-export-declaration@7.22.6:
  316. resolution:
  317. {
  318. integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==,
  319. }
  320. engines: { node: ">=6.9.0" }
  321. dependencies:
  322. "@babel/types": 7.23.0
  323. dev: true
  324. /@babel/helper-string-parser@7.22.5:
  325. resolution:
  326. {
  327. integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==,
  328. }
  329. engines: { node: ">=6.9.0" }
  330. /@babel/helper-validator-identifier@7.22.20:
  331. resolution:
  332. {
  333. integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==,
  334. }
  335. engines: { node: ">=6.9.0" }
  336. /@babel/helper-validator-option@7.22.15:
  337. resolution:
  338. {
  339. integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==,
  340. }
  341. engines: { node: ">=6.9.0" }
  342. dev: true
  343. /@babel/helpers@7.23.2:
  344. resolution:
  345. {
  346. integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==,
  347. }
  348. engines: { node: ">=6.9.0" }
  349. dependencies:
  350. "@babel/template": 7.22.15
  351. "@babel/traverse": 7.23.2
  352. "@babel/types": 7.23.0
  353. transitivePeerDependencies:
  354. - supports-color
  355. dev: true
  356. /@babel/highlight@7.22.20:
  357. resolution:
  358. {
  359. integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==,
  360. }
  361. engines: { node: ">=6.9.0" }
  362. dependencies:
  363. "@babel/helper-validator-identifier": 7.22.20
  364. chalk: 2.4.2
  365. js-tokens: 4.0.0
  366. /@babel/parser@7.23.0:
  367. resolution:
  368. {
  369. integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==,
  370. }
  371. engines: { node: ">=6.0.0" }
  372. hasBin: true
  373. dependencies:
  374. "@babel/types": 7.23.0
  375. dev: true
  376. /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.2):
  377. resolution:
  378. {
  379. integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==,
  380. }
  381. engines: { node: ">=6.9.0" }
  382. peerDependencies:
  383. "@babel/core": ^7.0.0-0
  384. dependencies:
  385. "@babel/core": 7.23.2
  386. "@babel/helper-plugin-utils": 7.22.5
  387. dev: true
  388. /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.23.2):
  389. resolution:
  390. {
  391. integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==,
  392. }
  393. engines: { node: ">=6.9.0" }
  394. peerDependencies:
  395. "@babel/core": ^7.0.0-0
  396. dependencies:
  397. "@babel/core": 7.23.2
  398. "@babel/helper-plugin-utils": 7.22.5
  399. dev: true
  400. /@babel/runtime@7.23.2:
  401. resolution:
  402. {
  403. integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==,
  404. }
  405. engines: { node: ">=6.9.0" }
  406. dependencies:
  407. regenerator-runtime: 0.14.0
  408. dev: false
  409. /@babel/template@7.22.15:
  410. resolution:
  411. {
  412. integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==,
  413. }
  414. engines: { node: ">=6.9.0" }
  415. dependencies:
  416. "@babel/code-frame": 7.22.13
  417. "@babel/parser": 7.23.0
  418. "@babel/types": 7.23.0
  419. dev: true
  420. /@babel/traverse@7.23.2:
  421. resolution:
  422. {
  423. integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==,
  424. }
  425. engines: { node: ">=6.9.0" }
  426. dependencies:
  427. "@babel/code-frame": 7.22.13
  428. "@babel/generator": 7.23.0
  429. "@babel/helper-environment-visitor": 7.22.20
  430. "@babel/helper-function-name": 7.23.0
  431. "@babel/helper-hoist-variables": 7.22.5
  432. "@babel/helper-split-export-declaration": 7.22.6
  433. "@babel/parser": 7.23.0
  434. "@babel/types": 7.23.0
  435. debug: 4.3.4
  436. globals: 11.12.0
  437. transitivePeerDependencies:
  438. - supports-color
  439. dev: true
  440. /@babel/types@7.23.0:
  441. resolution:
  442. {
  443. integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==,
  444. }
  445. engines: { node: ">=6.9.0" }
  446. dependencies:
  447. "@babel/helper-string-parser": 7.22.5
  448. "@babel/helper-validator-identifier": 7.22.20
  449. to-fast-properties: 2.0.0
  450. /@emotion/babel-plugin@11.11.0:
  451. resolution:
  452. {
  453. integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==,
  454. }
  455. dependencies:
  456. "@babel/helper-module-imports": 7.22.15
  457. "@babel/runtime": 7.23.2
  458. "@emotion/hash": 0.9.1
  459. "@emotion/memoize": 0.8.1
  460. "@emotion/serialize": 1.1.2
  461. babel-plugin-macros: 3.1.0
  462. convert-source-map: 1.8.0
  463. escape-string-regexp: 4.0.0
  464. find-root: 1.1.0
  465. source-map: 0.5.7
  466. stylis: 4.2.0
  467. dev: false
  468. /@emotion/cache@11.11.0:
  469. resolution:
  470. {
  471. integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==,
  472. }
  473. dependencies:
  474. "@emotion/memoize": 0.8.1
  475. "@emotion/sheet": 1.2.2
  476. "@emotion/utils": 1.2.1
  477. "@emotion/weak-memoize": 0.3.1
  478. stylis: 4.2.0
  479. dev: false
  480. /@emotion/hash@0.9.1:
  481. resolution:
  482. {
  483. integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==,
  484. }
  485. dev: false
  486. /@emotion/is-prop-valid@1.2.1:
  487. resolution:
  488. {
  489. integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==,
  490. }
  491. dependencies:
  492. "@emotion/memoize": 0.8.1
  493. dev: false
  494. /@emotion/memoize@0.8.1:
  495. resolution:
  496. {
  497. integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==,
  498. }
  499. dev: false
  500. /@emotion/react@11.11.1(@types/react@18.2.37)(react@18.2.0):
  501. resolution:
  502. {
  503. integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==,
  504. }
  505. peerDependencies:
  506. "@types/react": "*"
  507. react: ">=16.8.0"
  508. peerDependenciesMeta:
  509. "@types/react":
  510. optional: true
  511. dependencies:
  512. "@babel/runtime": 7.23.2
  513. "@emotion/babel-plugin": 11.11.0
  514. "@emotion/cache": 11.11.0
  515. "@emotion/serialize": 1.1.2
  516. "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0)
  517. "@emotion/utils": 1.2.1
  518. "@emotion/weak-memoize": 0.3.1
  519. "@types/react": 18.2.37
  520. hoist-non-react-statics: 3.3.2
  521. react: 18.2.0
  522. dev: false
  523. /@emotion/serialize@1.1.2:
  524. resolution:
  525. {
  526. integrity: sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==,
  527. }
  528. dependencies:
  529. "@emotion/hash": 0.9.1
  530. "@emotion/memoize": 0.8.1
  531. "@emotion/unitless": 0.8.1
  532. "@emotion/utils": 1.2.1
  533. csstype: 3.1.2
  534. dev: false
  535. /@emotion/sheet@1.2.2:
  536. resolution:
  537. {
  538. integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==,
  539. }
  540. dev: false
  541. /@emotion/styled@11.11.0(@emotion/react@11.11.1)(@types/react@18.2.37)(react@18.2.0):
  542. resolution:
  543. {
  544. integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==,
  545. }
  546. peerDependencies:
  547. "@emotion/react": ^11.0.0-rc.0
  548. "@types/react": "*"
  549. react: ">=16.8.0"
  550. peerDependenciesMeta:
  551. "@types/react":
  552. optional: true
  553. dependencies:
  554. "@babel/runtime": 7.23.2
  555. "@emotion/babel-plugin": 11.11.0
  556. "@emotion/is-prop-valid": 1.2.1
  557. "@emotion/react": 11.11.1(@types/react@18.2.37)(react@18.2.0)
  558. "@emotion/serialize": 1.1.2
  559. "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0)
  560. "@emotion/utils": 1.2.1
  561. "@types/react": 18.2.37
  562. react: 18.2.0
  563. dev: false
  564. /@emotion/unitless@0.8.1:
  565. resolution:
  566. {
  567. integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==,
  568. }
  569. dev: false
  570. /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0):
  571. resolution:
  572. {
  573. integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==,
  574. }
  575. peerDependencies:
  576. react: ">=16.8.0"
  577. dependencies:
  578. react: 18.2.0
  579. dev: false
  580. /@emotion/utils@1.2.1:
  581. resolution:
  582. {
  583. integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==,
  584. }
  585. dev: false
  586. /@emotion/weak-memoize@0.3.1:
  587. resolution:
  588. {
  589. integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==,
  590. }
  591. dev: false
  592. /@esbuild/android-arm64@0.18.20:
  593. resolution:
  594. {
  595. integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==,
  596. }
  597. engines: { node: ">=12" }
  598. cpu: [arm64]
  599. os: [android]
  600. requiresBuild: true
  601. dev: true
  602. optional: true
  603. /@esbuild/android-arm@0.18.20:
  604. resolution:
  605. {
  606. integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==,
  607. }
  608. engines: { node: ">=12" }
  609. cpu: [arm]
  610. os: [android]
  611. requiresBuild: true
  612. dev: true
  613. optional: true
  614. /@esbuild/android-x64@0.18.20:
  615. resolution:
  616. {
  617. integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==,
  618. }
  619. engines: { node: ">=12" }
  620. cpu: [x64]
  621. os: [android]
  622. requiresBuild: true
  623. dev: true
  624. optional: true
  625. /@esbuild/darwin-arm64@0.18.20:
  626. resolution:
  627. {
  628. integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==,
  629. }
  630. engines: { node: ">=12" }
  631. cpu: [arm64]
  632. os: [darwin]
  633. requiresBuild: true
  634. dev: true
  635. optional: true
  636. /@esbuild/darwin-x64@0.18.20:
  637. resolution:
  638. {
  639. integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==,
  640. }
  641. engines: { node: ">=12" }
  642. cpu: [x64]
  643. os: [darwin]
  644. requiresBuild: true
  645. dev: true
  646. optional: true
  647. /@esbuild/freebsd-arm64@0.18.20:
  648. resolution:
  649. {
  650. integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==,
  651. }
  652. engines: { node: ">=12" }
  653. cpu: [arm64]
  654. os: [freebsd]
  655. requiresBuild: true
  656. dev: true
  657. optional: true
  658. /@esbuild/freebsd-x64@0.18.20:
  659. resolution:
  660. {
  661. integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==,
  662. }
  663. engines: { node: ">=12" }
  664. cpu: [x64]
  665. os: [freebsd]
  666. requiresBuild: true
  667. dev: true
  668. optional: true
  669. /@esbuild/linux-arm64@0.18.20:
  670. resolution:
  671. {
  672. integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==,
  673. }
  674. engines: { node: ">=12" }
  675. cpu: [arm64]
  676. os: [linux]
  677. requiresBuild: true
  678. dev: true
  679. optional: true
  680. /@esbuild/linux-arm@0.18.20:
  681. resolution:
  682. {
  683. integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==,
  684. }
  685. engines: { node: ">=12" }
  686. cpu: [arm]
  687. os: [linux]
  688. requiresBuild: true
  689. dev: true
  690. optional: true
  691. /@esbuild/linux-ia32@0.18.20:
  692. resolution:
  693. {
  694. integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==,
  695. }
  696. engines: { node: ">=12" }
  697. cpu: [ia32]
  698. os: [linux]
  699. requiresBuild: true
  700. dev: true
  701. optional: true
  702. /@esbuild/linux-loong64@0.18.20:
  703. resolution:
  704. {
  705. integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==,
  706. }
  707. engines: { node: ">=12" }
  708. cpu: [loong64]
  709. os: [linux]
  710. requiresBuild: true
  711. dev: true
  712. optional: true
  713. /@esbuild/linux-mips64el@0.18.20:
  714. resolution:
  715. {
  716. integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==,
  717. }
  718. engines: { node: ">=12" }
  719. cpu: [mips64el]
  720. os: [linux]
  721. requiresBuild: true
  722. dev: true
  723. optional: true
  724. /@esbuild/linux-ppc64@0.18.20:
  725. resolution:
  726. {
  727. integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==,
  728. }
  729. engines: { node: ">=12" }
  730. cpu: [ppc64]
  731. os: [linux]
  732. requiresBuild: true
  733. dev: true
  734. optional: true
  735. /@esbuild/linux-riscv64@0.18.20:
  736. resolution:
  737. {
  738. integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==,
  739. }
  740. engines: { node: ">=12" }
  741. cpu: [riscv64]
  742. os: [linux]
  743. requiresBuild: true
  744. dev: true
  745. optional: true
  746. /@esbuild/linux-s390x@0.18.20:
  747. resolution:
  748. {
  749. integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==,
  750. }
  751. engines: { node: ">=12" }
  752. cpu: [s390x]
  753. os: [linux]
  754. requiresBuild: true
  755. dev: true
  756. optional: true
  757. /@esbuild/linux-x64@0.18.20:
  758. resolution:
  759. {
  760. integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==,
  761. }
  762. engines: { node: ">=12" }
  763. cpu: [x64]
  764. os: [linux]
  765. requiresBuild: true
  766. dev: true
  767. optional: true
  768. /@esbuild/netbsd-x64@0.18.20:
  769. resolution:
  770. {
  771. integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==,
  772. }
  773. engines: { node: ">=12" }
  774. cpu: [x64]
  775. os: [netbsd]
  776. requiresBuild: true
  777. dev: true
  778. optional: true
  779. /@esbuild/openbsd-x64@0.18.20:
  780. resolution:
  781. {
  782. integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==,
  783. }
  784. engines: { node: ">=12" }
  785. cpu: [x64]
  786. os: [openbsd]
  787. requiresBuild: true
  788. dev: true
  789. optional: true
  790. /@esbuild/sunos-x64@0.18.20:
  791. resolution:
  792. {
  793. integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==,
  794. }
  795. engines: { node: ">=12" }
  796. cpu: [x64]
  797. os: [sunos]
  798. requiresBuild: true
  799. dev: true
  800. optional: true
  801. /@esbuild/win32-arm64@0.18.20:
  802. resolution:
  803. {
  804. integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==,
  805. }
  806. engines: { node: ">=12" }
  807. cpu: [arm64]
  808. os: [win32]
  809. requiresBuild: true
  810. dev: true
  811. optional: true
  812. /@esbuild/win32-ia32@0.18.20:
  813. resolution:
  814. {
  815. integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==,
  816. }
  817. engines: { node: ">=12" }
  818. cpu: [ia32]
  819. os: [win32]
  820. requiresBuild: true
  821. dev: true
  822. optional: true
  823. /@esbuild/win32-x64@0.18.20:
  824. resolution:
  825. {
  826. integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==,
  827. }
  828. engines: { node: ">=12" }
  829. cpu: [x64]
  830. os: [win32]
  831. requiresBuild: true
  832. dev: true
  833. optional: true
  834. /@floating-ui/core@1.5.0:
  835. resolution:
  836. {
  837. integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==,
  838. }
  839. dependencies:
  840. "@floating-ui/utils": 0.1.6
  841. dev: false
  842. /@floating-ui/dom@1.5.3:
  843. resolution:
  844. {
  845. integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==,
  846. }
  847. dependencies:
  848. "@floating-ui/core": 1.5.0
  849. "@floating-ui/utils": 0.1.6
  850. dev: false
  851. /@floating-ui/react-dom@2.0.2(react-dom@18.2.0)(react@18.2.0):
  852. resolution:
  853. {
  854. integrity: sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ==,
  855. }
  856. peerDependencies:
  857. react: ">=16.8.0"
  858. react-dom: ">=16.8.0"
  859. dependencies:
  860. "@floating-ui/dom": 1.5.3
  861. react: 18.2.0
  862. react-dom: 18.2.0(react@18.2.0)
  863. dev: false
  864. /@floating-ui/utils@0.1.6:
  865. resolution:
  866. {
  867. integrity: sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==,
  868. }
  869. dev: false
  870. /@jridgewell/gen-mapping@0.3.3:
  871. resolution:
  872. {
  873. integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==,
  874. }
  875. engines: { node: ">=6.0.0" }
  876. dependencies:
  877. "@jridgewell/set-array": 1.1.2
  878. "@jridgewell/sourcemap-codec": 1.4.15
  879. "@jridgewell/trace-mapping": 0.3.20
  880. dev: true
  881. /@jridgewell/resolve-uri@3.1.1:
  882. resolution:
  883. {
  884. integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==,
  885. }
  886. engines: { node: ">=6.0.0" }
  887. dev: true
  888. /@jridgewell/set-array@1.1.2:
  889. resolution:
  890. {
  891. integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==,
  892. }
  893. engines: { node: ">=6.0.0" }
  894. dev: true
  895. /@jridgewell/sourcemap-codec@1.4.15:
  896. resolution:
  897. {
  898. integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==,
  899. }
  900. dev: true
  901. /@jridgewell/trace-mapping@0.3.20:
  902. resolution:
  903. {
  904. integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==,
  905. }
  906. dependencies:
  907. "@jridgewell/resolve-uri": 3.1.1
  908. "@jridgewell/sourcemap-codec": 1.4.15
  909. dev: true
  910. /@juggle/resize-observer@3.4.0:
  911. resolution:
  912. {
  913. integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==,
  914. }
  915. dev: false
  916. /@mui/base@5.0.0-beta.20(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
  917. resolution:
  918. {
  919. integrity: sha512-CS2pUuqxST7ch9VNDCklRYDbJ3rru20Tx7na92QvVVKfu3RL4z/QLuVIc8jYGsdCnauMaeUSlFNLAJNb0yXe6w==,
  920. }
  921. engines: { node: ">=12.0.0" }
  922. peerDependencies:
  923. "@types/react": ^17.0.0 || ^18.0.0
  924. react: ^17.0.0 || ^18.0.0
  925. react-dom: ^17.0.0 || ^18.0.0
  926. peerDependenciesMeta:
  927. "@types/react":
  928. optional: true
  929. dependencies:
  930. "@babel/runtime": 7.23.2
  931. "@floating-ui/react-dom": 2.0.2(react-dom@18.2.0)(react@18.2.0)
  932. "@mui/types": 7.2.6(@types/react@18.2.37)
  933. "@mui/utils": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  934. "@popperjs/core": 2.11.8
  935. "@types/react": 18.2.37
  936. clsx: 2.0.0
  937. prop-types: 15.8.1
  938. react: 18.2.0
  939. react-dom: 18.2.0(react@18.2.0)
  940. dev: false
  941. /@mui/core-downloads-tracker@5.14.14:
  942. resolution:
  943. {
  944. integrity: sha512-Rw/xKiTOUgXD8hdKqj60aC6QcGprMipG7ne2giK6Mz7b4PlhL/xog9xLeclY3BxsRLkZQ05egFnIEY1CSibTbw==,
  945. }
  946. dev: false
  947. /@mui/icons-material@5.14.14(@mui/material@5.14.14)(@types/react@18.2.37)(react@18.2.0):
  948. resolution:
  949. {
  950. integrity: sha512-vwuaMsKvI7AWTeYqR8wYbpXijuU8PzMAJWRAq2DDIuOZPxjKyHlr8WQ25+azZYkIXtJ7AqnVb1ZmHdEyB4/kug==,
  951. }
  952. engines: { node: ">=12.0.0" }
  953. peerDependencies:
  954. "@mui/material": ^5.0.0
  955. "@types/react": ^17.0.0 || ^18.0.0
  956. react: ^17.0.0 || ^18.0.0
  957. peerDependenciesMeta:
  958. "@types/react":
  959. optional: true
  960. dependencies:
  961. "@babel/runtime": 7.23.2
  962. "@mui/material": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  963. "@types/react": 18.2.37
  964. react: 18.2.0
  965. dev: false
  966. /@mui/lab@5.0.0-alpha.149(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/material@5.14.14)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
  967. resolution:
  968. {
  969. integrity: sha512-azOkKcyVX4KBZAqSp7eRD4OfKrUrvQXo7x2BjFJil+UeAJiMpB6I5lALo2PDZz3vjtJnHqlURnZtxZOHs1zfEA==,
  970. }
  971. engines: { node: ">=12.0.0" }
  972. peerDependencies:
  973. "@emotion/react": ^11.5.0
  974. "@emotion/styled": ^11.3.0
  975. "@mui/material": ^5.0.0
  976. "@types/react": ^17.0.0 || ^18.0.0
  977. react: ^17.0.0 || ^18.0.0
  978. react-dom: ^17.0.0 || ^18.0.0
  979. peerDependenciesMeta:
  980. "@emotion/react":
  981. optional: true
  982. "@emotion/styled":
  983. optional: true
  984. "@types/react":
  985. optional: true
  986. dependencies:
  987. "@babel/runtime": 7.23.2
  988. "@emotion/react": 11.11.1(@types/react@18.2.37)(react@18.2.0)
  989. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.37)(react@18.2.0)
  990. "@mui/base": 5.0.0-beta.20(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  991. "@mui/material": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  992. "@mui/system": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react@18.2.0)
  993. "@mui/types": 7.2.6(@types/react@18.2.37)
  994. "@mui/utils": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  995. "@mui/x-tree-view": 6.0.0-alpha.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.20)(@mui/material@5.14.14)(@mui/system@5.14.14)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  996. "@types/react": 18.2.37
  997. clsx: 2.0.0
  998. prop-types: 15.8.1
  999. react: 18.2.0
  1000. react-dom: 18.2.0(react@18.2.0)
  1001. dev: false
  1002. /@mui/material@5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
  1003. resolution:
  1004. {
  1005. integrity: sha512-cAmCwAHFQXxb44kWbVFkhKATN8tACgMsFwrXo8ro6WzYW73U/qsR5AcCiJIhCyYYg+gcftfkmNcpRaV3JjhHCg==,
  1006. }
  1007. engines: { node: ">=12.0.0" }
  1008. peerDependencies:
  1009. "@emotion/react": ^11.5.0
  1010. "@emotion/styled": ^11.3.0
  1011. "@types/react": ^17.0.0 || ^18.0.0
  1012. react: ^17.0.0 || ^18.0.0
  1013. react-dom: ^17.0.0 || ^18.0.0
  1014. peerDependenciesMeta:
  1015. "@emotion/react":
  1016. optional: true
  1017. "@emotion/styled":
  1018. optional: true
  1019. "@types/react":
  1020. optional: true
  1021. dependencies:
  1022. "@babel/runtime": 7.23.2
  1023. "@emotion/react": 11.11.1(@types/react@18.2.37)(react@18.2.0)
  1024. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.37)(react@18.2.0)
  1025. "@mui/base": 5.0.0-beta.20(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  1026. "@mui/core-downloads-tracker": 5.14.14
  1027. "@mui/system": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react@18.2.0)
  1028. "@mui/types": 7.2.6(@types/react@18.2.37)
  1029. "@mui/utils": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  1030. "@types/react": 18.2.37
  1031. "@types/react-transition-group": 4.4.9
  1032. clsx: 2.0.0
  1033. csstype: 3.1.2
  1034. prop-types: 15.8.1
  1035. react: 18.2.0
  1036. react-dom: 18.2.0(react@18.2.0)
  1037. react-is: 18.2.0
  1038. react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  1039. dev: false
  1040. /@mui/private-theming@5.14.14(@types/react@18.2.37)(react@18.2.0):
  1041. resolution:
  1042. {
  1043. integrity: sha512-n77au3CQj9uu16hak2Y+rvbGSBaJKxziG/gEbOLVGrAuqZ+ycVSkorCfN6Y/4XgYOpG/xvmuiY3JwhAEOzY3iA==,
  1044. }
  1045. engines: { node: ">=12.0.0" }
  1046. peerDependencies:
  1047. "@types/react": ^17.0.0 || ^18.0.0
  1048. react: ^17.0.0 || ^18.0.0
  1049. peerDependenciesMeta:
  1050. "@types/react":
  1051. optional: true
  1052. dependencies:
  1053. "@babel/runtime": 7.23.2
  1054. "@mui/utils": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  1055. "@types/react": 18.2.37
  1056. prop-types: 15.8.1
  1057. react: 18.2.0
  1058. dev: false
  1059. /@mui/styled-engine@5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0):
  1060. resolution:
  1061. {
  1062. integrity: sha512-sF3DS2PVG+cFWvkVHQQaGFpL1h6gSwOW3L91pdxPLQDHDZ5mZ/X0SlXU5XA+WjypoysG4urdAQC7CH/BRvUiqg==,
  1063. }
  1064. engines: { node: ">=12.0.0" }
  1065. peerDependencies:
  1066. "@emotion/react": ^11.4.1
  1067. "@emotion/styled": ^11.3.0
  1068. react: ^17.0.0 || ^18.0.0
  1069. peerDependenciesMeta:
  1070. "@emotion/react":
  1071. optional: true
  1072. "@emotion/styled":
  1073. optional: true
  1074. dependencies:
  1075. "@babel/runtime": 7.23.2
  1076. "@emotion/cache": 11.11.0
  1077. "@emotion/react": 11.11.1(@types/react@18.2.37)(react@18.2.0)
  1078. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.37)(react@18.2.0)
  1079. csstype: 3.1.2
  1080. prop-types: 15.8.1
  1081. react: 18.2.0
  1082. dev: false
  1083. /@mui/system@5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react@18.2.0):
  1084. resolution:
  1085. {
  1086. integrity: sha512-y4InFmCgGGWXnz+iK4jRTWVikY0HgYnABjz4wgiUgEa2W1H8M4ow+27BegExUWPkj4TWthQ2qG9FOGSMtI+PKA==,
  1087. }
  1088. engines: { node: ">=12.0.0" }
  1089. peerDependencies:
  1090. "@emotion/react": ^11.5.0
  1091. "@emotion/styled": ^11.3.0
  1092. "@types/react": ^17.0.0 || ^18.0.0
  1093. react: ^17.0.0 || ^18.0.0
  1094. peerDependenciesMeta:
  1095. "@emotion/react":
  1096. optional: true
  1097. "@emotion/styled":
  1098. optional: true
  1099. "@types/react":
  1100. optional: true
  1101. dependencies:
  1102. "@babel/runtime": 7.23.2
  1103. "@emotion/react": 11.11.1(@types/react@18.2.37)(react@18.2.0)
  1104. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.37)(react@18.2.0)
  1105. "@mui/private-theming": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  1106. "@mui/styled-engine": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
  1107. "@mui/types": 7.2.6(@types/react@18.2.37)
  1108. "@mui/utils": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  1109. "@types/react": 18.2.37
  1110. clsx: 2.0.0
  1111. csstype: 3.1.2
  1112. prop-types: 15.8.1
  1113. react: 18.2.0
  1114. dev: false
  1115. /@mui/types@7.2.6(@types/react@18.2.37):
  1116. resolution:
  1117. {
  1118. integrity: sha512-7sjLQrUmBwufm/M7jw/quNiPK/oor2+pGUQP2CULRcFCArYTq78oJ3D5esTaL0UMkXKJvDqXn6Ike69yAOBQng==,
  1119. }
  1120. peerDependencies:
  1121. "@types/react": ^17.0.0 || ^18.0.0
  1122. peerDependenciesMeta:
  1123. "@types/react":
  1124. optional: true
  1125. dependencies:
  1126. "@types/react": 18.2.37
  1127. dev: false
  1128. /@mui/utils@5.14.14(@types/react@18.2.37)(react@18.2.0):
  1129. resolution:
  1130. {
  1131. integrity: sha512-3AKp8uksje5sRfVrtgG9Q/2TBsHWVBUtA0NaXliZqGcXo8J+A+Agp0qUW2rJ+ivgPWTCCubz9FZVT2IQZ3bGsw==,
  1132. }
  1133. engines: { node: ">=12.0.0" }
  1134. peerDependencies:
  1135. "@types/react": ^17.0.0 || ^18.0.0
  1136. react: ^17.0.0 || ^18.0.0
  1137. peerDependenciesMeta:
  1138. "@types/react":
  1139. optional: true
  1140. dependencies:
  1141. "@babel/runtime": 7.23.2
  1142. "@types/prop-types": 15.7.9
  1143. "@types/react": 18.2.37
  1144. prop-types: 15.8.1
  1145. react: 18.2.0
  1146. react-is: 18.2.0
  1147. dev: false
  1148. /@mui/x-data-grid@6.16.3(@mui/material@5.14.14)(@mui/system@5.14.14)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
  1149. resolution:
  1150. {
  1151. integrity: sha512-msohYxn11JHzeQOywaH5wGSCb/fESootqHLKG6LuET7xOxjHS8GlN/GuW/4kKcbQRunSVh/ADwqpqq+SmWrSeQ==,
  1152. }
  1153. engines: { node: ">=14.0.0" }
  1154. peerDependencies:
  1155. "@mui/material": ^5.4.1
  1156. "@mui/system": ^5.4.1
  1157. react: ^17.0.0 || ^18.0.0
  1158. react-dom: ^17.0.0 || ^18.0.0
  1159. dependencies:
  1160. "@babel/runtime": 7.23.2
  1161. "@mui/material": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  1162. "@mui/system": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react@18.2.0)
  1163. "@mui/utils": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  1164. clsx: 2.0.0
  1165. prop-types: 15.8.1
  1166. react: 18.2.0
  1167. react-dom: 18.2.0(react@18.2.0)
  1168. reselect: 4.1.8
  1169. transitivePeerDependencies:
  1170. - "@types/react"
  1171. dev: false
  1172. /@mui/x-tree-view@6.0.0-alpha.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.20)(@mui/material@5.14.14)(@mui/system@5.14.14)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
  1173. resolution:
  1174. {
  1175. integrity: sha512-JUG3HmBrmGEALbCFg1b+i7h726e1dWYZs4db3syO1j+Q++E3nbvE4Lehp5yGTFm+8esH0Tny50tuJaa4WX6VSA==,
  1176. }
  1177. engines: { node: ">=14.0.0" }
  1178. peerDependencies:
  1179. "@emotion/react": ^11.9.0
  1180. "@emotion/styled": ^11.8.1
  1181. "@mui/base": ^5.0.0-alpha.87
  1182. "@mui/material": ^5.8.6
  1183. "@mui/system": ^5.8.0
  1184. react: ^17.0.0 || ^18.0.0
  1185. react-dom: ^17.0.0 || ^18.0.0
  1186. dependencies:
  1187. "@babel/runtime": 7.23.2
  1188. "@emotion/react": 11.11.1(@types/react@18.2.37)(react@18.2.0)
  1189. "@emotion/styled": 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.37)(react@18.2.0)
  1190. "@mui/base": 5.0.0-beta.20(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  1191. "@mui/material": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
  1192. "@mui/system": 5.14.14(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.37)(react@18.2.0)
  1193. "@mui/utils": 5.14.14(@types/react@18.2.37)(react@18.2.0)
  1194. "@types/react-transition-group": 4.4.9
  1195. clsx: 2.0.0
  1196. prop-types: 15.8.1
  1197. react: 18.2.0
  1198. react-dom: 18.2.0(react@18.2.0)
  1199. react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  1200. transitivePeerDependencies:
  1201. - "@types/react"
  1202. dev: false
  1203. /@octokit/auth-token@2.5.0:
  1204. resolution:
  1205. {
  1206. integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==,
  1207. }
  1208. dependencies:
  1209. "@octokit/types": 6.34.0
  1210. dev: true
  1211. /@octokit/core@3.6.0:
  1212. resolution:
  1213. {
  1214. integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==,
  1215. }
  1216. dependencies:
  1217. "@octokit/auth-token": 2.5.0
  1218. "@octokit/graphql": 4.8.0
  1219. "@octokit/request": 5.6.3
  1220. "@octokit/request-error": 2.1.0
  1221. "@octokit/types": 6.34.0
  1222. before-after-hook: 2.2.2
  1223. universal-user-agent: 6.0.0
  1224. transitivePeerDependencies:
  1225. - encoding
  1226. dev: true
  1227. /@octokit/endpoint@6.0.12:
  1228. resolution:
  1229. {
  1230. integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==,
  1231. }
  1232. dependencies:
  1233. "@octokit/types": 6.34.0
  1234. is-plain-object: 5.0.0
  1235. universal-user-agent: 6.0.0
  1236. dev: true
  1237. /@octokit/graphql@4.8.0:
  1238. resolution:
  1239. {
  1240. integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==,
  1241. }
  1242. dependencies:
  1243. "@octokit/request": 5.6.3
  1244. "@octokit/types": 6.34.0
  1245. universal-user-agent: 6.0.0
  1246. transitivePeerDependencies:
  1247. - encoding
  1248. dev: true
  1249. /@octokit/openapi-types@11.2.0:
  1250. resolution:
  1251. {
  1252. integrity: sha512-PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==,
  1253. }
  1254. dev: true
  1255. /@octokit/plugin-paginate-rest@2.17.0(@octokit/core@3.6.0):
  1256. resolution:
  1257. {
  1258. integrity: sha512-tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw==,
  1259. }
  1260. peerDependencies:
  1261. "@octokit/core": ">=2"
  1262. dependencies:
  1263. "@octokit/core": 3.6.0
  1264. "@octokit/types": 6.34.0
  1265. dev: true
  1266. /@octokit/plugin-rest-endpoint-methods@5.13.0(@octokit/core@3.6.0):
  1267. resolution:
  1268. {
  1269. integrity: sha512-uJjMTkN1KaOIgNtUPMtIXDOjx6dGYysdIFhgA52x4xSadQCz3b/zJexvITDVpANnfKPW/+E0xkOvLntqMYpviA==,
  1270. }
  1271. peerDependencies:
  1272. "@octokit/core": ">=3"
  1273. dependencies:
  1274. "@octokit/core": 3.6.0
  1275. "@octokit/types": 6.34.0
  1276. deprecation: 2.3.1
  1277. dev: true
  1278. /@octokit/request-error@2.1.0:
  1279. resolution:
  1280. {
  1281. integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==,
  1282. }
  1283. dependencies:
  1284. "@octokit/types": 6.34.0
  1285. deprecation: 2.3.1
  1286. once: 1.4.0
  1287. dev: true
  1288. /@octokit/request@5.6.3:
  1289. resolution:
  1290. {
  1291. integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==,
  1292. }
  1293. dependencies:
  1294. "@octokit/endpoint": 6.0.12
  1295. "@octokit/request-error": 2.1.0
  1296. "@octokit/types": 6.34.0
  1297. is-plain-object: 5.0.0
  1298. node-fetch: 2.6.7
  1299. universal-user-agent: 6.0.0
  1300. transitivePeerDependencies:
  1301. - encoding
  1302. dev: true
  1303. /@octokit/types@6.34.0:
  1304. resolution:
  1305. {
  1306. integrity: sha512-s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw==,
  1307. }
  1308. dependencies:
  1309. "@octokit/openapi-types": 11.2.0
  1310. dev: true
  1311. /@popperjs/core@2.11.8:
  1312. resolution:
  1313. {
  1314. integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==,
  1315. }
  1316. dev: false
  1317. /@remix-run/router@1.0.3:
  1318. resolution:
  1319. {
  1320. integrity: sha512-ceuyTSs7PZ/tQqi19YZNBc5X7kj1f8p+4DIyrcIYFY9h+hd1OKm4RqtiWldR9eGEvIiJfsqwM4BsuCtRIuEw6Q==,
  1321. }
  1322. engines: { node: ">=14" }
  1323. dev: false
  1324. /@rollup/pluginutils@5.0.5:
  1325. resolution:
  1326. {
  1327. integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==,
  1328. }
  1329. engines: { node: ">=14.0.0" }
  1330. peerDependencies:
  1331. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  1332. peerDependenciesMeta:
  1333. rollup:
  1334. optional: true
  1335. dependencies:
  1336. "@types/estree": 1.0.3
  1337. estree-walker: 2.0.2
  1338. picomatch: 2.3.1
  1339. dev: true
  1340. /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.23.2):
  1341. resolution:
  1342. {
  1343. integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==,
  1344. }
  1345. engines: { node: ">=14" }
  1346. peerDependencies:
  1347. "@babel/core": ^7.0.0-0
  1348. dependencies:
  1349. "@babel/core": 7.23.2
  1350. dev: true
  1351. /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.2):
  1352. resolution:
  1353. {
  1354. integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==,
  1355. }
  1356. engines: { node: ">=14" }
  1357. peerDependencies:
  1358. "@babel/core": ^7.0.0-0
  1359. dependencies:
  1360. "@babel/core": 7.23.2
  1361. dev: true
  1362. /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.2):
  1363. resolution:
  1364. {
  1365. integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==,
  1366. }
  1367. engines: { node: ">=14" }
  1368. peerDependencies:
  1369. "@babel/core": ^7.0.0-0
  1370. dependencies:
  1371. "@babel/core": 7.23.2
  1372. dev: true
  1373. /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.23.2):
  1374. resolution:
  1375. {
  1376. integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==,
  1377. }
  1378. engines: { node: ">=14" }
  1379. peerDependencies:
  1380. "@babel/core": ^7.0.0-0
  1381. dependencies:
  1382. "@babel/core": 7.23.2
  1383. dev: true
  1384. /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.23.2):
  1385. resolution:
  1386. {
  1387. integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==,
  1388. }
  1389. engines: { node: ">=14" }
  1390. peerDependencies:
  1391. "@babel/core": ^7.0.0-0
  1392. dependencies:
  1393. "@babel/core": 7.23.2
  1394. dev: true
  1395. /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.23.2):
  1396. resolution:
  1397. {
  1398. integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==,
  1399. }
  1400. engines: { node: ">=14" }
  1401. peerDependencies:
  1402. "@babel/core": ^7.0.0-0
  1403. dependencies:
  1404. "@babel/core": 7.23.2
  1405. dev: true
  1406. /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.23.2):
  1407. resolution:
  1408. {
  1409. integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==,
  1410. }
  1411. engines: { node: ">=14" }
  1412. peerDependencies:
  1413. "@babel/core": ^7.0.0-0
  1414. dependencies:
  1415. "@babel/core": 7.23.2
  1416. dev: true
  1417. /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.23.2):
  1418. resolution:
  1419. {
  1420. integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==,
  1421. }
  1422. engines: { node: ">=12" }
  1423. peerDependencies:
  1424. "@babel/core": ^7.0.0-0
  1425. dependencies:
  1426. "@babel/core": 7.23.2
  1427. dev: true
  1428. /@svgr/babel-preset@8.1.0(@babel/core@7.23.2):
  1429. resolution:
  1430. {
  1431. integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==,
  1432. }
  1433. engines: { node: ">=14" }
  1434. peerDependencies:
  1435. "@babel/core": ^7.0.0-0
  1436. dependencies:
  1437. "@babel/core": 7.23.2
  1438. "@svgr/babel-plugin-add-jsx-attribute": 8.0.0(@babel/core@7.23.2)
  1439. "@svgr/babel-plugin-remove-jsx-attribute": 8.0.0(@babel/core@7.23.2)
  1440. "@svgr/babel-plugin-remove-jsx-empty-expression": 8.0.0(@babel/core@7.23.2)
  1441. "@svgr/babel-plugin-replace-jsx-attribute-value": 8.0.0(@babel/core@7.23.2)
  1442. "@svgr/babel-plugin-svg-dynamic-title": 8.0.0(@babel/core@7.23.2)
  1443. "@svgr/babel-plugin-svg-em-dimensions": 8.0.0(@babel/core@7.23.2)
  1444. "@svgr/babel-plugin-transform-react-native-svg": 8.1.0(@babel/core@7.23.2)
  1445. "@svgr/babel-plugin-transform-svg-component": 8.0.0(@babel/core@7.23.2)
  1446. dev: true
  1447. /@svgr/core@8.1.0(typescript@4.7.4):
  1448. resolution:
  1449. {
  1450. integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==,
  1451. }
  1452. engines: { node: ">=14" }
  1453. dependencies:
  1454. "@babel/core": 7.23.2
  1455. "@svgr/babel-preset": 8.1.0(@babel/core@7.23.2)
  1456. camelcase: 6.3.0
  1457. cosmiconfig: 8.3.6(typescript@4.7.4)
  1458. snake-case: 3.0.4
  1459. transitivePeerDependencies:
  1460. - supports-color
  1461. - typescript
  1462. dev: true
  1463. /@svgr/hast-util-to-babel-ast@8.0.0:
  1464. resolution:
  1465. {
  1466. integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==,
  1467. }
  1468. engines: { node: ">=14" }
  1469. dependencies:
  1470. "@babel/types": 7.23.0
  1471. entities: 4.5.0
  1472. dev: true
  1473. /@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0):
  1474. resolution:
  1475. {
  1476. integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==,
  1477. }
  1478. engines: { node: ">=14" }
  1479. peerDependencies:
  1480. "@svgr/core": "*"
  1481. dependencies:
  1482. "@babel/core": 7.23.2
  1483. "@svgr/babel-preset": 8.1.0(@babel/core@7.23.2)
  1484. "@svgr/core": 8.1.0(typescript@4.7.4)
  1485. "@svgr/hast-util-to-babel-ast": 8.0.0
  1486. svg-parser: 2.0.4
  1487. transitivePeerDependencies:
  1488. - supports-color
  1489. dev: true
  1490. /@tauri-apps/api@1.3.0:
  1491. resolution:
  1492. {
  1493. integrity: sha512-AH+3FonkKZNtfRtGrObY38PrzEj4d+1emCbwNGu0V2ENbXjlLHMZQlUh+Bhu/CRmjaIwZMGJ3yFvWaZZgTHoog==,
  1494. }
  1495. engines: { node: ">= 14.6.0", npm: ">= 6.6.0", yarn: ">= 1.19.1" }
  1496. dev: false
  1497. /@tauri-apps/cli-darwin-arm64@1.3.1:
  1498. resolution:
  1499. {
  1500. integrity: sha512-QlepYVPgOgspcwA/u4kGG4ZUijlXfdRtno00zEy+LxinN/IRXtk+6ErVtsmoLi1ZC9WbuMwzAcsRvqsD+RtNAg==,
  1501. }
  1502. engines: { node: ">= 10" }
  1503. cpu: [arm64]
  1504. os: [darwin]
  1505. requiresBuild: true
  1506. dev: true
  1507. optional: true
  1508. /@tauri-apps/cli-darwin-x64@1.3.1:
  1509. resolution:
  1510. {
  1511. integrity: sha512-fKcAUPVFO3jfDKXCSDGY0MhZFF/wDtx3rgFnogWYu4knk38o9RaqRkvMvqJhLYPuWaEM5h6/z1dRrr9KKCbrVg==,
  1512. }
  1513. engines: { node: ">= 10" }
  1514. cpu: [x64]
  1515. os: [darwin]
  1516. requiresBuild: true
  1517. dev: true
  1518. optional: true
  1519. /@tauri-apps/cli-linux-arm-gnueabihf@1.3.1:
  1520. resolution:
  1521. {
  1522. integrity: sha512-+4H0dv8ltJHYu/Ma1h9ixUPUWka9EjaYa8nJfiMsdCI4LJLNE6cPveE7RmhZ59v9GW1XB108/k083JUC/OtGvA==,
  1523. }
  1524. engines: { node: ">= 10" }
  1525. cpu: [arm]
  1526. os: [linux]
  1527. requiresBuild: true
  1528. dev: true
  1529. optional: true
  1530. /@tauri-apps/cli-linux-arm64-gnu@1.3.1:
  1531. resolution:
  1532. {
  1533. integrity: sha512-Pj3odVO1JAxLjYmoXKxcrpj/tPxcA8UP8N06finhNtBtBaxAjrjjxKjO4968KB0BUH7AASIss9EL4Tr0FGnDuw==,
  1534. }
  1535. engines: { node: ">= 10" }
  1536. cpu: [arm64]
  1537. os: [linux]
  1538. requiresBuild: true
  1539. dev: true
  1540. optional: true
  1541. /@tauri-apps/cli-linux-arm64-musl@1.3.1:
  1542. resolution:
  1543. {
  1544. integrity: sha512-tA0JdDLPFaj42UDIVcF2t8V0tSha40rppcmAR/MfQpTCxih6399iMjwihz9kZE1n4b5O4KTq9GliYo50a8zYlQ==,
  1545. }
  1546. engines: { node: ">= 10" }
  1547. cpu: [arm64]
  1548. os: [linux]
  1549. requiresBuild: true
  1550. dev: true
  1551. optional: true
  1552. /@tauri-apps/cli-linux-x64-gnu@1.3.1:
  1553. resolution:
  1554. {
  1555. integrity: sha512-FDU+Mnvk6NLkqQimcNojdKpMN4Y3W51+SQl+NqG9AFCWprCcSg62yRb84751ujZuf2MGT8HQOfmd0i77F4Q3tQ==,
  1556. }
  1557. engines: { node: ">= 10" }
  1558. cpu: [x64]
  1559. os: [linux]
  1560. requiresBuild: true
  1561. dev: true
  1562. optional: true
  1563. /@tauri-apps/cli-linux-x64-musl@1.3.1:
  1564. resolution:
  1565. {
  1566. integrity: sha512-MpO3akXFmK8lZYEbyQRDfhdxz1JkTBhonVuz5rRqxwA7gnGWHa1aF1+/2zsy7ahjB2tQ9x8DDFDMdVE20o9HrA==,
  1567. }
  1568. engines: { node: ">= 10" }
  1569. cpu: [x64]
  1570. os: [linux]
  1571. requiresBuild: true
  1572. dev: true
  1573. optional: true
  1574. /@tauri-apps/cli-win32-ia32-msvc@1.3.1:
  1575. resolution:
  1576. {
  1577. integrity: sha512-9Boeo3K5sOrSBAZBuYyGkpV2RfnGQz3ZhGJt4hE6P+HxRd62lS6+qDKAiw1GmkZ0l1drc2INWrNeT50gwOKwIQ==,
  1578. }
  1579. engines: { node: ">= 10" }
  1580. cpu: [ia32]
  1581. os: [win32]
  1582. requiresBuild: true
  1583. dev: true
  1584. optional: true
  1585. /@tauri-apps/cli-win32-x64-msvc@1.3.1:
  1586. resolution:
  1587. {
  1588. integrity: sha512-wMrTo91hUu5CdpbElrOmcZEoJR4aooTG+fbtcc87SMyPGQy1Ux62b+ZdwLvL1sVTxnIm//7v6QLRIWGiUjCPwA==,
  1589. }
  1590. engines: { node: ">= 10" }
  1591. cpu: [x64]
  1592. os: [win32]
  1593. requiresBuild: true
  1594. dev: true
  1595. optional: true
  1596. /@tauri-apps/cli@1.3.1:
  1597. resolution:
  1598. {
  1599. integrity: sha512-o4I0JujdITsVRm3/0spfJX7FcKYrYV1DXJqzlWIn6IY25/RltjU6qbC1TPgVww3RsRX63jyVUTcWpj5wwFl+EQ==,
  1600. }
  1601. engines: { node: ">= 10" }
  1602. hasBin: true
  1603. optionalDependencies:
  1604. "@tauri-apps/cli-darwin-arm64": 1.3.1
  1605. "@tauri-apps/cli-darwin-x64": 1.3.1
  1606. "@tauri-apps/cli-linux-arm-gnueabihf": 1.3.1
  1607. "@tauri-apps/cli-linux-arm64-gnu": 1.3.1
  1608. "@tauri-apps/cli-linux-arm64-musl": 1.3.1
  1609. "@tauri-apps/cli-linux-x64-gnu": 1.3.1
  1610. "@tauri-apps/cli-linux-x64-musl": 1.3.1
  1611. "@tauri-apps/cli-win32-ia32-msvc": 1.3.1
  1612. "@tauri-apps/cli-win32-x64-msvc": 1.3.1
  1613. dev: true
  1614. /@types/babel__core@7.20.3:
  1615. resolution:
  1616. {
  1617. integrity: sha512-54fjTSeSHwfan8AyHWrKbfBWiEUrNTZsUwPTDSNaaP1QDQIZbeNUg3a59E9D+375MzUw/x1vx2/0F5LBz+AeYA==,
  1618. }
  1619. dependencies:
  1620. "@babel/parser": 7.23.0
  1621. "@babel/types": 7.23.0
  1622. "@types/babel__generator": 7.6.6
  1623. "@types/babel__template": 7.4.3
  1624. "@types/babel__traverse": 7.20.3
  1625. dev: true
  1626. /@types/babel__generator@7.6.6:
  1627. resolution:
  1628. {
  1629. integrity: sha512-66BXMKb/sUWbMdBNdMvajU7i/44RkrA3z/Yt1c7R5xejt8qh84iU54yUWCtm0QwGJlDcf/gg4zd/x4mpLAlb/w==,
  1630. }
  1631. dependencies:
  1632. "@babel/types": 7.23.0
  1633. dev: true
  1634. /@types/babel__template@7.4.3:
  1635. resolution:
  1636. {
  1637. integrity: sha512-ciwyCLeuRfxboZ4isgdNZi/tkt06m8Tw6uGbBSBgWrnnZGNXiEyM27xc/PjXGQLqlZ6ylbgHMnm7ccF9tCkOeQ==,
  1638. }
  1639. dependencies:
  1640. "@babel/parser": 7.23.0
  1641. "@babel/types": 7.23.0
  1642. dev: true
  1643. /@types/babel__traverse@7.20.3:
  1644. resolution:
  1645. {
  1646. integrity: sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==,
  1647. }
  1648. dependencies:
  1649. "@babel/types": 7.23.0
  1650. dev: true
  1651. /@types/estree@1.0.3:
  1652. resolution:
  1653. {
  1654. integrity: sha512-CS2rOaoQ/eAgAfcTfq6amKG7bsN+EMcgGY4FAFQdvSj2y1ixvOZTUA9mOtCai7E1SYu283XNw7urKK30nP3wkQ==,
  1655. }
  1656. dev: true
  1657. /@types/fs-extra@9.0.13:
  1658. resolution:
  1659. {
  1660. integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==,
  1661. }
  1662. dependencies:
  1663. "@types/node": 17.0.23
  1664. dev: true
  1665. /@types/js-cookie@2.2.7:
  1666. resolution:
  1667. {
  1668. integrity: sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==,
  1669. }
  1670. dev: false
  1671. /@types/js-cookie@3.0.2:
  1672. resolution:
  1673. {
  1674. integrity: sha512-6+0ekgfusHftJNYpihfkMu8BWdeHs9EOJuGcSofErjstGPfPGEu9yTu4t460lTzzAMl2cM5zngQJqPMHbbnvYA==,
  1675. }
  1676. dev: true
  1677. /@types/lodash-es@4.17.7:
  1678. resolution:
  1679. {
  1680. integrity: sha512-z0ptr6UI10VlU6l5MYhGwS4mC8DZyYer2mCoyysZtSF7p26zOX8UpbrV0YpNYLGS8K4PUFIyEr62IMFFjveSiQ==,
  1681. }
  1682. dependencies:
  1683. "@types/lodash": 4.14.191
  1684. dev: true
  1685. /@types/lodash@4.14.191:
  1686. resolution:
  1687. {
  1688. integrity: sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==,
  1689. }
  1690. dev: true
  1691. /@types/minimatch@3.0.5:
  1692. resolution:
  1693. {
  1694. integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==,
  1695. }
  1696. dev: true
  1697. /@types/node@17.0.23:
  1698. resolution:
  1699. {
  1700. integrity: sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw==,
  1701. }
  1702. dev: true
  1703. /@types/parse-json@4.0.0:
  1704. resolution:
  1705. {
  1706. integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==,
  1707. }
  1708. dev: false
  1709. /@types/prop-types@15.7.9:
  1710. resolution:
  1711. {
  1712. integrity: sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==,
  1713. }
  1714. /@types/react-dom@18.0.11:
  1715. resolution:
  1716. {
  1717. integrity: sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==,
  1718. }
  1719. dependencies:
  1720. "@types/react": 18.2.37
  1721. dev: true
  1722. /@types/react-transition-group@4.4.9:
  1723. resolution:
  1724. {
  1725. integrity: sha512-ZVNmWumUIh5NhH8aMD9CR2hdW0fNuYInlocZHaZ+dgk/1K49j1w/HoAuK1ki+pgscQrOFRTlXeoURtuzEkV3dg==,
  1726. }
  1727. dependencies:
  1728. "@types/react": 18.2.37
  1729. /@types/react@18.2.37:
  1730. resolution:
  1731. {
  1732. integrity: sha512-RGAYMi2bhRgEXT3f4B92WTohopH6bIXw05FuGlmJEnv/omEn190+QYEIYxIAuIBdKgboYYdVved2p1AxZVQnaw==,
  1733. }
  1734. dependencies:
  1735. "@types/prop-types": 15.7.9
  1736. "@types/scheduler": 0.16.2
  1737. csstype: 3.1.2
  1738. /@types/scheduler@0.16.2:
  1739. resolution:
  1740. {
  1741. integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==,
  1742. }
  1743. /@virtuoso.dev/react-urx@0.2.13(react@18.2.0):
  1744. resolution:
  1745. {
  1746. integrity: sha512-MY0ugBDjFb5Xt8v2HY7MKcRGqw/3gTpMlLXId2EwQvYJoC8sP7nnXjAxcBtTB50KTZhO0SbzsFimaZ7pSdApwA==,
  1747. }
  1748. engines: { node: ">=10" }
  1749. peerDependencies:
  1750. react: ">=16"
  1751. dependencies:
  1752. "@virtuoso.dev/urx": 0.2.13
  1753. react: 18.2.0
  1754. dev: false
  1755. /@virtuoso.dev/urx@0.2.13:
  1756. resolution:
  1757. {
  1758. integrity: sha512-iirJNv92A1ZWxoOHHDYW/1KPoi83939o83iUBQHIim0i3tMeSKEh+bxhJdTHQ86Mr4uXx9xGUTq69cp52ZP8Xw==,
  1759. }
  1760. dev: false
  1761. /@vitejs/plugin-react@4.1.0(vite@4.5.0):
  1762. resolution:
  1763. {
  1764. integrity: sha512-rM0SqazU9iqPUraQ2JlIvReeaxOoRj6n+PzB1C0cBzIbd8qP336nC39/R9yPi3wVcah7E7j/kdU1uCUqMEU4OQ==,
  1765. }
  1766. engines: { node: ^14.18.0 || >=16.0.0 }
  1767. peerDependencies:
  1768. vite: ^4.2.0
  1769. dependencies:
  1770. "@babel/core": 7.23.2
  1771. "@babel/plugin-transform-react-jsx-self": 7.22.5(@babel/core@7.23.2)
  1772. "@babel/plugin-transform-react-jsx-source": 7.22.5(@babel/core@7.23.2)
  1773. "@types/babel__core": 7.20.3
  1774. react-refresh: 0.14.0
  1775. vite: 4.5.0(sass@1.54.8)
  1776. transitivePeerDependencies:
  1777. - supports-color
  1778. dev: true
  1779. /adm-zip@0.5.9:
  1780. resolution:
  1781. {
  1782. integrity: sha512-s+3fXLkeeLjZ2kLjCBwQufpI5fuN+kIGBxu6530nVQZGVol0d7Y/M88/xw9HGGUcJjKf8LutN3VPRUBq6N7Ajg==,
  1783. }
  1784. engines: { node: ">=6.0" }
  1785. dev: true
  1786. /agent-base@6.0.2:
  1787. resolution:
  1788. {
  1789. integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==,
  1790. }
  1791. engines: { node: ">= 6.0.0" }
  1792. dependencies:
  1793. debug: 4.3.4
  1794. transitivePeerDependencies:
  1795. - supports-color
  1796. dev: true
  1797. /ahooks-v3-count@1.0.0:
  1798. resolution:
  1799. {
  1800. integrity: sha512-V7uUvAwnimu6eh/PED4mCDjE7tokeZQLKlxg9lCTMPhN+NjsSbtdacByVlR1oluXQzD3MOw55wylDmQo4+S9ZQ==,
  1801. }
  1802. dev: false
  1803. /ahooks@3.7.2(react@18.2.0):
  1804. resolution:
  1805. {
  1806. integrity: sha512-nJPsQJcmJnGaNXiqgZdfO7UMs+o926LQg6VyDYt2vzKhXU8Ze/U87NsA/FeIvlIZB0rQr/j7uotFb1bGPp627A==,
  1807. }
  1808. engines: { node: ">=8.0.0" }
  1809. peerDependencies:
  1810. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  1811. dependencies:
  1812. "@types/js-cookie": 2.2.7
  1813. ahooks-v3-count: 1.0.0
  1814. dayjs: 1.11.5
  1815. intersection-observer: 0.12.0
  1816. js-cookie: 2.2.1
  1817. lodash: 4.17.21
  1818. react: 18.2.0
  1819. resize-observer-polyfill: 1.5.1
  1820. screenfull: 5.2.0
  1821. dev: false
  1822. /ansi-styles@3.2.1:
  1823. resolution:
  1824. {
  1825. integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==,
  1826. }
  1827. engines: { node: ">=4" }
  1828. dependencies:
  1829. color-convert: 1.9.3
  1830. /ansi-styles@4.3.0:
  1831. resolution:
  1832. {
  1833. integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==,
  1834. }
  1835. engines: { node: ">=8" }
  1836. dependencies:
  1837. color-convert: 2.0.1
  1838. dev: true
  1839. /anymatch@3.1.2:
  1840. resolution:
  1841. {
  1842. integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==,
  1843. }
  1844. engines: { node: ">= 8" }
  1845. dependencies:
  1846. normalize-path: 3.0.0
  1847. picomatch: 2.3.1
  1848. dev: true
  1849. /argparse@2.0.1:
  1850. resolution:
  1851. {
  1852. integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==,
  1853. }
  1854. dev: true
  1855. /array-differ@3.0.0:
  1856. resolution:
  1857. {
  1858. integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==,
  1859. }
  1860. engines: { node: ">=8" }
  1861. dev: true
  1862. /array-union@2.1.0:
  1863. resolution:
  1864. {
  1865. integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==,
  1866. }
  1867. engines: { node: ">=8" }
  1868. dev: true
  1869. /arrify@2.0.1:
  1870. resolution:
  1871. {
  1872. integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==,
  1873. }
  1874. engines: { node: ">=8" }
  1875. dev: true
  1876. /asynckit@0.4.0:
  1877. resolution:
  1878. {
  1879. integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==,
  1880. }
  1881. dev: false
  1882. /axios@1.1.3:
  1883. resolution:
  1884. {
  1885. integrity: sha512-00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA==,
  1886. }
  1887. dependencies:
  1888. follow-redirects: 1.15.2
  1889. form-data: 4.0.0
  1890. proxy-from-env: 1.1.0
  1891. transitivePeerDependencies:
  1892. - debug
  1893. dev: false
  1894. /babel-plugin-macros@3.1.0:
  1895. resolution:
  1896. {
  1897. integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==,
  1898. }
  1899. engines: { node: ">=10", npm: ">=6" }
  1900. dependencies:
  1901. "@babel/runtime": 7.23.2
  1902. cosmiconfig: 7.0.1
  1903. resolve: 1.22.1
  1904. dev: false
  1905. /balanced-match@1.0.2:
  1906. resolution:
  1907. {
  1908. integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==,
  1909. }
  1910. dev: true
  1911. /before-after-hook@2.2.2:
  1912. resolution:
  1913. {
  1914. integrity: sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==,
  1915. }
  1916. dev: true
  1917. /binary-extensions@2.2.0:
  1918. resolution:
  1919. {
  1920. integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==,
  1921. }
  1922. engines: { node: ">=8" }
  1923. dev: true
  1924. /brace-expansion@1.1.11:
  1925. resolution:
  1926. {
  1927. integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==,
  1928. }
  1929. dependencies:
  1930. balanced-match: 1.0.2
  1931. concat-map: 0.0.1
  1932. dev: true
  1933. /braces@3.0.2:
  1934. resolution:
  1935. {
  1936. integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==,
  1937. }
  1938. engines: { node: ">=8" }
  1939. dependencies:
  1940. fill-range: 7.0.1
  1941. dev: true
  1942. /browserslist@4.22.1:
  1943. resolution:
  1944. {
  1945. integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==,
  1946. }
  1947. engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
  1948. hasBin: true
  1949. dependencies:
  1950. caniuse-lite: 1.0.30001551
  1951. electron-to-chromium: 1.4.563
  1952. node-releases: 2.0.13
  1953. update-browserslist-db: 1.0.13(browserslist@4.22.1)
  1954. dev: true
  1955. /callsites@3.1.0:
  1956. resolution:
  1957. {
  1958. integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==,
  1959. }
  1960. engines: { node: ">=6" }
  1961. /camelcase@6.3.0:
  1962. resolution:
  1963. {
  1964. integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==,
  1965. }
  1966. engines: { node: ">=10" }
  1967. dev: true
  1968. /caniuse-lite@1.0.30001551:
  1969. resolution:
  1970. {
  1971. integrity: sha512-vtBAez47BoGMMzlbYhfXrMV1kvRF2WP/lqiMuDu1Sb4EE4LKEgjopFDSRtZfdVnslNRpOqV/woE+Xgrwj6VQlg==,
  1972. }
  1973. dev: true
  1974. /chalk@2.4.2:
  1975. resolution:
  1976. {
  1977. integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==,
  1978. }
  1979. engines: { node: ">=4" }
  1980. dependencies:
  1981. ansi-styles: 3.2.1
  1982. escape-string-regexp: 1.0.5
  1983. supports-color: 5.5.0
  1984. /chalk@3.0.0:
  1985. resolution:
  1986. {
  1987. integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==,
  1988. }
  1989. engines: { node: ">=8" }
  1990. dependencies:
  1991. ansi-styles: 4.3.0
  1992. supports-color: 7.2.0
  1993. dev: true
  1994. /chokidar@3.5.3:
  1995. resolution:
  1996. {
  1997. integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==,
  1998. }
  1999. engines: { node: ">= 8.10.0" }
  2000. dependencies:
  2001. anymatch: 3.1.2
  2002. braces: 3.0.2
  2003. glob-parent: 5.1.2
  2004. is-binary-path: 2.1.0
  2005. is-glob: 4.0.3
  2006. normalize-path: 3.0.0
  2007. readdirp: 3.6.0
  2008. optionalDependencies:
  2009. fsevents: 2.3.2
  2010. dev: true
  2011. /clsx@2.0.0:
  2012. resolution:
  2013. {
  2014. integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==,
  2015. }
  2016. engines: { node: ">=6" }
  2017. dev: false
  2018. /color-convert@1.9.3:
  2019. resolution:
  2020. {
  2021. integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==,
  2022. }
  2023. dependencies:
  2024. color-name: 1.1.3
  2025. /color-convert@2.0.1:
  2026. resolution:
  2027. {
  2028. integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==,
  2029. }
  2030. engines: { node: ">=7.0.0" }
  2031. dependencies:
  2032. color-name: 1.1.4
  2033. dev: true
  2034. /color-name@1.1.3:
  2035. resolution:
  2036. {
  2037. integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==,
  2038. }
  2039. /color-name@1.1.4:
  2040. resolution:
  2041. {
  2042. integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==,
  2043. }
  2044. dev: true
  2045. /combined-stream@1.0.8:
  2046. resolution:
  2047. {
  2048. integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==,
  2049. }
  2050. engines: { node: ">= 0.8" }
  2051. dependencies:
  2052. delayed-stream: 1.0.0
  2053. dev: false
  2054. /concat-map@0.0.1:
  2055. resolution:
  2056. {
  2057. integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==,
  2058. }
  2059. dev: true
  2060. /convert-source-map@1.8.0:
  2061. resolution:
  2062. {
  2063. integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==,
  2064. }
  2065. dependencies:
  2066. safe-buffer: 5.1.2
  2067. dev: false
  2068. /convert-source-map@2.0.0:
  2069. resolution:
  2070. {
  2071. integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==,
  2072. }
  2073. dev: true
  2074. /cosmiconfig@7.0.1:
  2075. resolution:
  2076. {
  2077. integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==,
  2078. }
  2079. engines: { node: ">=10" }
  2080. dependencies:
  2081. "@types/parse-json": 4.0.0
  2082. import-fresh: 3.3.0
  2083. parse-json: 5.2.0
  2084. path-type: 4.0.0
  2085. yaml: 1.10.2
  2086. dev: false
  2087. /cosmiconfig@8.3.6(typescript@4.7.4):
  2088. resolution:
  2089. {
  2090. integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==,
  2091. }
  2092. engines: { node: ">=14" }
  2093. peerDependencies:
  2094. typescript: ">=4.9.5"
  2095. peerDependenciesMeta:
  2096. typescript:
  2097. optional: true
  2098. dependencies:
  2099. import-fresh: 3.3.0
  2100. js-yaml: 4.1.0
  2101. parse-json: 5.2.0
  2102. path-type: 4.0.0
  2103. typescript: 4.7.4
  2104. dev: true
  2105. /cross-env@7.0.3:
  2106. resolution:
  2107. {
  2108. integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==,
  2109. }
  2110. engines: { node: ">=10.14", npm: ">=6", yarn: ">=1" }
  2111. hasBin: true
  2112. dependencies:
  2113. cross-spawn: 7.0.3
  2114. dev: true
  2115. /cross-spawn@7.0.3:
  2116. resolution:
  2117. {
  2118. integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==,
  2119. }
  2120. engines: { node: ">= 8" }
  2121. dependencies:
  2122. path-key: 3.1.1
  2123. shebang-command: 2.0.0
  2124. which: 2.0.2
  2125. dev: true
  2126. /csstype@3.1.2:
  2127. resolution:
  2128. {
  2129. integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==,
  2130. }
  2131. /data-uri-to-buffer@4.0.0:
  2132. resolution:
  2133. {
  2134. integrity: sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==,
  2135. }
  2136. engines: { node: ">= 12" }
  2137. dev: true
  2138. /dayjs@1.11.5:
  2139. resolution:
  2140. {
  2141. integrity: sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==,
  2142. }
  2143. dev: false
  2144. /debug@4.3.4:
  2145. resolution:
  2146. {
  2147. integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==,
  2148. }
  2149. engines: { node: ">=6.0" }
  2150. peerDependencies:
  2151. supports-color: "*"
  2152. peerDependenciesMeta:
  2153. supports-color:
  2154. optional: true
  2155. dependencies:
  2156. ms: 2.1.2
  2157. dev: true
  2158. /delayed-stream@1.0.0:
  2159. resolution:
  2160. {
  2161. integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==,
  2162. }
  2163. engines: { node: ">=0.4.0" }
  2164. dev: false
  2165. /deprecation@2.3.1:
  2166. resolution:
  2167. {
  2168. integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==,
  2169. }
  2170. dev: true
  2171. /dom-helpers@5.2.1:
  2172. resolution:
  2173. {
  2174. integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==,
  2175. }
  2176. dependencies:
  2177. "@babel/runtime": 7.23.2
  2178. csstype: 3.1.2
  2179. dev: false
  2180. /dot-case@3.0.4:
  2181. resolution:
  2182. {
  2183. integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==,
  2184. }
  2185. dependencies:
  2186. no-case: 3.0.4
  2187. tslib: 2.6.2
  2188. dev: true
  2189. /electron-to-chromium@1.4.563:
  2190. resolution:
  2191. {
  2192. integrity: sha512-dg5gj5qOgfZNkPNeyKBZQAQitIQ/xwfIDmEQJHCbXaD9ebTZxwJXUsDYcBlAvZGZLi+/354l35J1wkmP6CqYaw==,
  2193. }
  2194. dev: true
  2195. /end-of-stream@1.4.4:
  2196. resolution:
  2197. {
  2198. integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==,
  2199. }
  2200. dependencies:
  2201. once: 1.4.0
  2202. dev: true
  2203. /entities@4.5.0:
  2204. resolution:
  2205. {
  2206. integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==,
  2207. }
  2208. engines: { node: ">=0.12" }
  2209. dev: true
  2210. /error-ex@1.3.2:
  2211. resolution:
  2212. {
  2213. integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==,
  2214. }
  2215. dependencies:
  2216. is-arrayish: 0.2.1
  2217. /esbuild@0.18.20:
  2218. resolution:
  2219. {
  2220. integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==,
  2221. }
  2222. engines: { node: ">=12" }
  2223. hasBin: true
  2224. requiresBuild: true
  2225. optionalDependencies:
  2226. "@esbuild/android-arm": 0.18.20
  2227. "@esbuild/android-arm64": 0.18.20
  2228. "@esbuild/android-x64": 0.18.20
  2229. "@esbuild/darwin-arm64": 0.18.20
  2230. "@esbuild/darwin-x64": 0.18.20
  2231. "@esbuild/freebsd-arm64": 0.18.20
  2232. "@esbuild/freebsd-x64": 0.18.20
  2233. "@esbuild/linux-arm": 0.18.20
  2234. "@esbuild/linux-arm64": 0.18.20
  2235. "@esbuild/linux-ia32": 0.18.20
  2236. "@esbuild/linux-loong64": 0.18.20
  2237. "@esbuild/linux-mips64el": 0.18.20
  2238. "@esbuild/linux-ppc64": 0.18.20
  2239. "@esbuild/linux-riscv64": 0.18.20
  2240. "@esbuild/linux-s390x": 0.18.20
  2241. "@esbuild/linux-x64": 0.18.20
  2242. "@esbuild/netbsd-x64": 0.18.20
  2243. "@esbuild/openbsd-x64": 0.18.20
  2244. "@esbuild/sunos-x64": 0.18.20
  2245. "@esbuild/win32-arm64": 0.18.20
  2246. "@esbuild/win32-ia32": 0.18.20
  2247. "@esbuild/win32-x64": 0.18.20
  2248. dev: true
  2249. /escalade@3.1.1:
  2250. resolution:
  2251. {
  2252. integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==,
  2253. }
  2254. engines: { node: ">=6" }
  2255. dev: true
  2256. /escape-string-regexp@1.0.5:
  2257. resolution:
  2258. {
  2259. integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==,
  2260. }
  2261. engines: { node: ">=0.8.0" }
  2262. /escape-string-regexp@4.0.0:
  2263. resolution:
  2264. {
  2265. integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==,
  2266. }
  2267. engines: { node: ">=10" }
  2268. dev: false
  2269. /estree-walker@2.0.2:
  2270. resolution:
  2271. {
  2272. integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==,
  2273. }
  2274. dev: true
  2275. /execa@4.1.0:
  2276. resolution:
  2277. {
  2278. integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==,
  2279. }
  2280. engines: { node: ">=10" }
  2281. dependencies:
  2282. cross-spawn: 7.0.3
  2283. get-stream: 5.2.0
  2284. human-signals: 1.1.1
  2285. is-stream: 2.0.1
  2286. merge-stream: 2.0.0
  2287. npm-run-path: 4.0.1
  2288. onetime: 5.1.2
  2289. signal-exit: 3.0.7
  2290. strip-final-newline: 2.0.0
  2291. dev: true
  2292. /fetch-blob@3.1.5:
  2293. resolution:
  2294. {
  2295. integrity: sha512-N64ZpKqoLejlrwkIAnb9iLSA3Vx/kjgzpcDhygcqJ2KKjky8nCgUQ+dzXtbrLaWZGZNmNfQTsiQ0weZ1svglHg==,
  2296. }
  2297. engines: { node: ^12.20 || >= 14.13 }
  2298. dependencies:
  2299. node-domexception: 1.0.0
  2300. web-streams-polyfill: 3.2.0
  2301. dev: true
  2302. /fill-range@7.0.1:
  2303. resolution:
  2304. {
  2305. integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==,
  2306. }
  2307. engines: { node: ">=8" }
  2308. dependencies:
  2309. to-regex-range: 5.0.1
  2310. dev: true
  2311. /find-root@1.1.0:
  2312. resolution:
  2313. {
  2314. integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==,
  2315. }
  2316. dev: false
  2317. /find-up@4.1.0:
  2318. resolution:
  2319. {
  2320. integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==,
  2321. }
  2322. engines: { node: ">=8" }
  2323. dependencies:
  2324. locate-path: 5.0.0
  2325. path-exists: 4.0.0
  2326. dev: true
  2327. /follow-redirects@1.15.2:
  2328. resolution:
  2329. {
  2330. integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==,
  2331. }
  2332. engines: { node: ">=4.0" }
  2333. peerDependencies:
  2334. debug: "*"
  2335. peerDependenciesMeta:
  2336. debug:
  2337. optional: true
  2338. dev: false
  2339. /form-data@4.0.0:
  2340. resolution:
  2341. {
  2342. integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==,
  2343. }
  2344. engines: { node: ">= 6" }
  2345. dependencies:
  2346. asynckit: 0.4.0
  2347. combined-stream: 1.0.8
  2348. mime-types: 2.1.35
  2349. dev: false
  2350. /formdata-polyfill@4.0.10:
  2351. resolution:
  2352. {
  2353. integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==,
  2354. }
  2355. engines: { node: ">=12.20.0" }
  2356. dependencies:
  2357. fetch-blob: 3.1.5
  2358. dev: true
  2359. /fs-extra@10.0.1:
  2360. resolution:
  2361. {
  2362. integrity: sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==,
  2363. }
  2364. engines: { node: ">=12" }
  2365. dependencies:
  2366. graceful-fs: 4.2.9
  2367. jsonfile: 6.1.0
  2368. universalify: 2.0.0
  2369. dev: true
  2370. /fsevents@2.3.2:
  2371. resolution:
  2372. {
  2373. integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==,
  2374. }
  2375. engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
  2376. os: [darwin]
  2377. requiresBuild: true
  2378. dev: true
  2379. optional: true
  2380. /function-bind@1.1.1:
  2381. resolution:
  2382. {
  2383. integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==,
  2384. }
  2385. dev: false
  2386. /gensync@1.0.0-beta.2:
  2387. resolution:
  2388. {
  2389. integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==,
  2390. }
  2391. engines: { node: ">=6.9.0" }
  2392. dev: true
  2393. /get-stream@5.2.0:
  2394. resolution:
  2395. {
  2396. integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==,
  2397. }
  2398. engines: { node: ">=8" }
  2399. dependencies:
  2400. pump: 3.0.0
  2401. dev: true
  2402. /glob-parent@5.1.2:
  2403. resolution:
  2404. {
  2405. integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==,
  2406. }
  2407. engines: { node: ">= 6" }
  2408. dependencies:
  2409. is-glob: 4.0.3
  2410. dev: true
  2411. /globals@11.12.0:
  2412. resolution:
  2413. {
  2414. integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==,
  2415. }
  2416. engines: { node: ">=4" }
  2417. dev: true
  2418. /graceful-fs@4.2.9:
  2419. resolution:
  2420. {
  2421. integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==,
  2422. }
  2423. dev: true
  2424. /hamt_plus@1.0.2:
  2425. resolution:
  2426. {
  2427. integrity: sha512-t2JXKaehnMb9paaYA7J0BX8QQAY8lwfQ9Gjf4pg/mk4krt+cmwmU652HOoWonf+7+EQV97ARPMhhVgU1ra2GhA==,
  2428. }
  2429. dev: false
  2430. /has-flag@3.0.0:
  2431. resolution:
  2432. {
  2433. integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==,
  2434. }
  2435. engines: { node: ">=4" }
  2436. /has-flag@4.0.0:
  2437. resolution:
  2438. {
  2439. integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==,
  2440. }
  2441. engines: { node: ">=8" }
  2442. dev: true
  2443. /has@1.0.3:
  2444. resolution:
  2445. {
  2446. integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==,
  2447. }
  2448. engines: { node: ">= 0.4.0" }
  2449. dependencies:
  2450. function-bind: 1.1.1
  2451. dev: false
  2452. /hoist-non-react-statics@3.3.2:
  2453. resolution:
  2454. {
  2455. integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==,
  2456. }
  2457. dependencies:
  2458. react-is: 16.13.1
  2459. dev: false
  2460. /html-parse-stringify@3.0.1:
  2461. resolution:
  2462. {
  2463. integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==,
  2464. }
  2465. dependencies:
  2466. void-elements: 3.1.0
  2467. dev: false
  2468. /https-proxy-agent@5.0.1:
  2469. resolution:
  2470. {
  2471. integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==,
  2472. }
  2473. engines: { node: ">= 6" }
  2474. dependencies:
  2475. agent-base: 6.0.2
  2476. debug: 4.3.4
  2477. transitivePeerDependencies:
  2478. - supports-color
  2479. dev: true
  2480. /human-signals@1.1.1:
  2481. resolution:
  2482. {
  2483. integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==,
  2484. }
  2485. engines: { node: ">=8.12.0" }
  2486. dev: true
  2487. /husky@7.0.4:
  2488. resolution:
  2489. {
  2490. integrity: sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==,
  2491. }
  2492. engines: { node: ">=12" }
  2493. hasBin: true
  2494. dev: true
  2495. /i18next@22.0.4:
  2496. resolution:
  2497. {
  2498. integrity: sha512-TOp7BTMKDbUkOHMzDlVsCYWpyaFkKakrrO3HNXfSz4EeJaWwnBScRmgQSTaWHScXVHBUFXTvShrCW8uryBYFcg==,
  2499. }
  2500. dependencies:
  2501. "@babel/runtime": 7.23.2
  2502. dev: false
  2503. /ignore@5.2.0:
  2504. resolution:
  2505. {
  2506. integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==,
  2507. }
  2508. engines: { node: ">= 4" }
  2509. dev: true
  2510. /immutable@4.0.0:
  2511. resolution:
  2512. {
  2513. integrity: sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==,
  2514. }
  2515. dev: true
  2516. /import-fresh@3.3.0:
  2517. resolution:
  2518. {
  2519. integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==,
  2520. }
  2521. engines: { node: ">=6" }
  2522. dependencies:
  2523. parent-module: 1.0.1
  2524. resolve-from: 4.0.0
  2525. /intersection-observer@0.12.0:
  2526. resolution:
  2527. {
  2528. integrity: sha512-2Vkz8z46Dv401zTWudDGwO7KiGHNDkMv417T5ItcNYfmvHR/1qCTVBO9vwH8zZmQ0WkA/1ARwpysR9bsnop4NQ==,
  2529. }
  2530. dev: false
  2531. /is-arrayish@0.2.1:
  2532. resolution:
  2533. {
  2534. integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==,
  2535. }
  2536. /is-binary-path@2.1.0:
  2537. resolution:
  2538. {
  2539. integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==,
  2540. }
  2541. engines: { node: ">=8" }
  2542. dependencies:
  2543. binary-extensions: 2.2.0
  2544. dev: true
  2545. /is-core-module@2.10.0:
  2546. resolution:
  2547. {
  2548. integrity: sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==,
  2549. }
  2550. dependencies:
  2551. has: 1.0.3
  2552. dev: false
  2553. /is-extglob@2.1.1:
  2554. resolution:
  2555. {
  2556. integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
  2557. }
  2558. engines: { node: ">=0.10.0" }
  2559. dev: true
  2560. /is-glob@4.0.3:
  2561. resolution:
  2562. {
  2563. integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
  2564. }
  2565. engines: { node: ">=0.10.0" }
  2566. dependencies:
  2567. is-extglob: 2.1.1
  2568. dev: true
  2569. /is-number@7.0.0:
  2570. resolution:
  2571. {
  2572. integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==,
  2573. }
  2574. engines: { node: ">=0.12.0" }
  2575. dev: true
  2576. /is-plain-object@5.0.0:
  2577. resolution:
  2578. {
  2579. integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==,
  2580. }
  2581. engines: { node: ">=0.10.0" }
  2582. dev: true
  2583. /is-stream@2.0.1:
  2584. resolution:
  2585. {
  2586. integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==,
  2587. }
  2588. engines: { node: ">=8" }
  2589. dev: true
  2590. /isexe@2.0.0:
  2591. resolution:
  2592. {
  2593. integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
  2594. }
  2595. dev: true
  2596. /js-cookie@2.2.1:
  2597. resolution:
  2598. {
  2599. integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==,
  2600. }
  2601. dev: false
  2602. /js-tokens@4.0.0:
  2603. resolution:
  2604. {
  2605. integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==,
  2606. }
  2607. /js-yaml@4.1.0:
  2608. resolution:
  2609. {
  2610. integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==,
  2611. }
  2612. hasBin: true
  2613. dependencies:
  2614. argparse: 2.0.1
  2615. dev: true
  2616. /jsesc@2.5.2:
  2617. resolution:
  2618. {
  2619. integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==,
  2620. }
  2621. engines: { node: ">=4" }
  2622. hasBin: true
  2623. dev: true
  2624. /json-parse-even-better-errors@2.3.1:
  2625. resolution:
  2626. {
  2627. integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==,
  2628. }
  2629. /json5@2.2.3:
  2630. resolution:
  2631. {
  2632. integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==,
  2633. }
  2634. engines: { node: ">=6" }
  2635. hasBin: true
  2636. dev: true
  2637. /jsonfile@6.1.0:
  2638. resolution:
  2639. {
  2640. integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==,
  2641. }
  2642. dependencies:
  2643. universalify: 2.0.0
  2644. optionalDependencies:
  2645. graceful-fs: 4.2.9
  2646. dev: true
  2647. /lines-and-columns@1.2.4:
  2648. resolution:
  2649. {
  2650. integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==,
  2651. }
  2652. /locate-path@5.0.0:
  2653. resolution:
  2654. {
  2655. integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==,
  2656. }
  2657. engines: { node: ">=8" }
  2658. dependencies:
  2659. p-locate: 4.1.0
  2660. dev: true
  2661. /lodash-es@4.17.21:
  2662. resolution:
  2663. {
  2664. integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==,
  2665. }
  2666. dev: false
  2667. /lodash@4.17.21:
  2668. resolution:
  2669. {
  2670. integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==,
  2671. }
  2672. dev: false
  2673. /loose-envify@1.4.0:
  2674. resolution:
  2675. {
  2676. integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==,
  2677. }
  2678. hasBin: true
  2679. dependencies:
  2680. js-tokens: 4.0.0
  2681. dev: false
  2682. /lower-case@2.0.2:
  2683. resolution:
  2684. {
  2685. integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==,
  2686. }
  2687. dependencies:
  2688. tslib: 2.6.2
  2689. dev: true
  2690. /lru-cache@5.1.1:
  2691. resolution:
  2692. {
  2693. integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==,
  2694. }
  2695. dependencies:
  2696. yallist: 3.1.1
  2697. dev: true
  2698. /merge-stream@2.0.0:
  2699. resolution:
  2700. {
  2701. integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==,
  2702. }
  2703. dev: true
  2704. /mime-db@1.52.0:
  2705. resolution:
  2706. {
  2707. integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==,
  2708. }
  2709. engines: { node: ">= 0.6" }
  2710. dev: false
  2711. /mime-types@2.1.35:
  2712. resolution:
  2713. {
  2714. integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==,
  2715. }
  2716. engines: { node: ">= 0.6" }
  2717. dependencies:
  2718. mime-db: 1.52.0
  2719. dev: false
  2720. /mimic-fn@2.1.0:
  2721. resolution:
  2722. {
  2723. integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==,
  2724. }
  2725. engines: { node: ">=6" }
  2726. dev: true
  2727. /minimatch@3.1.2:
  2728. resolution:
  2729. {
  2730. integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==,
  2731. }
  2732. dependencies:
  2733. brace-expansion: 1.1.11
  2734. dev: true
  2735. /monaco-editor@0.34.1:
  2736. resolution:
  2737. {
  2738. integrity: sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ==,
  2739. }
  2740. /mri@1.2.0:
  2741. resolution:
  2742. {
  2743. integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==,
  2744. }
  2745. engines: { node: ">=4" }
  2746. dev: true
  2747. /ms@2.1.2:
  2748. resolution:
  2749. {
  2750. integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==,
  2751. }
  2752. dev: true
  2753. /multimatch@4.0.0:
  2754. resolution:
  2755. {
  2756. integrity: sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==,
  2757. }
  2758. engines: { node: ">=8" }
  2759. dependencies:
  2760. "@types/minimatch": 3.0.5
  2761. array-differ: 3.0.0
  2762. array-union: 2.1.0
  2763. arrify: 2.0.1
  2764. minimatch: 3.1.2
  2765. dev: true
  2766. /nanoid@3.3.6:
  2767. resolution:
  2768. {
  2769. integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==,
  2770. }
  2771. engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
  2772. hasBin: true
  2773. dev: true
  2774. /no-case@3.0.4:
  2775. resolution:
  2776. {
  2777. integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==,
  2778. }
  2779. dependencies:
  2780. lower-case: 2.0.2
  2781. tslib: 2.6.2
  2782. dev: true
  2783. /node-domexception@1.0.0:
  2784. resolution:
  2785. {
  2786. integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==,
  2787. }
  2788. engines: { node: ">=10.5.0" }
  2789. dev: true
  2790. /node-fetch@2.6.7:
  2791. resolution:
  2792. {
  2793. integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==,
  2794. }
  2795. engines: { node: 4.x || >=6.0.0 }
  2796. peerDependencies:
  2797. encoding: ^0.1.0
  2798. peerDependenciesMeta:
  2799. encoding:
  2800. optional: true
  2801. dependencies:
  2802. whatwg-url: 5.0.0
  2803. dev: true
  2804. /node-fetch@3.2.6:
  2805. resolution:
  2806. {
  2807. integrity: sha512-LAy/HZnLADOVkVPubaxHDft29booGglPFDr2Hw0J1AercRh01UiVFm++KMDnJeH9sHgNB4hsXPii7Sgym/sTbw==,
  2808. }
  2809. engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
  2810. dependencies:
  2811. data-uri-to-buffer: 4.0.0
  2812. fetch-blob: 3.1.5
  2813. formdata-polyfill: 4.0.10
  2814. dev: true
  2815. /node-releases@2.0.13:
  2816. resolution:
  2817. {
  2818. integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==,
  2819. }
  2820. dev: true
  2821. /normalize-path@3.0.0:
  2822. resolution:
  2823. {
  2824. integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==,
  2825. }
  2826. engines: { node: ">=0.10.0" }
  2827. dev: true
  2828. /npm-run-path@4.0.1:
  2829. resolution:
  2830. {
  2831. integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==,
  2832. }
  2833. engines: { node: ">=8" }
  2834. dependencies:
  2835. path-key: 3.1.1
  2836. dev: true
  2837. /object-assign@4.1.1:
  2838. resolution:
  2839. {
  2840. integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==,
  2841. }
  2842. engines: { node: ">=0.10.0" }
  2843. dev: false
  2844. /once@1.4.0:
  2845. resolution:
  2846. {
  2847. integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==,
  2848. }
  2849. dependencies:
  2850. wrappy: 1.0.2
  2851. dev: true
  2852. /onetime@5.1.2:
  2853. resolution:
  2854. {
  2855. integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==,
  2856. }
  2857. engines: { node: ">=6" }
  2858. dependencies:
  2859. mimic-fn: 2.1.0
  2860. dev: true
  2861. /p-limit@2.3.0:
  2862. resolution:
  2863. {
  2864. integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==,
  2865. }
  2866. engines: { node: ">=6" }
  2867. dependencies:
  2868. p-try: 2.2.0
  2869. dev: true
  2870. /p-locate@4.1.0:
  2871. resolution:
  2872. {
  2873. integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==,
  2874. }
  2875. engines: { node: ">=8" }
  2876. dependencies:
  2877. p-limit: 2.3.0
  2878. dev: true
  2879. /p-try@2.2.0:
  2880. resolution:
  2881. {
  2882. integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==,
  2883. }
  2884. engines: { node: ">=6" }
  2885. dev: true
  2886. /parent-module@1.0.1:
  2887. resolution:
  2888. {
  2889. integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==,
  2890. }
  2891. engines: { node: ">=6" }
  2892. dependencies:
  2893. callsites: 3.1.0
  2894. /parse-json@5.2.0:
  2895. resolution:
  2896. {
  2897. integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==,
  2898. }
  2899. engines: { node: ">=8" }
  2900. dependencies:
  2901. "@babel/code-frame": 7.22.13
  2902. error-ex: 1.3.2
  2903. json-parse-even-better-errors: 2.3.1
  2904. lines-and-columns: 1.2.4
  2905. /path-exists@4.0.0:
  2906. resolution:
  2907. {
  2908. integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==,
  2909. }
  2910. engines: { node: ">=8" }
  2911. dev: true
  2912. /path-key@3.1.1:
  2913. resolution:
  2914. {
  2915. integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
  2916. }
  2917. engines: { node: ">=8" }
  2918. dev: true
  2919. /path-parse@1.0.7:
  2920. resolution:
  2921. {
  2922. integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==,
  2923. }
  2924. dev: false
  2925. /path-type@4.0.0:
  2926. resolution:
  2927. {
  2928. integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==,
  2929. }
  2930. engines: { node: ">=8" }
  2931. /picocolors@1.0.0:
  2932. resolution:
  2933. {
  2934. integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==,
  2935. }
  2936. dev: true
  2937. /picomatch@2.3.1:
  2938. resolution:
  2939. {
  2940. integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==,
  2941. }
  2942. engines: { node: ">=8.6" }
  2943. dev: true
  2944. /postcss@8.4.31:
  2945. resolution:
  2946. {
  2947. integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==,
  2948. }
  2949. engines: { node: ^10 || ^12 || >=14 }
  2950. dependencies:
  2951. nanoid: 3.3.6
  2952. picocolors: 1.0.0
  2953. source-map-js: 1.0.2
  2954. dev: true
  2955. /prettier@2.7.1:
  2956. resolution:
  2957. {
  2958. integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==,
  2959. }
  2960. engines: { node: ">=10.13.0" }
  2961. hasBin: true
  2962. dev: true
  2963. /pretty-quick@3.1.3(prettier@2.7.1):
  2964. resolution:
  2965. {
  2966. integrity: sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==,
  2967. }
  2968. engines: { node: ">=10.13" }
  2969. hasBin: true
  2970. peerDependencies:
  2971. prettier: ">=2.0.0"
  2972. dependencies:
  2973. chalk: 3.0.0
  2974. execa: 4.1.0
  2975. find-up: 4.1.0
  2976. ignore: 5.2.0
  2977. mri: 1.2.0
  2978. multimatch: 4.0.0
  2979. prettier: 2.7.1
  2980. dev: true
  2981. /prop-types@15.8.1:
  2982. resolution:
  2983. {
  2984. integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==,
  2985. }
  2986. dependencies:
  2987. loose-envify: 1.4.0
  2988. object-assign: 4.1.1
  2989. react-is: 16.13.1
  2990. dev: false
  2991. /proxy-from-env@1.1.0:
  2992. resolution:
  2993. {
  2994. integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==,
  2995. }
  2996. dev: false
  2997. /pump@3.0.0:
  2998. resolution:
  2999. {
  3000. integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==,
  3001. }
  3002. dependencies:
  3003. end-of-stream: 1.4.4
  3004. once: 1.4.0
  3005. dev: true
  3006. /react-dom@18.2.0(react@18.2.0):
  3007. resolution:
  3008. {
  3009. integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==,
  3010. }
  3011. peerDependencies:
  3012. react: ^18.2.0
  3013. dependencies:
  3014. loose-envify: 1.4.0
  3015. react: 18.2.0
  3016. scheduler: 0.23.0
  3017. dev: false
  3018. /react-error-boundary@3.1.4(react@18.2.0):
  3019. resolution:
  3020. {
  3021. integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==,
  3022. }
  3023. engines: { node: ">=10", npm: ">=6" }
  3024. peerDependencies:
  3025. react: ">=16.13.1"
  3026. dependencies:
  3027. "@babel/runtime": 7.23.2
  3028. react: 18.2.0
  3029. dev: false
  3030. /react-hook-form@7.39.5(react@18.2.0):
  3031. resolution:
  3032. {
  3033. integrity: sha512-OE0HKyz5IPc6svN2wd+e+evidZrw4O4WZWAWYzQVZuHi+hYnHFSLnxOq0ddjbdmaLIsLHut/ab7j72y2QT3+KA==,
  3034. }
  3035. engines: { node: ">=12.22.0" }
  3036. peerDependencies:
  3037. react: ^16.8.0 || ^17 || ^18
  3038. dependencies:
  3039. react: 18.2.0
  3040. dev: false
  3041. /react-i18next@12.0.0(i18next@22.0.4)(react-dom@18.2.0)(react@18.2.0):
  3042. resolution:
  3043. {
  3044. integrity: sha512-/O7N6aIEAl1FaWZBNvhdIo9itvF/MO/nRKr9pYqRc9LhuC1u21SlfwpiYQqvaeNSEW3g3qUXLREOWMt+gxrWbg==,
  3045. }
  3046. peerDependencies:
  3047. i18next: ">= 19.0.0"
  3048. react: ">= 16.8.0"
  3049. react-dom: "*"
  3050. react-native: "*"
  3051. peerDependenciesMeta:
  3052. react-dom:
  3053. optional: true
  3054. react-native:
  3055. optional: true
  3056. dependencies:
  3057. "@babel/runtime": 7.23.2
  3058. html-parse-stringify: 3.0.1
  3059. i18next: 22.0.4
  3060. react: 18.2.0
  3061. react-dom: 18.2.0(react@18.2.0)
  3062. dev: false
  3063. /react-is@16.13.1:
  3064. resolution:
  3065. {
  3066. integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==,
  3067. }
  3068. dev: false
  3069. /react-is@18.2.0:
  3070. resolution:
  3071. {
  3072. integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==,
  3073. }
  3074. dev: false
  3075. /react-refresh@0.14.0:
  3076. resolution:
  3077. {
  3078. integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==,
  3079. }
  3080. engines: { node: ">=0.10.0" }
  3081. dev: true
  3082. /react-router-dom@6.4.3(react-dom@18.2.0)(react@18.2.0):
  3083. resolution:
  3084. {
  3085. integrity: sha512-MiaYQU8CwVCaOfJdYvt84KQNjT78VF0TJrA17SIQgNHRvLnXDJO6qsFqq8F/zzB1BWZjCFIrQpu4QxcshitziQ==,
  3086. }
  3087. engines: { node: ">=14" }
  3088. peerDependencies:
  3089. react: ">=16.8"
  3090. react-dom: ">=16.8"
  3091. dependencies:
  3092. "@remix-run/router": 1.0.3
  3093. react: 18.2.0
  3094. react-dom: 18.2.0(react@18.2.0)
  3095. react-router: 6.4.3(react@18.2.0)
  3096. dev: false
  3097. /react-router@6.4.3(react@18.2.0):
  3098. resolution:
  3099. {
  3100. integrity: sha512-BT6DoGn6aV1FVP5yfODMOiieakp3z46P1Fk0RNzJMACzE7C339sFuHebfvWtnB4pzBvXXkHP2vscJzWRuUjTtA==,
  3101. }
  3102. engines: { node: ">=14" }
  3103. peerDependencies:
  3104. react: ">=16.8"
  3105. dependencies:
  3106. "@remix-run/router": 1.0.3
  3107. react: 18.2.0
  3108. dev: false
  3109. /react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0):
  3110. resolution:
  3111. {
  3112. integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==,
  3113. }
  3114. peerDependencies:
  3115. react: ">=16.6.0"
  3116. react-dom: ">=16.6.0"
  3117. dependencies:
  3118. "@babel/runtime": 7.23.2
  3119. dom-helpers: 5.2.1
  3120. loose-envify: 1.4.0
  3121. prop-types: 15.8.1
  3122. react: 18.2.0
  3123. react-dom: 18.2.0(react@18.2.0)
  3124. dev: false
  3125. /react-virtuoso@3.1.3(react-dom@18.2.0)(react@18.2.0):
  3126. resolution:
  3127. {
  3128. integrity: sha512-sc4WICEZkyT+XdVc7gA/61UT43ZnMSX0ugh+xBG2cX+EDWs31wP1dSKQ2HSQ0YFLhZXRJ+Jqndqa8MTu4NE4CQ==,
  3129. }
  3130. engines: { node: ">=10" }
  3131. peerDependencies:
  3132. react: ">=16 || >=17 || >= 18"
  3133. react-dom: ">=16 || >=17 || >= 18"
  3134. dependencies:
  3135. "@virtuoso.dev/react-urx": 0.2.13(react@18.2.0)
  3136. "@virtuoso.dev/urx": 0.2.13
  3137. react: 18.2.0
  3138. react-dom: 18.2.0(react@18.2.0)
  3139. dev: false
  3140. /react@18.2.0:
  3141. resolution:
  3142. {
  3143. integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==,
  3144. }
  3145. engines: { node: ">=0.10.0" }
  3146. dependencies:
  3147. loose-envify: 1.4.0
  3148. dev: false
  3149. /readdirp@3.6.0:
  3150. resolution:
  3151. {
  3152. integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==,
  3153. }
  3154. engines: { node: ">=8.10.0" }
  3155. dependencies:
  3156. picomatch: 2.3.1
  3157. dev: true
  3158. /recoil@0.7.6(react-dom@18.2.0)(react@18.2.0):
  3159. resolution:
  3160. {
  3161. integrity: sha512-hsBEw7jFdpBCY/tu2GweiyaqHKxVj6EqF2/SfrglbKvJHhpN57SANWvPW+gE90i3Awi+A5gssOd3u+vWlT+g7g==,
  3162. }
  3163. peerDependencies:
  3164. react: ">=16.13.1"
  3165. react-dom: "*"
  3166. react-native: "*"
  3167. peerDependenciesMeta:
  3168. react-dom:
  3169. optional: true
  3170. react-native:
  3171. optional: true
  3172. dependencies:
  3173. hamt_plus: 1.0.2
  3174. react: 18.2.0
  3175. react-dom: 18.2.0(react@18.2.0)
  3176. dev: false
  3177. /regenerator-runtime@0.14.0:
  3178. resolution:
  3179. {
  3180. integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==,
  3181. }
  3182. dev: false
  3183. /reselect@4.1.8:
  3184. resolution:
  3185. {
  3186. integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==,
  3187. }
  3188. dev: false
  3189. /resize-observer-polyfill@1.5.1:
  3190. resolution:
  3191. {
  3192. integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==,
  3193. }
  3194. dev: false
  3195. /resolve-from@4.0.0:
  3196. resolution:
  3197. {
  3198. integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==,
  3199. }
  3200. engines: { node: ">=4" }
  3201. /resolve@1.22.1:
  3202. resolution:
  3203. {
  3204. integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==,
  3205. }
  3206. hasBin: true
  3207. dependencies:
  3208. is-core-module: 2.10.0
  3209. path-parse: 1.0.7
  3210. supports-preserve-symlinks-flag: 1.0.0
  3211. dev: false
  3212. /rollup@3.29.4:
  3213. resolution:
  3214. {
  3215. integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==,
  3216. }
  3217. engines: { node: ">=14.18.0", npm: ">=8.0.0" }
  3218. hasBin: true
  3219. optionalDependencies:
  3220. fsevents: 2.3.2
  3221. dev: true
  3222. /safe-buffer@5.1.2:
  3223. resolution:
  3224. {
  3225. integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==,
  3226. }
  3227. dev: false
  3228. /sass@1.54.8:
  3229. resolution:
  3230. {
  3231. integrity: sha512-ib4JhLRRgbg6QVy6bsv5uJxnJMTS2soVcCp9Y88Extyy13A8vV0G1fAwujOzmNkFQbR3LvedudAMbtuNRPbQww==,
  3232. }
  3233. engines: { node: ">=12.0.0" }
  3234. hasBin: true
  3235. dependencies:
  3236. chokidar: 3.5.3
  3237. immutable: 4.0.0
  3238. source-map-js: 1.0.2
  3239. dev: true
  3240. /scheduler@0.23.0:
  3241. resolution:
  3242. {
  3243. integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==,
  3244. }
  3245. dependencies:
  3246. loose-envify: 1.4.0
  3247. dev: false
  3248. /screenfull@5.2.0:
  3249. resolution:
  3250. {
  3251. integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==,
  3252. }
  3253. engines: { node: ">=0.10.0" }
  3254. dev: false
  3255. /semver@6.3.1:
  3256. resolution:
  3257. {
  3258. integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==,
  3259. }
  3260. hasBin: true
  3261. dev: true
  3262. /shebang-command@2.0.0:
  3263. resolution:
  3264. {
  3265. integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
  3266. }
  3267. engines: { node: ">=8" }
  3268. dependencies:
  3269. shebang-regex: 3.0.0
  3270. dev: true
  3271. /shebang-regex@3.0.0:
  3272. resolution:
  3273. {
  3274. integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
  3275. }
  3276. engines: { node: ">=8" }
  3277. dev: true
  3278. /signal-exit@3.0.7:
  3279. resolution:
  3280. {
  3281. integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==,
  3282. }
  3283. dev: true
  3284. /snake-case@3.0.4:
  3285. resolution:
  3286. {
  3287. integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==,
  3288. }
  3289. dependencies:
  3290. dot-case: 3.0.4
  3291. tslib: 2.6.2
  3292. dev: true
  3293. /snarkdown@2.0.0:
  3294. resolution:
  3295. {
  3296. integrity: sha512-MgL/7k/AZdXCTJiNgrO7chgDqaB9FGM/1Tvlcenenb7div6obaDATzs16JhFyHHBGodHT3B7RzRc5qk8pFhg3A==,
  3297. }
  3298. dev: false
  3299. /source-map-js@1.0.2:
  3300. resolution:
  3301. {
  3302. integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==,
  3303. }
  3304. engines: { node: ">=0.10.0" }
  3305. dev: true
  3306. /source-map@0.5.7:
  3307. resolution:
  3308. {
  3309. integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==,
  3310. }
  3311. engines: { node: ">=0.10.0" }
  3312. dev: false
  3313. /strip-final-newline@2.0.0:
  3314. resolution:
  3315. {
  3316. integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==,
  3317. }
  3318. engines: { node: ">=6" }
  3319. dev: true
  3320. /stylis@4.2.0:
  3321. resolution:
  3322. {
  3323. integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==,
  3324. }
  3325. dev: false
  3326. /supports-color@5.5.0:
  3327. resolution:
  3328. {
  3329. integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==,
  3330. }
  3331. engines: { node: ">=4" }
  3332. dependencies:
  3333. has-flag: 3.0.0
  3334. /supports-color@7.2.0:
  3335. resolution:
  3336. {
  3337. integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==,
  3338. }
  3339. engines: { node: ">=8" }
  3340. dependencies:
  3341. has-flag: 4.0.0
  3342. dev: true
  3343. /supports-preserve-symlinks-flag@1.0.0:
  3344. resolution:
  3345. {
  3346. integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==,
  3347. }
  3348. engines: { node: ">= 0.4" }
  3349. dev: false
  3350. /svg-parser@2.0.4:
  3351. resolution:
  3352. {
  3353. integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==,
  3354. }
  3355. dev: true
  3356. /swr@1.3.0(react@18.2.0):
  3357. resolution:
  3358. {
  3359. integrity: sha512-dkghQrOl2ORX9HYrMDtPa7LTVHJjCTeZoB1dqTbnnEDlSvN8JEKpYIYurDfvbQFUUS8Cg8PceFVZNkW0KNNYPw==,
  3360. }
  3361. peerDependencies:
  3362. react: ^16.11.0 || ^17.0.0 || ^18.0.0
  3363. dependencies:
  3364. react: 18.2.0
  3365. dev: false
  3366. /to-fast-properties@2.0.0:
  3367. resolution:
  3368. {
  3369. integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==,
  3370. }
  3371. engines: { node: ">=4" }
  3372. /to-regex-range@5.0.1:
  3373. resolution:
  3374. {
  3375. integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==,
  3376. }
  3377. engines: { node: ">=8.0" }
  3378. dependencies:
  3379. is-number: 7.0.0
  3380. dev: true
  3381. /tr46@0.0.3:
  3382. resolution:
  3383. {
  3384. integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==,
  3385. }
  3386. dev: true
  3387. /tslib@2.6.2:
  3388. resolution:
  3389. {
  3390. integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==,
  3391. }
  3392. dev: true
  3393. /tunnel@0.0.6:
  3394. resolution:
  3395. {
  3396. integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==,
  3397. }
  3398. engines: { node: ">=0.6.11 <=0.7.0 || >=0.7.3" }
  3399. dev: true
  3400. /typescript@4.7.4:
  3401. resolution:
  3402. {
  3403. integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==,
  3404. }
  3405. engines: { node: ">=4.2.0" }
  3406. hasBin: true
  3407. dev: true
  3408. /universal-user-agent@6.0.0:
  3409. resolution:
  3410. {
  3411. integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==,
  3412. }
  3413. dev: true
  3414. /universalify@2.0.0:
  3415. resolution:
  3416. {
  3417. integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==,
  3418. }
  3419. engines: { node: ">= 10.0.0" }
  3420. dev: true
  3421. /update-browserslist-db@1.0.13(browserslist@4.22.1):
  3422. resolution:
  3423. {
  3424. integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==,
  3425. }
  3426. hasBin: true
  3427. peerDependencies:
  3428. browserslist: ">= 4.21.0"
  3429. dependencies:
  3430. browserslist: 4.22.1
  3431. escalade: 3.1.1
  3432. picocolors: 1.0.0
  3433. dev: true
  3434. /vite-plugin-monaco-editor@1.1.0(monaco-editor@0.34.1):
  3435. resolution:
  3436. {
  3437. integrity: sha512-IvtUqZotrRoVqwT0PBBDIZPNraya3BxN/bfcNfnxZ5rkJiGcNtO5eAOWWSgT7zullIAEqQwxMU83yL9J5k7gww==,
  3438. }
  3439. peerDependencies:
  3440. monaco-editor: ">=0.33.0"
  3441. dependencies:
  3442. monaco-editor: 0.34.1
  3443. dev: true
  3444. /vite-plugin-svgr@4.1.0(typescript@4.7.4)(vite@4.5.0):
  3445. resolution:
  3446. {
  3447. integrity: sha512-v7Qic+FWmCChgQNGSI4V8X63OEYsdUoLt66iqIcHozq9bfK/Dwmr0V+LBy1NE8CE98Y8HouEBJ+pto4AMfN5xw==,
  3448. }
  3449. peerDependencies:
  3450. vite: ^2.6.0 || 3 || 4
  3451. dependencies:
  3452. "@rollup/pluginutils": 5.0.5
  3453. "@svgr/core": 8.1.0(typescript@4.7.4)
  3454. "@svgr/plugin-jsx": 8.1.0(@svgr/core@8.1.0)
  3455. vite: 4.5.0(sass@1.54.8)
  3456. transitivePeerDependencies:
  3457. - rollup
  3458. - supports-color
  3459. - typescript
  3460. dev: true
  3461. /vite@4.5.0(sass@1.54.8):
  3462. resolution:
  3463. {
  3464. integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==,
  3465. }
  3466. engines: { node: ^14.18.0 || >=16.0.0 }
  3467. hasBin: true
  3468. peerDependencies:
  3469. "@types/node": ">= 14"
  3470. less: "*"
  3471. lightningcss: ^1.21.0
  3472. sass: "*"
  3473. stylus: "*"
  3474. sugarss: "*"
  3475. terser: ^5.4.0
  3476. peerDependenciesMeta:
  3477. "@types/node":
  3478. optional: true
  3479. less:
  3480. optional: true
  3481. lightningcss:
  3482. optional: true
  3483. sass:
  3484. optional: true
  3485. stylus:
  3486. optional: true
  3487. sugarss:
  3488. optional: true
  3489. terser:
  3490. optional: true
  3491. dependencies:
  3492. esbuild: 0.18.20
  3493. postcss: 8.4.31
  3494. rollup: 3.29.4
  3495. sass: 1.54.8
  3496. optionalDependencies:
  3497. fsevents: 2.3.2
  3498. dev: true
  3499. /void-elements@3.1.0:
  3500. resolution:
  3501. {
  3502. integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==,
  3503. }
  3504. engines: { node: ">=0.10.0" }
  3505. dev: false
  3506. /web-streams-polyfill@3.2.0:
  3507. resolution:
  3508. {
  3509. integrity: sha512-EqPmREeOzttaLRm5HS7io98goBgZ7IVz79aDvqjD0kYXLtFZTc0T/U6wHTPKyIjb+MdN7DFIIX6hgdBEpWmfPA==,
  3510. }
  3511. engines: { node: ">= 8" }
  3512. dev: true
  3513. /webidl-conversions@3.0.1:
  3514. resolution:
  3515. {
  3516. integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==,
  3517. }
  3518. dev: true
  3519. /whatwg-url@5.0.0:
  3520. resolution:
  3521. {
  3522. integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==,
  3523. }
  3524. dependencies:
  3525. tr46: 0.0.3
  3526. webidl-conversions: 3.0.1
  3527. dev: true
  3528. /which@2.0.2:
  3529. resolution:
  3530. {
  3531. integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
  3532. }
  3533. engines: { node: ">= 8" }
  3534. hasBin: true
  3535. dependencies:
  3536. isexe: 2.0.0
  3537. dev: true
  3538. /wrappy@1.0.2:
  3539. resolution:
  3540. {
  3541. integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==,
  3542. }
  3543. dev: true
  3544. /yallist@3.1.1:
  3545. resolution:
  3546. {
  3547. integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==,
  3548. }
  3549. dev: true
  3550. /yaml@1.10.2:
  3551. resolution:
  3552. {
  3553. integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==,
  3554. }
  3555. engines: { node: ">= 6" }
  3556. dev: false